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

This commit is contained in:
Philip Müller 2022-04-19 06:17:37 +02:00
commit 83c5ceaa9c
204 changed files with 5893 additions and 54510 deletions

View File

@ -10,14 +10,14 @@ jobs:
steps: steps:
- name: "notify: new" - name: "notify: new"
if: github.event.issue.state == 'open' if: github.event.issue.state == 'open'
uses: calamares/actions/matrix-notify@v3 uses: calamares/actions/matrix-notify@v4
with: with:
token: ${{ secrets.MATRIX_TOKEN }} token: ${{ secrets.MATRIX_TOKEN }}
room: ${{ secrets.MATRIX_ROOM }} room: ${{ secrets.MATRIX_ROOM }}
message: "OPENED ${{ github.event.issue.html_url }} by ${{ github.actor }} ${{ github.event.issue.title }}" message: "OPENED ${{ github.event.issue.html_url }} by ${{ github.actor }} ${{ github.event.issue.title }}"
- name: "notify: closed" - name: "notify: closed"
if: github.event.issue.state != 'open' if: github.event.issue.state != 'open'
uses: calamares/actions/matrix-notify@v3 uses: calamares/actions/matrix-notify@v4
with: with:
token: ${{ secrets.MATRIX_TOKEN }} token: ${{ secrets.MATRIX_TOKEN }}
room: ${{ secrets.MATRIX_ROOM }} room: ${{ secrets.MATRIX_ROOM }}

View File

@ -22,22 +22,22 @@ jobs:
options: --tmpfs /build:rw --user 0:0 options: --tmpfs /build:rw --user 0:0
steps: steps:
- name: "prepare env" - name: "prepare env"
uses: calamares/actions/prepare-debian@v3 uses: calamares/actions/prepare-debian@v4
- name: "prepare source" - name: "prepare source"
uses: actions/checkout@v2 uses: calamares/actions/generic-checkout@v4
- name: "build" - name: "build"
id: build id: build
uses: calamares/actions/generic-build@v3 uses: calamares/actions/generic-build@v4
- name: "notify: ok" - name: "notify: ok"
if: ${{ success() && github.repository == 'calamares/calamares' }} if: ${{ success() && github.repository == 'calamares/calamares' }}
uses: calamares/actions/matrix-notify@v3 uses: calamares/actions/matrix-notify@v4
with: with:
token: ${{ secrets.MATRIX_TOKEN }} token: ${{ secrets.MATRIX_TOKEN }}
room: ${{ secrets.MATRIX_ROOM }} room: ${{ secrets.MATRIX_ROOM }}
message: "OK ${{ github.workflow }} in ${{ github.repository }} ${{ steps.build.outputs.git-summary }}" message: "OK ${{ github.workflow }} in ${{ github.repository }} ${{ steps.build.outputs.git-summary }}"
- name: "notify: fail" - name: "notify: fail"
if: ${{ failure() && github.repository == 'calamares/calamares' }} if: ${{ failure() && github.repository == 'calamares/calamares' }}
uses: calamares/actions/matrix-notify@v3 uses: calamares/actions/matrix-notify@v4
with: with:
token: ${{ secrets.MATRIX_TOKEN }} token: ${{ secrets.MATRIX_TOKEN }}
room: ${{ secrets.MATRIX_ROOM }} room: ${{ secrets.MATRIX_ROOM }}

View File

@ -22,12 +22,12 @@ jobs:
options: --tmpfs /build:rw --user 0:0 options: --tmpfs /build:rw --user 0:0
steps: steps:
- name: "prepare env" - name: "prepare env"
uses: calamares/actions/prepare-neon@v3 uses: calamares/actions/prepare-neon@v4
- name: "prepare source" - name: "prepare source"
uses: actions/checkout@v2 uses: calamares/actions/generic-checkout@v4
- name: "build" - name: "build"
id: build id: build
uses: calamares/actions/generic-build@v3 uses: calamares/actions/generic-build@v4
- name: "Calamares: archive" - name: "Calamares: archive"
working-directory: ${{ env.BUILDDIR }} working-directory: ${{ env.BUILDDIR }}
run: | run: |
@ -42,14 +42,14 @@ jobs:
retention-days: 3 retention-days: 3
- name: "notify: ok" - name: "notify: ok"
if: ${{ success() && github.repository == 'calamares/calamares' }} if: ${{ success() && github.repository == 'calamares/calamares' }}
uses: calamares/actions/matrix-notify@v3 uses: calamares/actions/matrix-notify@v4
with: with:
token: ${{ secrets.MATRIX_TOKEN }} token: ${{ secrets.MATRIX_TOKEN }}
room: ${{ secrets.MATRIX_ROOM }} room: ${{ secrets.MATRIX_ROOM }}
message: "OK ${{ github.workflow }} in ${{ github.repository }} ${{ steps.build.outputs.git-summary }}" message: "OK ${{ github.workflow }} in ${{ github.repository }} ${{ steps.build.outputs.git-summary }}"
- name: "notify: fail" - name: "notify: fail"
if: ${{ failure() && github.repository == 'calamares/calamares' }} if: ${{ failure() && github.repository == 'calamares/calamares' }}
uses: calamares/actions/matrix-notify@v3 uses: calamares/actions/matrix-notify@v4
with: with:
token: ${{ secrets.MATRIX_TOKEN }} token: ${{ secrets.MATRIX_TOKEN }}
room: ${{ secrets.MATRIX_ROOM }} room: ${{ secrets.MATRIX_ROOM }}

View File

@ -22,15 +22,15 @@ jobs:
options: --tmpfs /build:rw --user 0:0 options: --tmpfs /build:rw --user 0:0
steps: steps:
- name: "prepare env" - name: "prepare env"
uses: calamares/actions/prepare-opensuse@v3 uses: calamares/actions/prepare-opensuse@v4
- name: "prepare source" - name: "prepare source"
uses: actions/checkout@v2 uses: calamares/actions/generic-checkout@v4
- name: "build" - name: "build"
id: build id: build
uses: calamares/actions/generic-build@v3 uses: calamares/actions/generic-build@v4
- name: "notify: ok" - name: "notify: ok"
if: ${{ success() && github.repository == 'calamares/calamares' }} if: ${{ success() && github.repository == 'calamares/calamares' }}
uses: calamares/actions/matrix-notify@v3 uses: calamares/actions/matrix-notify@v4
with: with:
token: ${{ secrets.MATRIX_TOKEN }} token: ${{ secrets.MATRIX_TOKEN }}
room: ${{ secrets.MATRIX_ROOM }} room: ${{ secrets.MATRIX_ROOM }}
@ -38,7 +38,7 @@ jobs:
OK ${{ github.workflow }} in ${{ github.repository }} ${{ steps.build.outputs.git-summary }}" OK ${{ github.workflow }} in ${{ github.repository }} ${{ steps.build.outputs.git-summary }}"
- name: "notify: fail" - name: "notify: fail"
if: ${{ failure() && github.repository == 'calamares/calamares' }} if: ${{ failure() && github.repository == 'calamares/calamares' }}
uses: calamares/actions/matrix-notify@v3 uses: calamares/actions/matrix-notify@v4
with: with:
token: ${{ secrets.MATRIX_TOKEN }} token: ${{ secrets.MATRIX_TOKEN }}
room: ${{ secrets.MATRIX_ROOM }} room: ${{ secrets.MATRIX_ROOM }}

View File

@ -4,6 +4,7 @@ on:
push: push:
branches: branches:
- calamares - calamares
- work-3.3
pull_request: pull_request:
types: types:
- opened - opened
@ -28,15 +29,15 @@ jobs:
options: --tmpfs /build:rw --user 0:0 options: --tmpfs /build:rw --user 0:0
steps: steps:
- name: "prepare env" - name: "prepare env"
uses: calamares/actions/prepare-neon@v3 uses: calamares/actions/prepare-neon@v4
- name: "prepare source" - name: "prepare source"
uses: actions/checkout@v2 uses: calamares/actions/generic-checkout@v4
- name: "build" - name: "build"
id: build id: build
uses: calamares/actions/generic-build@v3 uses: calamares/actions/generic-build@v4
- name: "notify: ok" - name: "notify: ok"
if: ${{ success() && github.repository == 'calamares/calamares' }} if: ${{ success() && github.repository == 'calamares/calamares' }}
uses: calamares/actions/matrix-notify@v3 uses: calamares/actions/matrix-notify@v4
with: with:
token: ${{ secrets.MATRIX_TOKEN }} token: ${{ secrets.MATRIX_TOKEN }}
room: ${{ secrets.MATRIX_ROOM }} room: ${{ secrets.MATRIX_ROOM }}
@ -45,7 +46,7 @@ jobs:
.. ${{ steps.build.outputs.git-summary }} .. ${{ steps.build.outputs.git-summary }}
- name: "notify: fail" - name: "notify: fail"
if: ${{ failure() && github.repository == 'calamares/calamares' }} if: ${{ failure() && github.repository == 'calamares/calamares' }}
uses: calamares/actions/matrix-notify@v3 uses: calamares/actions/matrix-notify@v4
with: with:
token: ${{ secrets.MATRIX_TOKEN }} token: ${{ secrets.MATRIX_TOKEN }}
room: ${{ secrets.MATRIX_ROOM }} room: ${{ secrets.MATRIX_ROOM }}

View File

@ -8,16 +8,40 @@ 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 changelog -- this log starts with version 3.2.0. The release notes on the
website will have to do for older versions. website will have to do for older versions.
# 3.2.55 (unreleased) # # 3.2.56 (unreleased) #
This release contains contributions from (alphabetically by first name): This release contains contributions from (alphabetically by first name):
- No external contributors yet - Victor Fuentes (new contributor! Welcome!)
## Core ## ## Core ##
- No core changes yet - No core changes yet
## Modules ## ## Modules ##
- No module changes yet - *users* module sets global storage key *fullname* to the full name
of the user (e.g. what is entered in the "your full name" box on the
users page). #1923 (Thanks Victor)
# 3.2.55 (2022-04-11) #
This release contains contributions from (alphabetically by first name):
- vtriolet (new contributor! Welcome!)
## Core ##
- `readTargetFile()` did not properly return all the lines of the target
file. #1918 (thanks vtriolet)
## Modules ##
- *users* module has rearranged configuration for setting the hostname.
Legacy settings are preserved, but produce a warning. Please see
`users.conf` for details.
- *users* module has a new hostname.location setting, *Transient*, which
will force the installed system to transient-hostname-setting by removing
the file `/etc/hostname`.
- *users* module has a new hostname.template setting, which allows some
tweaking of how the hostname suggestion is constructed. In particular,
it can be configured to use the current hostname (whatever that may be).
See the example `users.conf` for details on available keys.
# 3.2.54 (2022-03-21) # # 3.2.54 (2022-03-21) #

View File

@ -41,7 +41,7 @@
# TODO:3.3: Require CMake 3.12 # TODO:3.3: Require CMake 3.12
cmake_minimum_required( VERSION 3.3 FATAL_ERROR ) cmake_minimum_required( VERSION 3.3 FATAL_ERROR )
project( CALAMARES project( CALAMARES
VERSION 3.2.55 VERSION 3.2.56
LANGUAGES C CXX LANGUAGES C CXX
) )
@ -127,8 +127,6 @@ set( CALAMARES_DESCRIPTION_SUMMARY
# by the translation framework. Languages with alternate scripts # by the translation framework. Languages with alternate scripts
# (sr@latin in particular) may need special handling in CalamaresUtils.cpp. # (sr@latin in particular) may need special handling in CalamaresUtils.cpp.
# #
# TODO: drop the es_ES translation from Transifex
#
# NOTE: move eo (Esperanto) to _ok once Qt can actually create a # NOTE: move eo (Esperanto) to _ok once Qt can actually create a
# locale for it. (Qt 5.12.2 can, see Translation Status section). # locale for it. (Qt 5.12.2 can, see Translation Status section).
# NOTE: move ie (Interlingue) to _ok once Qt supports it. # NOTE: move ie (Interlingue) to _ok once Qt supports it.
@ -136,14 +134,14 @@ set( CALAMARES_DESCRIPTION_SUMMARY
# `txstats.py -e`. See also # `txstats.py -e`. See also
# #
# Total 74 languages # Total 74 languages
set( _tx_complete az az_AZ ca de fa fi_FI he hi hr ja ko lt pt_BR set( _tx_complete az az_AZ ca es fi_FI he hi hr ja lt pt_BR pt_PT
pt_PT si sq sv tr_TR uk zh_TW ) sq sv uk zh_TW )
set( _tx_good as be ca@valencia cs_CZ da fr fur it_IT ml nl ru sk set( _tx_good as be ca@valencia cs_CZ da de fa fr fur it_IT ko ml
tg vi zh_CN ) nl ru si sk tg tr_TR vi zh_CN )
set( _tx_ok ar ast bg bn el en_GB es es_MX et eu gl hu id is mr nb set( _tx_ok ar ast bg bn el en_GB es_MX et eu gl hu id is mr nb oc
pl ro sl sr sr@latin th ) pl ro sl sr sr@latin th )
set( _tx_incomplete eo es_PR gu ie kk kn lo lv mk ne ne_NP ta_IN te set( _tx_incomplete eo es_PR gu ie ja-Hira kk kn lo lv mk ne_NP
ur zh zh_HK ) ta_IN te ur zh zh_HK )
### Required versions ### Required versions
# #

View File

@ -73,10 +73,10 @@ Name[eo]=Instali Sistemo
Icon[eo]=calamares Icon[eo]=calamares
GenericName[eo]=Sistema Instalilo GenericName[eo]=Sistema Instalilo
Comment[eo]=Calamares Sistema Instalilo Comment[eo]=Calamares Sistema Instalilo
Name[es]=Instalar Sistema Name[es]=Instalar el sistema
Icon[es]=calamares Icon[es]=calamares
GenericName[es]=Instalador del Sistema GenericName[es]=Instalador del sistema
Comment[es]=Calamares Instalador del Sistema Comment[es]=Calamares Instalador del sistema
Name[es_MX]=Instalar el Sistema Name[es_MX]=Instalar el Sistema
Icon[es_MX]=calamares Icon[es_MX]=calamares
GenericName[es_MX]=Instalador del sistema GenericName[es_MX]=Instalador del sistema

View File

@ -69,9 +69,6 @@ drop_language() {
mv calamares.desktop.new calamares.desktop mv calamares.desktop.new calamares.desktop
} }
drop_language es_ES
drop_language pl_PL
# Also fix the .desktop file, which has some fields removed by Transifex. # Also fix the .desktop file, which has some fields removed by Transifex.
# #
{ cat calamares.desktop.in ; grep "\\[[a-zA-Z_@]*]=" calamares.desktop ; } > calamares.desktop.new { cat calamares.desktop.in ; grep "\\[[a-zA-Z_@]*]=" calamares.desktop ; } > calamares.desktop.new

View File

@ -11,6 +11,7 @@
# Run it with a -v command-line option to get extra output on # Run it with a -v command-line option to get extra output on
# actual translation percentages. # actual translation percentages.
import sys import sys
import os
import argparse import argparse
class TXError(Exception): class TXError(Exception):
@ -172,7 +173,6 @@ def get_tx_stats(languages, outputter, verbose):
If @p verbose is True, prints out language stats as well. If @p verbose is True, prints out language stats as well.
""" """
suppressed_languages = ( "es_ES", ) # In Transifex, but not used
# Some languages go into the "incomplete" list by definition, # Some languages go into the "incomplete" list by definition,
# regardless of their completion status: this can have various reasons. # regardless of their completion status: this can have various reasons.
# #
@ -187,8 +187,6 @@ def get_tx_stats(languages, outputter, verbose):
all_langs = [] all_langs = []
outputter.print("# Total %d languages" % len(languages)) outputter.print("# Total %d languages" % len(languages))
for lang_name in languages: for lang_name in languages:
if lang_name in suppressed_languages:
continue
stats = languages[lang_name]["translated"]["percentage"] stats = languages[lang_name]["translated"]["percentage"]
# Make the by-definition-incomplete languages have a percentage # Make the by-definition-incomplete languages have a percentage
# lower than zero; this way they end up sorted (in -v output) # lower than zero; this way they end up sorted (in -v output)
@ -205,6 +203,38 @@ def get_tx_stats(languages, outputter, verbose):
output_langs(all_langs, outputter, "ok", lambda s : 0.75 > s >= 0.05) output_langs(all_langs, outputter, "ok", lambda s : 0.75 > s >= 0.05)
output_langs(all_langs, outputter, "incomplete", lambda s : 0.05 > s) output_langs(all_langs, outputter, "incomplete", lambda s : 0.05 > s)
# Audit the languages that are in TX, mapped to git
for lang_name in languages:
if not os.path.exists("lang/calamares_{}.ts".format(lang_name)):
print("# !! Missing translation file for {}".format(lang_name))
if not os.path.isdir("lang/python/{}/LC_MESSAGES".format(lang_name)):
print("# !! Missing Python translation file for {}".format(lang_name))
# Audit the files that are in git, mapped to TX
special_cases = ("python.pot", "python", "CMakeLists.txt", "txload.cpp", "calamares_i18n.qrc.in")
for file_name in os.listdir("lang"):
if file_name in special_cases:
continue
elif file_name.startswith("calamares_") and file_name.endswith(".ts"):
key = file_name[10:-3]
if not key in languages and not key == "en":
print("# !! Translation file for {} not in TX".format(key))
elif file_name.startswith("tz_") and file_name.endswith(".ts"):
key = file_name[3:-3]
if not key in languages and not key == "en":
print("# !! Translation file for TZ {} not in TX".format(key))
elif file_name.startswith("kb_") and file_name.endswith(".ts"):
key = file_name[3:-3]
if not key in languages and not key == "en":
print("# !! Translation file for KB {} not in TX".format(key))
else:
print("# !! Weird translation file {} not in TX".format(file_name))
# Audit the python translation files that are in git, mapped to TX
for file_name in os.listdir("lang/python"):
if file_name not in languages:
print("# !! Translation file for Python {} not in TX".format(file_name))
return 0 return 0

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>ثبت </translation> <translation>ثبت </translation>
</message> </message>
@ -1468,12 +1468,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1986,35 +1986,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2882,82 +2882,97 @@ The installer will quit and all changes will be lost.</source>
<translation>الأقسام</translation> <translation>الأقسام</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>الحاليّ:</translation> <translation>الحاليّ:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>بعد:</translation> <translation>بعد:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>لم يُضبط أيّ قسم نظام EFI</translation> <translation>لم يُضبط أيّ قسم نظام EFI</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3662,18 +3677,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3681,17 +3696,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>تعذّر تغيير صلاحيّات ملفّ sudores.</translation> <translation>تعذّر تغيير صلاحيّات ملفّ sudores.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>تعذّر إنشاء ملفّ sudoers للكتابة.</translation> <translation>تعذّر إنشاء ملفّ sudoers للكتابة.</translation>
</message> </message>
@ -3881,12 +3896,12 @@ Output:
<translation>الغاء تحميل ملف النظام</translation> <translation>الغاء تحميل ملف النظام</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation></translation> <translation></translation>
</message> </message>
@ -1460,12 +1460,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>ি ' ি ি ি?</translation> <translation>ি ' ি ি ি?</translation>
</message> </message>
@ -1978,35 +1978,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>LUKS ি ি </translation> <translation>LUKS ি ি </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation> ি ি </translation> <translation> ি ি </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>ি rootfs ি</translation> <translation>ি rootfs ি</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation> ি %1 LUKS, ি </translation> <translation> ি %1 LUKS, ি </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>%1 ি LUKS ি '</translation> <translation>%1 ি LUKS ি '</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>%1 ি LUKS ি ি ি '</translation> <translation>%1 ি LUKS ি ি ি '</translation>
</message> </message>
@ -2840,82 +2840,97 @@ The installer will quit and all changes will be lost.</source>
<translation>ি</translation> <translation>ি</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>:</translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>ি:</translation> <translation>ি:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation> EFI ি ি ি </translation> <translation> EFI ি ি ি </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>GPTৰ BIOSত ি</translation> <translation>GPTৰ BIOSত ি</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation> ি ি </translation> <translation> ি ি </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>ি ি ি ি, ি ি ি &lt;br/&gt;&lt;br/&gt; ি ি ি ি &lt;br/&gt;ি িি ি ি ি ি ি &lt;br/&gt; ি ি ি ি ি windowত &lt;strong&gt;Encrypt&lt;/strong&gt; ি ি </translation> <translation>ি ি ি ি, ি ি ি &lt;br/&gt;&lt;br/&gt; ি ি ি ি &lt;br/&gt;ি িি ি ি ি ি ি &lt;br/&gt; ি ি ি ি ি windowত &lt;strong&gt;Encrypt&lt;/strong&gt; ি ি </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>ি ি </translation> <translation>ি ি </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation> ি ি </translation> <translation> ি ি </translation>
</message> </message>
@ -3624,18 +3639,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3643,17 +3658,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>sudoers chmod ি '</translation> <translation>sudoers chmod ি '</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>ি sudoers '</translation> <translation>ি sudoers '</translation>
</message> </message>
@ -3843,12 +3858,12 @@ Output:
<translation> ি </translation> <translation> ি </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Configuración</translation> <translation>Configuración</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Instalación</translation> <translation>Instalación</translation>
</message> </message>
@ -1460,12 +1460,12 @@ L'instalador va colar y van perdese tolos cambeos.</translation>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1978,35 +1978,35 @@ L'instalador va colar y van perdese tolos cambeos.</translation>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2838,82 +2838,97 @@ L'instalador va colar y van perdese tolos cambeos.</translation>
<translation>Particiones</translation> <translation>Particiones</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Anguaño:</translation> <translation>Anguaño:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Dempués:</translation> <translation>Dempués:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Nun se configuró nenguna partición del sistema EFI</translation> <translation>Nun se configuró nenguna partición del sistema EFI</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>La partición d'arrinque nun ta cifrada</translation> <translation>La partición d'arrinque nun ta cifrada</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Configuróse una partición d'arrinque xunto con una partición raigañu cifrada pero la partición d'arrinque nun ta cifrada.&lt;br/&gt;&lt;br/&gt;Hai problemes de seguranza con esta triba de configuración porque los ficheros importantes del sistema caltiénense nuna partición ensin cifrar.&lt;br/&gt;Podríes siguir si quixeres pero'l desbloquéu del sistema de ficheros va asoceder más sero nel aniciu del sistema.&lt;br/&gt;Pa cifrar la partición raigañu, volvi p'atrás y recreala esbillando &lt;strong&gt;Cifrar&lt;/strong&gt; na ventana de creación de particiones.</translation> <translation>Configuróse una partición d'arrinque xunto con una partición raigañu cifrada pero la partición d'arrinque nun ta cifrada.&lt;br/&gt;&lt;br/&gt;Hai problemes de seguranza con esta triba de configuración porque los ficheros importantes del sistema caltiénense nuna partición ensin cifrar.&lt;br/&gt;Podríes siguir si quixeres pero'l desbloquéu del sistema de ficheros va asoceder más sero nel aniciu del sistema.&lt;br/&gt;Pa cifrar la partición raigañu, volvi p'atrás y recreala esbillando &lt;strong&gt;Cifrar&lt;/strong&gt; na ventana de creación de particiones.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>tien polo menos un preséu disponible d'almacenamientu</translation> <translation>tien polo menos un preséu disponible d'almacenamientu</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Nun hai particiones nes qu'instalar.</translation> <translation>Nun hai particiones nes qu'instalar.</translation>
</message> </message>
@ -3624,18 +3639,18 @@ Salida:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3643,17 +3658,17 @@ Salida:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Nun pue facese chmod al ficheru sudoers.</translation> <translation>Nun pue facese chmod al ficheru sudoers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Nun pue crease'l ficheru sudoers pa la escritura.</translation> <translation>Nun pue crease'l ficheru sudoers pa la escritura.</translation>
</message> </message>
@ -3843,12 +3858,12 @@ Salida:
<translation>Desmontaxe de sistemes de ficheros.</translation> <translation>Desmontaxe de sistemes de ficheros.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Ayarlamaq</translation> <translation>Ayarlamaq</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Quraşdırmaq</translation> <translation>Quraşdırmaq</translation>
</message> </message>
@ -1464,12 +1464,12 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>Təfərrüatlar:</translation> <translation>Təfərrüatlar:</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Quraşdırma jurnalını vebdə yerləşdirmək istəyirsinizmi?</translation> <translation>Quraşdırma jurnalını vebdə yerləşdirmək istəyirsinizmi?</translation>
</message> </message>
@ -1982,35 +1982,35 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>LUKS düymə faylını ayarlamaq.</translation> <translation>LUKS düymə faylını ayarlamaq.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Heç bir bölmə müəyyən edilməyib.</translation> <translation>Heç bir bölmə müəyyən edilməyib.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Kök fayl sisteminin şifrələnməsi xətası</translation> <translation>Kök fayl sisteminin şifrələnməsi xətası</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>%1 Kök bölməsi LUKS-dur lakin, şifrə təyin olunmayıb.</translation> <translation>%1 Kök bölməsi LUKS-dur lakin, şifrə təyin olunmayıb.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>%1 kök bölməsi üçün LUKS düymə faylı yaradılmadı.</translation> <translation>%1 kök bölməsi üçün LUKS düymə faylı yaradılmadı.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>%1 bölməsində LUKS düymə faylı tənzimlənə bilmədi.</translation> <translation>%1 bölməsində LUKS düymə faylı tənzimlənə bilmədi.</translation>
</message> </message>
@ -2845,82 +2845,97 @@ Lütfən bir birinci disk bölümünü çıxarın və əvəzinə genişləndiril
<translation>Bölmələr</translation> <translation>Bölmələr</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation>Bölmələrlə qeyri-təhlükəsiz əməllər ativ edilib.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation>Bölmələrə bölünmə elə ayarlanıb ki, &lt;b&gt;həmişə&lt;/b&gt; xəta ilə başa çatır.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation>Dəyişiklik ediləcək heç bir bölmə yoxdur.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Cari:</translation> <translation>Cari:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Sonra:</translation> <translation>Sonra:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>EFI sistemi bölməsi tənzimlənməyib</translation> <translation>EFI sistemi bölməsi tənzimlənməyib</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>EFİ sistem bölməsi səhv yaradıldı</translation> <translation>EFİ sistem bölməsi səhv yaradıldı</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation>EFİ fayl sistemi %1 başladılması üçün lazımdır.&lt;br/&gt; &lt;br/&gt; EFİ fayl sistemini quraşdırmaq üçün geri qayıdın uyğun fayl sistemini seçin ya yaradın.</translation> <translation>EFİ fayl sistemi %1 başladılması üçün lazımdır.&lt;br/&gt; &lt;br/&gt; EFİ fayl sistemini quraşdırmaq üçün geri qayıdın uyğun fayl sistemini seçin ya yaradın.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>Fayl sistemi burada qoşulmalıdır: &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Fayl sistemi burada qoşulmalıdır: &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation>Fayl sistemi FAT32 olmalıdır.</translation> <translation>Fayl sistemi FAT32 olmalıdır.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation>Fayl sisteminin ölçüsü ən az %1 MiB olmalıdır.</translation> <translation>Fayl sisteminin ölçüsü ən az %1 MiB olmalıdır.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation>Fayl sisteminə &lt;strong&gt;%1&lt;/strong&gt; bayrağı təyin olunmalıdır.</translation> <translation>Fayl sisteminə &lt;strong&gt;%1&lt;/strong&gt; bayrağı təyin olunmalıdır.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation>Siz, EFİ sistem bölməsini ayarlamadan davam edə bilərsiniz, lakin bu sisteminizin işə düşə bilməməsinə səbəb ola bilər.</translation> <translation>Siz, EFİ sistem bölməsini ayarlamadan davam edə bilərsiniz, lakin bu sisteminizin işə düşə bilməməsinə səbəb ola bilər.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>BIOS-da GPT istifadəsi seçimi</translation> <translation>BIOS-da GPT istifadəsi seçimi</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <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>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Ön yükləyici bölməsi çifrələnməyib</translation> <translation>Ön yükləyici bölməsi çifrələnməyib</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Şifrəli bir kök bölməsi ilə birlikdə ayrı bir ön yükləyici bölməsi qurulub, ancaq ön yükləyici bölməsi şifrələnməyib.&lt;br/&gt;&lt;br/&gt;Bu cür quraşdırma ilə bağlı təhlükəsizlik problemləri olur, çünki vacib sistem sənədləri şifrəsiz bölmədə saxlanılır.&lt;br/&gt;İstəyirsinizsə davam edə bilərsiniz, lakin, fayl sisteminin kilidi, sistem başladıldıqdan daha sonra ılacaqdır.&lt;br/&gt;Yükləmə hissəsini şifrələmək üçün geri qayıdın bölmə yaratma pəncərəsində &lt;strong&gt;Şifrələmə&lt;/strong&gt; menyusunu seçərək onu yenidən yaradın.</translation> <translation>Şifrəli bir kök bölməsi ilə birlikdə ayrı bir ön yükləyici bölməsi qurulub, ancaq ön yükləyici bölməsi şifrələnməyib.&lt;br/&gt;&lt;br/&gt;Bu cür quraşdırma ilə bağlı təhlükəsizlik problemləri olur, çünki vacib sistem sənədləri şifrəsiz bölmədə saxlanılır.&lt;br/&gt;İstəyirsinizsə davam edə bilərsiniz, lakin, fayl sisteminin kilidi, sistem başladıldıqdan daha sonra ılacaqdır.&lt;br/&gt;Yükləmə hissəsini şifrələmək üçün geri qayıdın bölmə yaratma pəncərəsində &lt;strong&gt;Şifrələmə&lt;/strong&gt; menyusunu seçərək onu yenidən yaradın.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>ən az bir disk qurğusu mövcuddur.</translation> <translation>ən az bir disk qurğusu mövcuddur.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Quraşdırmaq üçün bölmə yoxdur.</translation> <translation>Quraşdırmaq üçün bölmə yoxdur.</translation>
</message> </message>
@ -3631,18 +3646,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>Qruplar hazırlanır.</translation> <translation>Qruplar hazırlanır.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>Hədəf sistemdə qruplar yaratmaq mümkün olmadı</translation> <translation>Hədəf sistemdə qruplar yaratmaq mümkün olmadı</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>Hədəf sistemdə çatışmayan qruplar: %1</translation> <translation>Hədəf sistemdə çatışmayan qruplar: %1</translation>
</message> </message>
@ -3650,17 +3665,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>&lt;pre&gt;sudo&lt;/pre&gt; istifadəçilərinin tənzimlənməsi.</translation> <translation>&lt;pre&gt;sudo&lt;/pre&gt; istifadəçilərinin tənzimlənməsi.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Sudoers faylına chmod tətbiq etmək mümkün olmadı.</translation> <translation>Sudoers faylına chmod tətbiq etmək mümkün olmadı.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Sudoers faylını yazmaq mümkün olmadı.</translation> <translation>Sudoers faylını yazmaq mümkün olmadı.</translation>
</message> </message>
@ -3850,12 +3865,12 @@ Output:
<translation>Fayl sistemini ayırmaq.</translation> <translation>Fayl sistemini ayırmaq.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation>Hədəf sistemi əlçatan deyil.</translation> <translation>Hədəf sistemi əlçatan deyil.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation>Kök qoşulma nöztəsi (rootMountPoint) təyin olunmayıb.</translation> <translation>Kök qoşulma nöztəsi (rootMountPoint) təyin olunmayıb.</translation>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Ayarlamaq</translation> <translation>Ayarlamaq</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Quraşdırmaq</translation> <translation>Quraşdırmaq</translation>
</message> </message>
@ -1464,12 +1464,12 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>Təfərrüatlar:</translation> <translation>Təfərrüatlar:</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Quraşdırma jurnalını vebdə yerləşdirmək istəyirsinizmi?</translation> <translation>Quraşdırma jurnalını vebdə yerləşdirmək istəyirsinizmi?</translation>
</message> </message>
@ -1982,35 +1982,35 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>LUKS düymə faylını ayarlamaq.</translation> <translation>LUKS düymə faylını ayarlamaq.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Heç bir bölmə müəyyən edilməyib.</translation> <translation>Heç bir bölmə müəyyən edilməyib.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Kök fayl sisteminin şifrələnməsi xətası</translation> <translation>Kök fayl sisteminin şifrələnməsi xətası</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>%1 Kök bölməsi LUKS-dur lakin, şifrə təyin olunmayıb.</translation> <translation>%1 Kök bölməsi LUKS-dur lakin, şifrə təyin olunmayıb.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>%1 kök bölməsi üçün LUKS düymə faylı yaradılmadı.</translation> <translation>%1 kök bölməsi üçün LUKS düymə faylı yaradılmadı.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>%1 bölməsində LUKS düymə faylı tənzimlənə bilmədi.</translation> <translation>%1 bölməsində LUKS düymə faylı tənzimlənə bilmədi.</translation>
</message> </message>
@ -2845,82 +2845,97 @@ Lütfən bir birinci disk bölümünü çıxarın və əvəzinə genişləndiril
<translation>Bölmələr</translation> <translation>Bölmələr</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation>Bölmələrlə qeyri-təhlükəsiz əməllər ativ edilib.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation>Bölmələrə bölünmə elə ayarlanıb ki, &lt;b&gt;həmişə&lt;/b&gt; xəta ilə başa çatır.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation>Dəyişiklik ediləcək heç bir bölmə yoxdur.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Cari:</translation> <translation>Cari:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Sonra:</translation> <translation>Sonra:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>EFI sistemi bölməsi tənzimlənməyib</translation> <translation>EFI sistemi bölməsi tənzimlənməyib</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>EFİ sistem bölməsi səhv yaradıldı</translation> <translation>EFİ sistem bölməsi səhv yaradıldı</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation>EFİ fayl sistemi %1 başladılması üçün lazımdır.&lt;br/&gt; &lt;br/&gt; EFİ fayl sistemini quraşdırmaq üçün geri qayıdın uyğun fayl sistemini seçin ya yaradın.</translation> <translation>EFİ fayl sistemi %1 başladılması üçün lazımdır.&lt;br/&gt; &lt;br/&gt; EFİ fayl sistemini quraşdırmaq üçün geri qayıdın uyğun fayl sistemini seçin ya yaradın.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>Fayl sistemi burada qoşulmalıdır: &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Fayl sistemi burada qoşulmalıdır: &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation>Fayl sistemi FAT32 olmalıdır.</translation> <translation>Fayl sistemi FAT32 olmalıdır.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation>Fayl sisteminin ölçüsü ən az %1 MiB olmalıdır.</translation> <translation>Fayl sisteminin ölçüsü ən az %1 MiB olmalıdır.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation>Fayl sisteminə &lt;strong&gt;%1&lt;/strong&gt; bayrağı təyin olunmalıdır.</translation> <translation>Fayl sisteminə &lt;strong&gt;%1&lt;/strong&gt; bayrağı təyin olunmalıdır.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation>Siz, EFİ sistem bölməsini ayarlamadan davam edə bilərsiniz, lakin bu sisteminizin işə düşə bilməməsinə səbəb ola bilər.</translation> <translation>Siz, EFİ sistem bölməsini ayarlamadan davam edə bilərsiniz, lakin bu sisteminizin işə düşə bilməməsinə səbəb ola bilər.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>BIOS-da GPT istifadəsi seçimi</translation> <translation>BIOS-da GPT istifadəsi seçimi</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <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>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Ön yükləyici bölməsi çifrələnməyib</translation> <translation>Ön yükləyici bölməsi çifrələnməyib</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Şifrəli bir kök bölməsi ilə birlikdə ayrı bir ön yükləyici bölməsi qurulub, ancaq ön yükləyici bölməsi şifrələnməyib.&lt;br/&gt;&lt;br/&gt;Bu cür quraşdırma ilə bağlı təhlükəsizlik problemləri olur, çünki vacib sistem sənədləri şifrəsiz bölmədə saxlanılır.&lt;br/&gt;İstəyirsinizsə davam edə bilərsiniz, lakin, fayl sisteminin kilidi, sistem başladıldıqdan daha sonra ılacaqdır.&lt;br/&gt;Yükləmə hissəsini şifrələmək üçün geri qayıdın bölmə yaratma pəncərəsində &lt;strong&gt;Şifrələmə&lt;/strong&gt; menyusunu seçərək onu yenidən yaradın.</translation> <translation>Şifrəli bir kök bölməsi ilə birlikdə ayrı bir ön yükləyici bölməsi qurulub, ancaq ön yükləyici bölməsi şifrələnməyib.&lt;br/&gt;&lt;br/&gt;Bu cür quraşdırma ilə bağlı təhlükəsizlik problemləri olur, çünki vacib sistem sənədləri şifrəsiz bölmədə saxlanılır.&lt;br/&gt;İstəyirsinizsə davam edə bilərsiniz, lakin, fayl sisteminin kilidi, sistem başladıldıqdan daha sonra ılacaqdır.&lt;br/&gt;Yükləmə hissəsini şifrələmək üçün geri qayıdın bölmə yaratma pəncərəsində &lt;strong&gt;Şifrələmə&lt;/strong&gt; menyusunu seçərək onu yenidən yaradın.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>ən az bir disk qurğusu mövcuddur.</translation> <translation>ən az bir disk qurğusu mövcuddur.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Quraşdırmaq üçün bölmə yoxdur.</translation> <translation>Quraşdırmaq üçün bölmə yoxdur.</translation>
</message> </message>
@ -3631,18 +3646,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>Qruplar hazırlanır.</translation> <translation>Qruplar hazırlanır.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>Hədəf sistemdə qruplar yaratmaq mümkün olmadı</translation> <translation>Hədəf sistemdə qruplar yaratmaq mümkün olmadı</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>Hədəf sistemdə çatışmayan qruplar: %1</translation> <translation>Hədəf sistemdə çatışmayan qruplar: %1</translation>
</message> </message>
@ -3650,17 +3665,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>&lt;pre&gt;sudo&lt;/pre&gt; istifadəçilərinin tənzimlənməsi.</translation> <translation>&lt;pre&gt;sudo&lt;/pre&gt; istifadəçilərinin tənzimlənməsi.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Sudoers faylına chmod tətbiq etmək mümkün olmadı.</translation> <translation>Sudoers faylına chmod tətbiq etmək mümkün olmadı.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Sudoers faylını yazmaq mümkün olmadı.</translation> <translation>Sudoers faylını yazmaq mümkün olmadı.</translation>
</message> </message>
@ -3850,12 +3865,12 @@ Output:
<translation>Fayl sistemini ayırmaq.</translation> <translation>Fayl sistemini ayırmaq.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation>Hədəf sistemi əlçatan deyil.</translation> <translation>Hədəf sistemi əlçatan deyil.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation>Kök qoşulma nöztəsi (rootMountPoint) təyin olunmayıb.</translation> <translation>Kök qoşulma nöztəsi (rootMountPoint) təyin olunmayıb.</translation>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Наладзіць</translation> <translation>Наладзіць</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Усталяваць</translation> <translation>Усталяваць</translation>
</message> </message>
@ -1462,12 +1462,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Сапраўды хочаце ўставіць журнал усталёўкі па сеціўным адрасе?</translation> <translation>Сапраўды хочаце ўставіць журнал усталёўкі па сеціўным адрасе?</translation>
</message> </message>
@ -1980,35 +1980,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>Наладка файла ключа LUKS.</translation> <translation>Наладка файла ключа LUKS.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Раздзелаў не вызначана.</translation> <translation>Раздзелаў не вызначана.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Не атрымалася зашыфраваць rootfs</translation> <translation>Не атрымалася зашыфраваць rootfs</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>Каранёвы раздзел %1 зашыфраваны як LUKS, але парольная фраза не была вызначаная.</translation> <translation>Каранёвы раздзел %1 зашыфраваны як LUKS, але парольная фраза не была вызначаная.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>Не атрымалася стварыць файл ключа LUKS для каранёвага раздзела %1.</translation> <translation>Не атрымалася стварыць файл ключа LUKS для каранёвага раздзела %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>Не атрымалася наладзіць файл ключа LUKS на каранёвым раздзеле %1.</translation> <translation>Не атрымалася наладзіць файл ключа LUKS на каранёвым раздзеле %1.</translation>
</message> </message>
@ -2860,82 +2860,97 @@ The installer will quit and all changes will be lost.</source>
<translation>Раздзелы</translation> <translation>Раздзелы</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Бягучы:</translation> <translation>Бягучы:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Пасля:</translation> <translation>Пасля:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Няма наладжанага сістэмнага раздзела EFI</translation> <translation>Няма наладжанага сістэмнага раздзела EFI</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>Параметр для выкарыстання GPT у BIOS</translation> <translation>Параметр для выкарыстання GPT у BIOS</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Загрузачны раздзел не зашыфраваны</translation> <translation>Загрузачны раздзел не зашыфраваны</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Уключана шыфраванне каранёвага раздзела, але выкарыстаны асобны загрузачны раздзел без шыфравання.&lt;br/&gt;&lt;br/&gt;Пры такой канфігурацыі могуць узнікнуць праблемы з бяспекай, бо важныя сістэмныя даныя будуць захоўвацца на раздзеле без шыфравання.&lt;br/&gt;Вы можаце працягнуць, але файлавая сістэма разблакуецца падчас запуску сістэмы.&lt;br/&gt;Каб уключыць шыфраванне загрузачнага раздзела, вярніцеся назад і стварыце яго нанова, адзначыўшы &lt;strong&gt;Шыфраваць&lt;/strong&gt; у акне стварэння раздзела.</translation> <translation>Уключана шыфраванне каранёвага раздзела, але выкарыстаны асобны загрузачны раздзел без шыфравання.&lt;br/&gt;&lt;br/&gt;Пры такой канфігурацыі могуць узнікнуць праблемы з бяспекай, бо важныя сістэмныя даныя будуць захоўвацца на раздзеле без шыфравання.&lt;br/&gt;Вы можаце працягнуць, але файлавая сістэма разблакуецца падчас запуску сістэмы.&lt;br/&gt;Каб уключыць шыфраванне загрузачнага раздзела, вярніцеся назад і стварыце яго нанова, адзначыўшы &lt;strong&gt;Шыфраваць&lt;/strong&gt; у акне стварэння раздзела.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>ёсць прынамсі адна даступная дыскавая прылада.</translation> <translation>ёсць прынамсі адна даступная дыскавая прылада.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Няма раздзелаў для ўсталёўкі.</translation> <translation>Няма раздзелаў для ўсталёўкі.</translation>
</message> </message>
@ -3646,18 +3661,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>Падрыхтоўка групаў.</translation> <translation>Падрыхтоўка групаў.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>Не атрымалася стварыць групы ў мэтавай сістэме</translation> <translation>Не атрымалася стварыць групы ў мэтавай сістэме</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>Наступныя групы адсутнічаюць у мэтавай сістэме: %1</translation> <translation>Наступныя групы адсутнічаюць у мэтавай сістэме: %1</translation>
</message> </message>
@ -3665,17 +3680,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>Наладка &lt;pre&gt;суперкарыстальнікаў&lt;/pre&gt;.</translation> <translation>Наладка &lt;pre&gt;суперкарыстальнікаў&lt;/pre&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Не атрымалася ўжыць chmod да файла sudoers.</translation> <translation>Не атрымалася ўжыць chmod да файла sudoers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Не атрымалася запісаць файл sudoers.</translation> <translation>Не атрымалася запісаць файл sudoers.</translation>
</message> </message>
@ -3865,12 +3880,12 @@ Output:
<translation>Адмантаваць файлавыя сістэмы.</translation> <translation>Адмантаваць файлавыя сістэмы.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Инсталирай</translation> <translation>Инсталирай</translation>
</message> </message>
@ -1460,12 +1460,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1978,35 +1978,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2838,82 +2838,97 @@ The installer will quit and all changes will be lost.</source>
<translation>Дялове</translation> <translation>Дялове</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Сегашен:</translation> <translation>Сегашен:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>След:</translation> <translation>След:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Няма конфигуриран EFI системен дял</translation> <translation>Няма конфигуриран EFI системен дял</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Липсва криптиране на дял за начално зареждане</translation> <translation>Липсва криптиране на дял за начално зареждане</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3620,18 +3635,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3639,17 +3654,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Не може да се изпълни chmod върху sudoers файла.</translation> <translation>Не може да се изпълни chmod върху sudoers файла.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Не може да се създаде sudoers файл за записване.</translation> <translation>Не може да се създаде sudoers файл за записване.</translation>
</message> </message>
@ -3839,12 +3854,12 @@ Output:
<translation>Демонтирай файловите системи.</translation> <translation>Демонтирай файловите системи.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation> </translation> <translation> </translation>
</message> </message>
@ -1459,12 +1459,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1977,35 +1977,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2837,82 +2837,97 @@ The installer will quit and all changes will be lost.</source>
<translation>ি</translation> <translation>ি</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>:</translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>:</translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3617,18 +3632,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3636,17 +3651,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Sudoers chmod </translation> <translation>Sudoers chmod </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation> sudoers ি </translation> <translation> sudoers ি </translation>
</message> </message>
@ -3836,12 +3851,12 @@ Output:
<translation> িি </translation> <translation> িি </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Configuració</translation> <translation>Configuració</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Instal·la</translation> <translation>Instal·la</translation>
</message> </message>
@ -1464,12 +1464,12 @@ L'instal·lador es tancarà i tots els canvis es perdran.</translation>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>Detalls:</translation> <translation>Detalls:</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Voleu enganxar el registre d'instal·lació a la xarxa?</translation> <translation>Voleu enganxar el registre d'instal·lació a la xarxa?</translation>
</message> </message>
@ -1982,35 +1982,35 @@ L'instal·lador es tancarà i tots els canvis es perdran.</translation>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>Es configura el fitxer de clau LUKS.</translation> <translation>Es configura el fitxer de clau LUKS.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>No s'ha definit cap partició.</translation> <translation>No s'ha definit cap partició.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Error de configuració de rootfs encriptat.</translation> <translation>Error de configuració de rootfs encriptat.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>La partició d'arrel %1 és LUKS però no se n'ha establert cap contrasenya.</translation> <translation>La partició d'arrel %1 és LUKS però no se n'ha establert cap contrasenya.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>No s'ha pogut crear el fitxer de clau de LUKS per a la partició d'arrel %1.</translation> <translation>No s'ha pogut crear el fitxer de clau de LUKS per a la partició d'arrel %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>No s'ha pogut configurar el fitxer de clau de LUKS a la partició %1.</translation> <translation>No s'ha pogut configurar el fitxer de clau de LUKS a la partició %1.</translation>
</message> </message>
@ -2844,82 +2844,97 @@ per desplaçar-s'hi i useu els botons +/- per fer ampliar-lo o reduir-lo, o bé
<translation>Particions</translation> <translation>Particions</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation>Les accions de partició no segures estan habilitades.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation>Les particions estan configurades per fallar &lt;b&gt;sempre&lt;/b&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation>No es canviarà cap partició.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Actual:</translation> <translation>Actual:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Després:</translation> <translation>Després:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>No hi ha cap partició EFI de sistema configurada</translation> <translation>No hi ha cap partició EFI de sistema configurada</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>Partició de sistema EFI configurada incorrectament</translation> <translation>Partició de sistema EFI configurada incorrectament</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation>Cal una partició de sistema EFI per iniciar %1. &lt;br/&gt;&lt;br/&gt;Per configurar-ne una, torneu enrere i seleccioneu o creeu un sistema de fitxers adequat.</translation> <translation>Cal una partició de sistema EFI per iniciar %1. &lt;br/&gt;&lt;br/&gt;Per configurar-ne una, torneu enrere i seleccioneu o creeu un sistema de fitxers adequat.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>El sistema de fitxers ha d'estar muntat a &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>El sistema de fitxers ha d'estar muntat a &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation>El sistema de fitxers ha de ser del tipus FAT32.</translation> <translation>El sistema de fitxers ha de ser del tipus FAT32.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation>El sistema de fitxers ha de tenir un mínim de %1 MiB.</translation> <translation>El sistema de fitxers ha de tenir un mínim de %1 MiB.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation>El sistema de fitxers ha de tenir la bandera &lt;strong&gt;%1&lt;/strong&gt; establerta.</translation> <translation>El sistema de fitxers ha de tenir la bandera &lt;strong&gt;%1&lt;/strong&gt; establerta.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation>Podeu continuar sense configurar una partició del sistema EFI, però és possible que el sistema no s'iniciï.</translation> <translation>Podeu continuar sense configurar una partició del sistema EFI, però és possible que el sistema no s'iniciï.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>Opció per usar GPT amb BIOS</translation> <translation>Opció per usar GPT amb BIOS</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <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>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Partició d'arrencada sense encriptar</translation> <translation>Partició d'arrencada sense encriptar</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>S'ha establert una partició d'arrencada separada conjuntament amb una partició d'arrel encriptada, però la partició d'arrencada no està encriptada.&lt;br/&gt;&lt;br/&gt;Hi ha assumptes de seguretat amb aquest tipus de configuració, perquè hi ha fitxers del sistema importants en una partició no encriptada.&lt;br/&gt;Podeu continuar, si així ho desitgeu, però el desbloqueig del sistema de fitxers succeirà després, durant l'inici del sistema.&lt;br/&gt;Per encriptar la partició d'arrencada, torneu enrere i torneu-la a crear seleccionant &lt;strong&gt;Encripta&lt;/strong&gt; a la finestra de creació de la partició.</translation> <translation>S'ha establert una partició d'arrencada separada conjuntament amb una partició d'arrel encriptada, però la partició d'arrencada no està encriptada.&lt;br/&gt;&lt;br/&gt;Hi ha assumptes de seguretat amb aquest tipus de configuració, perquè hi ha fitxers del sistema importants en una partició no encriptada.&lt;br/&gt;Podeu continuar, si així ho desitgeu, però el desbloqueig del sistema de fitxers succeirà després, durant l'inici del sistema.&lt;br/&gt;Per encriptar la partició d'arrencada, torneu enrere i torneu-la a crear seleccionant &lt;strong&gt;Encripta&lt;/strong&gt; a la finestra de creació de la partició.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>tingui com a mínim un dispositiu de disc disponible.</translation> <translation>tingui com a mínim un dispositiu de disc disponible.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>No hi ha particions per fer-hi una instal·lació.</translation> <translation>No hi ha particions per fer-hi una instal·lació.</translation>
</message> </message>
@ -3630,18 +3645,18 @@ La configuració pot continuar, però algunes característiques podrien estar in
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>Es preparen els grups.</translation> <translation>Es preparen els grups.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>No s'han pogut crear grups al sistema de destinació.</translation> <translation>No s'han pogut crear grups al sistema de destinació.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>Aquests grups falten al sistema de destinació: %1</translation> <translation>Aquests grups falten al sistema de destinació: %1</translation>
</message> </message>
@ -3649,17 +3664,17 @@ La configuració pot continuar, però algunes característiques podrien estar in
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>Configuració d'usuaris de &lt;pre&gt;sudo&lt;/pre&gt;</translation> <translation>Configuració d'usuaris de &lt;pre&gt;sudo&lt;/pre&gt;</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>No es pot fer chmod al fitxer d'usuaris de sudo.</translation> <translation>No es pot fer chmod al fitxer d'usuaris de sudo.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>No es pot crear el fitxer d'usuaris de sudo per escriure-hi.</translation> <translation>No es pot crear el fitxer d'usuaris de sudo per escriure-hi.</translation>
</message> </message>
@ -3849,12 +3864,12 @@ La configuració pot continuar, però algunes característiques podrien estar in
<translation>Desmunta els sistemes de fitxers.</translation> <translation>Desmunta els sistemes de fitxers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation>No hi ha cap sistema de destinació disponible.</translation> <translation>No hi ha cap sistema de destinació disponible.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation>No s'ha establert cap punt de muntatge d'arrel.</translation> <translation>No s'ha establert cap punt de muntatge d'arrel.</translation>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Configuració</translation> <translation>Configuració</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Instal·la</translation> <translation>Instal·la</translation>
</message> </message>
@ -1460,12 +1460,12 @@ L'instal·lador es tancarà i tots els canvis es perdran.</translation>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Voleu enganxar el registre d'instal·lació a la xarxa?</translation> <translation>Voleu enganxar el registre d'instal·lació a la xarxa?</translation>
</message> </message>
@ -1978,35 +1978,35 @@ L'instal·lador es tancarà i tots els canvis es perdran.</translation>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>S'està configurant el fitxer de clau LUKS.</translation> <translation>S'està configurant el fitxer de clau LUKS.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>No s'ha definit cap partició.</translation> <translation>No s'ha definit cap partició.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>S'ha produït un error de configuració del rootfs encriptat.</translation> <translation>S'ha produït un error de configuració del rootfs encriptat.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>La partició d'arrel %1 és LUKS, però no se n'ha establit cap contrasenya.</translation> <translation>La partició d'arrel %1 és LUKS, però no se n'ha establit cap contrasenya.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>No s'ha pogut crear el fitxer de clau de LUKS per a la partició d'arrel %1.</translation> <translation>No s'ha pogut crear el fitxer de clau de LUKS per a la partició d'arrel %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>No s'ha pogut configurar el fitxer de clau de LUKS en la partició %1.</translation> <translation>No s'ha pogut configurar el fitxer de clau de LUKS en la partició %1.</translation>
</message> </message>
@ -2840,82 +2840,97 @@ per a desplaçar-s'hi i useu els botons +/- per a ampliar-lo o reduir-lo, o bé
<translation>Particions</translation> <translation>Particions</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Actual:</translation> <translation>Actual:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Després:</translation> <translation>Després:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>No hi ha cap partició EFI de sistema configurada</translation> <translation>No hi ha cap partició EFI de sistema configurada</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>Opció per a usar GPT amb BIOS</translation> <translation>Opció per a usar GPT amb BIOS</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Partició d'arrancada sense encriptar</translation> <translation>Partició d'arrancada sense encriptar</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>S'ha establit una partició d'arrancada separada conjuntament amb una partició d'arrel encriptada, però la partició d'arrancada no està encriptada.&lt;br/&gt;&lt;br/&gt;Hi ha qüestions de seguretat amb aquest tipus de configuració, perquè hi ha fitxers del sistema importants en una partició no encriptada.&lt;br/&gt;Podeu continuar, si així ho desitgeu, però el desbloqueig del sistema de fitxers tindrà lloc després, durant l'inici del sistema.&lt;br/&gt;Per a encriptar la partició d'arrancada, torneu arrere i torneu-la a crear seleccionant &lt;strong&gt;Encripta&lt;/strong&gt; en la finestra de creació de la partició.</translation> <translation>S'ha establit una partició d'arrancada separada conjuntament amb una partició d'arrel encriptada, però la partició d'arrancada no està encriptada.&lt;br/&gt;&lt;br/&gt;Hi ha qüestions de seguretat amb aquest tipus de configuració, perquè hi ha fitxers del sistema importants en una partició no encriptada.&lt;br/&gt;Podeu continuar, si així ho desitgeu, però el desbloqueig del sistema de fitxers tindrà lloc després, durant l'inici del sistema.&lt;br/&gt;Per a encriptar la partició d'arrancada, torneu arrere i torneu-la a crear seleccionant &lt;strong&gt;Encripta&lt;/strong&gt; en la finestra de creació de la partició.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation> com a mínim un dispositiu de disc disponible.</translation> <translation> com a mínim un dispositiu de disc disponible.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>No hi ha particions per a fer-hi una instal·lació.</translation> <translation>No hi ha particions per a fer-hi una instal·lació.</translation>
</message> </message>
@ -3626,18 +3641,18 @@ La configuració pot continuar, però és possible que algunes característiques
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>S'estan preparant els grups.</translation> <translation>S'estan preparant els grups.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>No s'han pogut crear grups en el sistema de destinació.</translation> <translation>No s'han pogut crear grups en el sistema de destinació.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>Aquests grups falten en el sistema de destinació: %1</translation> <translation>Aquests grups falten en el sistema de destinació: %1</translation>
</message> </message>
@ -3645,17 +3660,17 @@ La configuració pot continuar, però és possible que algunes característiques
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>Configuració d'usuaris de &lt;pre&gt;sudo&lt;/pre&gt;.</translation> <translation>Configuració d'usuaris de &lt;pre&gt;sudo&lt;/pre&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>No es pot fer chmod al fitxer sudoers.</translation> <translation>No es pot fer chmod al fitxer sudoers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>No es pot crear el fitxer sudoers per a escriure-hi.</translation> <translation>No es pot crear el fitxer sudoers per a escriure-hi.</translation>
</message> </message>
@ -3845,12 +3860,12 @@ La configuració pot continuar, però és possible que algunes característiques
<translation>Desmunta els sistemes de fitxers.</translation> <translation>Desmunta els sistemes de fitxers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Nastavit</translation> <translation>Nastavit</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Nainstalovat</translation> <translation>Nainstalovat</translation>
</message> </message>
@ -1468,12 +1468,12 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>Podrobnosti:</translation> <translation>Podrobnosti:</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Chcete vyvěsit záznam událostí při instalaci na web?</translation> <translation>Chcete vyvěsit záznam událostí při instalaci na web?</translation>
</message> </message>
@ -1986,35 +1986,35 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>Nastavování souboru s klíčem pro LUKS šifrování.</translation> <translation>Nastavování souboru s klíčem pro LUKS šifrování.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Nejsou definovány žádné oddíly.</translation> <translation>Nejsou definovány žádné oddíly.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Chyba nastavení šifrovaného kořenového oddílu</translation> <translation>Chyba nastavení šifrovaného kořenového oddílu</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>Kořenový oddíl %1 je LUKS, ale nebyla nastavena žádná heslová fráze.</translation> <translation>Kořenový oddíl %1 je LUKS, ale nebyla nastavena žádná heslová fráze.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>Nedaří se vytvořit LUKS klíč pro kořenový oddíl %1.</translation> <translation>Nedaří se vytvořit LUKS klíč pro kořenový oddíl %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>Nedaří se nastavit LUKS klíč pro oddíl %1.</translation> <translation>Nedaří se nastavit LUKS klíč pro oddíl %1.</translation>
</message> </message>
@ -2866,82 +2866,97 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<translation>Oddíly</translation> <translation>Oddíly</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Stávající:</translation> <translation>Stávající:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Potom:</translation> <translation>Potom:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Není nastavený žádný EFI systémový oddíl</translation> <translation>Není nastavený žádný EFI systémový oddíl</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>EFI systémový oddíl není nastaven správně</translation> <translation>EFI systémový oddíl není nastaven správně</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation>Aby bylo možné spouštět %1, je zapotřebí EFI systémový oddíl.&lt;br/&gt;&lt;br/&gt;Takový nastavíte tak, že se vrátíte zpět a vyberete nebo vytvoříte příhodný souborový systém.</translation> <translation>Aby bylo možné spouštět %1, je zapotřebí EFI systémový oddíl.&lt;br/&gt;&lt;br/&gt;Takový nastavíte tak, že se vrátíte zpět a vyberete nebo vytvoříte příhodný souborový systém.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>Je třeba, aby souborový systém byl připojený na &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Je třeba, aby souborový systém byl připojený na &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation>Je třeba, aby souborový systém byl typu FAT32.</translation> <translation>Je třeba, aby souborový systém byl typu FAT32.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation>Je třeba, aby souborový systém byl alespoň %1 MiB velký.</translation> <translation>Je třeba, aby souborový systém byl alespoň %1 MiB velký.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation>Je třeba, aby souborový systém měl nastavený příznak &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Je třeba, aby souborový systém měl nastavený příznak &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation>Je možné pokračovat bez vytvoření EFI systémového oddílu, ale může se stát, že váš systém tím nenastartuje.</translation> <translation>Je možné pokračovat bez vytvoření EFI systémového oddílu, ale může se stát, že váš systém tím nenastartuje.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>Volba použít GPT i pro BIOS zavádění (MBR)</translation> <translation>Volba použít GPT i pro BIOS zavádění (MBR)</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Zaváděcí oddíl není šifrován</translation> <translation>Zaváděcí oddíl není šifrován</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Kromě šifrovaného kořenového oddílu byl vytvořen i nešifrovaný oddíl zavaděče.&lt;br/&gt;&lt;br/&gt;To by mohl být bezpečnostní problém, protože na nešifrovaném oddílu jsou důležité soubory systému.&lt;br/&gt;Pokud chcete, můžete pokračovat, ale odemykání souborového systému bude probíhat později při startu systému.&lt;br/&gt;Pro zašifrování oddílu zavaděče se vraťte a vytvořte ho vybráním možnosti &lt;strong&gt;Šifrovat&lt;/strong&gt; v okně při vytváření oddílu.</translation> <translation>Kromě šifrovaného kořenového oddílu byl vytvořen i nešifrovaný oddíl zavaděče.&lt;br/&gt;&lt;br/&gt;To by mohl být bezpečnostní problém, protože na nešifrovaném oddílu jsou důležité soubory systému.&lt;br/&gt;Pokud chcete, můžete pokračovat, ale odemykání souborového systému bude probíhat později při startu systému.&lt;br/&gt;Pro zašifrování oddílu zavaděče se vraťte a vytvořte ho vybráním možnosti &lt;strong&gt;Šifrovat&lt;/strong&gt; v okně při vytváření oddílu.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation> k dispozici alespoň jedno zařízení pro ukládání dat.</translation> <translation> k dispozici alespoň jedno zařízení pro ukládání dat.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Nejsou zde žádné oddíly na které by se dalo nainstalovat.</translation> <translation>Nejsou zde žádné oddíly na které by se dalo nainstalovat.</translation>
</message> </message>
@ -3652,18 +3667,18 @@ Výstup:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>Příprava skupin.</translation> <translation>Příprava skupin.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>V cílovém systému se nedaří vytvořit skupiny</translation> <translation>V cílovém systému se nedaří vytvořit skupiny</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>Tyto skupiny v cílovém systému chybí: %1</translation> <translation>Tyto skupiny v cílovém systému chybí: %1</translation>
</message> </message>
@ -3671,17 +3686,17 @@ Výstup:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>Nastavit &lt;pre&gt;sudo&lt;/pre&gt; uživatele.</translation> <translation>Nastavit &lt;pre&gt;sudo&lt;/pre&gt; uživatele.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Nepodařilo se změnit přístupová práva (chmod) na souboru se sudoers.</translation> <translation>Nepodařilo se změnit přístupová práva (chmod) na souboru se sudoers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Nepodařilo se vytvořit soubor pro sudoers tak, aby do něj šlo zapsat.</translation> <translation>Nepodařilo se vytvořit soubor pro sudoers tak, aby do něj šlo zapsat.</translation>
</message> </message>
@ -3871,12 +3886,12 @@ Výstup:
<translation>Odpojit souborové systémy.</translation> <translation>Odpojit souborové systémy.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation>Není k dispozici cílový systém</translation> <translation>Není k dispozici cílový systém</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation>Není nastaven rootMountPoint.</translation> <translation>Není nastaven rootMountPoint.</translation>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Opsæt</translation> <translation>Opsæt</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Installation</translation> <translation>Installation</translation>
</message> </message>
@ -1460,12 +1460,12 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Vil du indsætte installationsloggen webbet?</translation> <translation>Vil du indsætte installationsloggen webbet?</translation>
</message> </message>
@ -1978,35 +1978,35 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>Konfigurerer LUKS-nøglefil.</translation> <translation>Konfigurerer LUKS-nøglefil.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Der er ikke defineret nogen partitioner.</translation> <translation>Der er ikke defineret nogen partitioner.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Fejl ved opsætning af krypteret rootfs</translation> <translation>Fejl ved opsætning af krypteret rootfs</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>Rodpartitionen %1 er LUKS men der er ikke indstillet nogen adgangskode.</translation> <translation>Rodpartitionen %1 er LUKS men der er ikke indstillet nogen adgangskode.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>Kunne ikke oprette LUKS-nøglefil for rodpartitionen %1.</translation> <translation>Kunne ikke oprette LUKS-nøglefil for rodpartitionen %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>Kunne ikke konfigurere LUKS-nøglefil partitionen %1.</translation> <translation>Kunne ikke konfigurere LUKS-nøglefil partitionen %1.</translation>
</message> </message>
@ -2840,82 +2840,97 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
<translation>Partitioner</translation> <translation>Partitioner</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Nuværende:</translation> <translation>Nuværende:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Efter:</translation> <translation>Efter:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Der er ikke konfigureret nogen EFI-systempartition</translation> <translation>Der er ikke konfigureret nogen EFI-systempartition</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>Valgmulighed til at bruge GPT BIOS</translation> <translation>Valgmulighed til at bruge GPT BIOS</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Bootpartition ikke krypteret</translation> <translation>Bootpartition ikke krypteret</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>En separat bootpartition blev opsat sammen med en krypteret rodpartition, men bootpartitionen er ikke krypteret.&lt;br/&gt;&lt;br/&gt;Der er sikkerhedsmæssige bekymringer med denne slags opsætning, da vigtige systemfiler er gemt en ikke-krypteret partition.&lt;br/&gt;Du kan fortsætte hvis du vil, men oplåsning af filsystemet sker senere under systemets opstart.&lt;br/&gt;For at kryptere bootpartitionen skal du tilbage og oprette den igen, vælge &lt;strong&gt;Kryptér&lt;/strong&gt; i partitionsoprettelsesvinduet.</translation> <translation>En separat bootpartition blev opsat sammen med en krypteret rodpartition, men bootpartitionen er ikke krypteret.&lt;br/&gt;&lt;br/&gt;Der er sikkerhedsmæssige bekymringer med denne slags opsætning, da vigtige systemfiler er gemt en ikke-krypteret partition.&lt;br/&gt;Du kan fortsætte hvis du vil, men oplåsning af filsystemet sker senere under systemets opstart.&lt;br/&gt;For at kryptere bootpartitionen skal du tilbage og oprette den igen, vælge &lt;strong&gt;Kryptér&lt;/strong&gt; i partitionsoprettelsesvinduet.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>har mindst én tilgængelig diskenhed.</translation> <translation>har mindst én tilgængelig diskenhed.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Der er ikke nogen partitioner at installere .</translation> <translation>Der er ikke nogen partitioner at installere .</translation>
</message> </message>
@ -3627,18 +3642,18 @@ setting
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>Forbereder grupper.</translation> <translation>Forbereder grupper.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>Kunne ikke oprette grupper i målsystemet</translation> <translation>Kunne ikke oprette grupper i målsystemet</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>Grupperne mangler i målsystemet: %1</translation> <translation>Grupperne mangler i målsystemet: %1</translation>
</message> </message>
@ -3646,17 +3661,17 @@ setting
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>Konfigurer &lt;pre&gt;sudo&lt;/pre&gt;-brugere.</translation> <translation>Konfigurer &lt;pre&gt;sudo&lt;/pre&gt;-brugere.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Kan ikke chmod sudoers-fil.</translation> <translation>Kan ikke chmod sudoers-fil.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Kan ikke oprette sudoers-fil til skrivning.</translation> <translation>Kan ikke oprette sudoers-fil til skrivning.</translation>
</message> </message>
@ -3846,12 +3861,12 @@ setting
<translation>Afmonter filsystemer.</translation> <translation>Afmonter filsystemer.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Einrichtung</translation> <translation>Einrichtung</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Installieren</translation> <translation>Installieren</translation>
</message> </message>
@ -1465,12 +1465,12 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>Details:</translation> <translation>Details:</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Möchten Sie das Installationsprotokoll an eine Internetadresse senden?</translation> <translation>Möchten Sie das Installationsprotokoll an eine Internetadresse senden?</translation>
</message> </message>
@ -1983,35 +1983,35 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>Konfiguriere LUKS-Schlüsseldatei.</translation> <translation>Konfiguriere LUKS-Schlüsseldatei.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Keine Partitionen definiert.</translation> <translation>Keine Partitionen definiert.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Fehler bei der Einrichtung der verschlüsselten Root-Partition</translation> <translation>Fehler bei der Einrichtung der verschlüsselten Root-Partition</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>Root-Partition %1 ist mit LUKS verschlüsselt, aber es wurde kein Passwort gesetzt.</translation> <translation>Root-Partition %1 ist mit LUKS verschlüsselt, aber es wurde kein Passwort gesetzt.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>Konnte die LUKS-Schlüsseldatei für die Root-Partition %1 nicht erstellen. </translation> <translation>Konnte die LUKS-Schlüsseldatei für die Root-Partition %1 nicht erstellen. </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>Die LUKS-Schlüsseldatei konnte nicht auf Partition %1 eingerichtet werden.</translation> <translation>Die LUKS-Schlüsseldatei konnte nicht auf Partition %1 eingerichtet werden.</translation>
</message> </message>
@ -2845,82 +2845,97 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<translation>Partitionen</translation> <translation>Partitionen</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Aktuell:</translation> <translation>Aktuell:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Nachher:</translation> <translation>Nachher:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Keine EFI-Systempartition konfiguriert</translation> <translation>Keine EFI-Systempartition konfiguriert</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>EFI Systempartition falsch konfiguriert</translation> <translation>EFI Systempartition falsch konfiguriert</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation>Eine EFI Systempartition ist notwendig, um %1 zu starten.&lt;br/&gt;&lt;br/&gt;Um eine EFI Systempartition zu konfigurieren, gehen Sie zurück und wählen oder erstellen Sie ein geeignetes Dateisystem.</translation> <translation>Eine EFI Systempartition ist notwendig, um %1 zu starten.&lt;br/&gt;&lt;br/&gt;Um eine EFI Systempartition zu konfigurieren, gehen Sie zurück und wählen oder erstellen Sie ein geeignetes Dateisystem.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>Das Dateisystem muss eingehängt sein unter &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Das Dateisystem muss eingehängt sein unter &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation>Das Dateisystem muss vom Typ FAT32 sein.</translation> <translation>Das Dateisystem muss vom Typ FAT32 sein.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation>Das Dateisystem muss mindestens %1 MiB groß sein.</translation> <translation>Das Dateisystem muss mindestens %1 MiB groß sein.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation>Das Dateisystem muss die Markierung &lt;strong&gt;%1&lt;/strong&gt; tragen.</translation> <translation>Das Dateisystem muss die Markierung &lt;strong&gt;%1&lt;/strong&gt; tragen.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation>Sie können fortfahren, ohne eine EFI-Systempartition einzurichten, aber Ihr installiertes System wird möglicherweise nicht starten.</translation> <translation>Sie können fortfahren, ohne eine EFI-Systempartition einzurichten, aber Ihr installiertes System wird möglicherweise nicht starten.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>Option zur Verwendung von GPT mit BIOS</translation> <translation>Option zur Verwendung von GPT mit BIOS</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Bootpartition nicht verschlüsselt</translation> <translation>Bootpartition nicht verschlüsselt</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Eine separate Bootpartition wurde zusammen mit einer verschlüsselten Rootpartition erstellt, die Bootpartition ist aber unverschlüsselt.&lt;br/&gt;&lt;br/&gt; Dies ist sicherheitstechnisch nicht optimal, da wichtige Systemdateien auf der unverschlüsselten Bootpartition gespeichert werden.&lt;br/&gt;Wenn Sie wollen, können Sie fortfahren, aber das Entschlüsseln des Dateisystems wird erst später während des Systemstarts erfolgen.&lt;br/&gt;Um die Bootpartition zu verschlüsseln, gehen Sie zurück und erstellen Sie diese neu, indem Sie bei der Partitionierung &lt;strong&gt;Verschlüsseln&lt;/strong&gt; wählen. </translation> <translation>Eine separate Bootpartition wurde zusammen mit einer verschlüsselten Rootpartition erstellt, die Bootpartition ist aber unverschlüsselt.&lt;br/&gt;&lt;br/&gt; Dies ist sicherheitstechnisch nicht optimal, da wichtige Systemdateien auf der unverschlüsselten Bootpartition gespeichert werden.&lt;br/&gt;Wenn Sie wollen, können Sie fortfahren, aber das Entschlüsseln des Dateisystems wird erst später während des Systemstarts erfolgen.&lt;br/&gt;Um die Bootpartition zu verschlüsseln, gehen Sie zurück und erstellen Sie diese neu, indem Sie bei der Partitionierung &lt;strong&gt;Verschlüsseln&lt;/strong&gt; wählen. </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>mindestens eine Festplatte zur Verfügung hat</translation> <translation>mindestens eine Festplatte zur Verfügung hat</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Keine Partitionen für die Installation verfügbar.</translation> <translation>Keine Partitionen für die Installation verfügbar.</translation>
</message> </message>
@ -3631,18 +3646,18 @@ Ausgabe:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>Bereite Gruppen vor.</translation> <translation>Bereite Gruppen vor.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>Auf dem Zielsystem konnten keine Gruppen erstellt werden.</translation> <translation>Auf dem Zielsystem konnten keine Gruppen erstellt werden.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>Folgende Gruppen fehlen auf dem Zielsystem: %1</translation> <translation>Folgende Gruppen fehlen auf dem Zielsystem: %1</translation>
</message> </message>
@ -3650,17 +3665,17 @@ Ausgabe:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>Konfiguriere &lt;pre&gt;sudo&lt;/pre&gt; Benutzer.</translation> <translation>Konfiguriere &lt;pre&gt;sudo&lt;/pre&gt; Benutzer.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Kann chmod nicht auf sudoers-Datei anwenden.</translation> <translation>Kann chmod nicht auf sudoers-Datei anwenden.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Kann sudoers-Datei nicht zum Schreiben erstellen.</translation> <translation>Kann sudoers-Datei nicht zum Schreiben erstellen.</translation>
</message> </message>
@ -3850,12 +3865,12 @@ Ausgabe:
<translation>Dateisysteme aushängen.</translation> <translation>Dateisysteme aushängen.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation>Kein Zielsystem verfügbar.</translation> <translation>Kein Zielsystem verfügbar.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation>Kein rootMountPoint gesetzt.</translation> <translation>Kein rootMountPoint gesetzt.</translation>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Εγκατάσταση</translation> <translation>Εγκατάσταση</translation>
</message> </message>
@ -1459,12 +1459,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1977,35 +1977,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2837,82 +2837,97 @@ The installer will quit and all changes will be lost.</source>
<translation>Κατατμήσεις</translation> <translation>Κατατμήσεις</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Τρέχον:</translation> <translation>Τρέχον:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Μετά:</translation> <translation>Μετά:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3617,18 +3632,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3636,17 +3651,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Δεν είναι δυνατό το chmod στο αρχείο sudoers.</translation> <translation>Δεν είναι δυνατό το chmod στο αρχείο sudoers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Δεν είναι δυνατή η δημιουργία του αρχείου sudoers για εγγραφή.</translation> <translation>Δεν είναι δυνατή η δημιουργία του αρχείου sudoers για εγγραφή.</translation>
</message> </message>
@ -3836,12 +3851,12 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Set up</translation> <translation>Set up</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Install</translation> <translation>Install</translation>
</message> </message>
@ -1464,12 +1464,12 @@ The installer will quit and all changes will be lost.</translation>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>Details:</translation> <translation>Details:</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Would you like to paste the install log to the web?</translation> <translation>Would you like to paste the install log to the web?</translation>
</message> </message>
@ -1982,35 +1982,35 @@ The installer will quit and all changes will be lost.</translation>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>Configuring LUKS key file.</translation> <translation>Configuring LUKS key file.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>No partitions are defined.</translation> <translation>No partitions are defined.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Encrypted rootfs setup error</translation> <translation>Encrypted rootfs setup error</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>Root partition %1 is LUKS but no passphrase has been set.</translation> <translation>Root partition %1 is LUKS but no passphrase has been set.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>Could not create LUKS key file for root partition %1.</translation> <translation>Could not create LUKS key file for root partition %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>Could not configure LUKS key file on partition %1.</translation> <translation>Could not configure LUKS key file on partition %1.</translation>
</message> </message>
@ -2844,82 +2844,97 @@ The installer will quit and all changes will be lost.</translation>
<translation>Partitions</translation> <translation>Partitions</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation>Unsafe partition actions are enabled.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation>No partitions will be changed.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Current:</translation> <translation>Current:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>After:</translation> <translation>After:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>No EFI system partition configured</translation> <translation>No EFI system partition configured</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>EFI system partition configured incorrectly</translation> <translation>EFI system partition configured incorrectly</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</translation> <translation>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation>The filesystem must have type FAT32.</translation> <translation>The filesystem must have type FAT32.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation>The filesystem must be at least %1 MiB in size.</translation> <translation>The filesystem must be at least %1 MiB in size.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</translation> <translation>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation>You can continue without setting up an EFI system partition but your system may fail to start.</translation> <translation>You can continue without setting up an EFI system partition but your system may fail to start.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>Option to use GPT on BIOS</translation> <translation>Option to use GPT on BIOS</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <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>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Boot partition not encrypted</translation> <translation>Boot partition not encrypted</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</translation> <translation>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>has at least one disk device available.</translation> <translation>has at least one disk device available.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>There are no partitions to install on.</translation> <translation>There are no partitions to install on.</translation>
</message> </message>
@ -3630,18 +3645,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>Preparing groups.</translation> <translation>Preparing groups.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>Could not create groups in target system</translation> <translation>Could not create groups in target system</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>These groups are missing in the target system: %1</translation> <translation>These groups are missing in the target system: %1</translation>
</message> </message>
@ -3649,17 +3664,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</translation> <translation>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Cannot chmod sudoers file.</translation> <translation>Cannot chmod sudoers file.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Cannot create sudoers file for writing.</translation> <translation>Cannot create sudoers file for writing.</translation>
</message> </message>
@ -3849,12 +3864,12 @@ Output:
<translation>Unmount file systems.</translation> <translation>Unmount file systems.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation>No target system available.</translation> <translation>No target system available.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation>No rootMountPoint is set.</translation> <translation>No rootMountPoint is set.</translation>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Install</translation> <translation>Install</translation>
</message> </message>
@ -1459,12 +1459,12 @@ The installer will quit and all changes will be lost.</translation>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1977,35 +1977,35 @@ The installer will quit and all changes will be lost.</translation>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2837,82 +2837,97 @@ The installer will quit and all changes will be lost.</translation>
<translation>Partitions</translation> <translation>Partitions</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Current:</translation> <translation>Current:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>After:</translation> <translation>After:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>No EFI system partition configured</translation> <translation>No EFI system partition configured</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Boot partition not encrypted</translation> <translation>Boot partition not encrypted</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</translation> <translation>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3620,18 +3635,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3639,17 +3654,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Cannot chmod sudoers file.</translation> <translation>Cannot chmod sudoers file.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Cannot create sudoers file for writing.</translation> <translation>Cannot create sudoers file for writing.</translation>
</message> </message>
@ -3839,12 +3854,12 @@ Output:
<translation>Unmount file systems.</translation> <translation>Unmount file systems.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Aranĝu</translation> <translation>Aranĝu</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Instalu</translation> <translation>Instalu</translation>
</message> </message>
@ -1463,12 +1463,12 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos.</translation>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1981,35 +1981,35 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos.</translation>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2841,82 +2841,97 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos.</translation>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Nune:</translation> <translation>Nune:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Poste:</translation> <translation>Poste:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3621,18 +3636,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3640,17 +3655,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3840,12 +3855,12 @@ Output:
<translation>Demeti dosieraj sistemoj.</translation> <translation>Demeti dosieraj sistemoj.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

File diff suppressed because it is too large Load Diff

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Preparar</translation> <translation>Preparar</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Instalar</translation> <translation>Instalar</translation>
</message> </message>
@ -1461,12 +1461,12 @@ El instalador terminará y se perderán todos los cambios.</translation>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1979,35 +1979,35 @@ El instalador terminará y se perderán todos los cambios.</translation>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2839,82 +2839,97 @@ El instalador terminará y se perderán todos los cambios.</translation>
<translation>Particiones</translation> <translation>Particiones</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Actual:</translation> <translation>Actual:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Después:</translation> <translation>Después:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Sistema de partición EFI no configurada</translation> <translation>Sistema de partición EFI no configurada</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Partición de arranque no encriptada</translation> <translation>Partición de arranque no encriptada</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Se creó una partición de arranque separada junto con una partición raíz cifrada, pero la partición de arranque no está encriptada.&lt;br/&gt;&lt;br/&gt; Existen problemas de seguridad con este tipo de configuración, ya que los archivos importantes del sistema se guardan en una partición no encriptada. &lt;br/&gt;Puede continuar si lo desea, pero el desbloqueo del sistema de archivos ocurrirá más tarde durante el inicio del sistema. &lt;br/&gt;Para encriptar la partición de arranque, retroceda y vuelva a crearla, seleccionando &lt;strong&gt;Encriptar&lt;/strong&gt; en la ventana de creación de la partición.</translation> <translation>Se creó una partición de arranque separada junto con una partición raíz cifrada, pero la partición de arranque no está encriptada.&lt;br/&gt;&lt;br/&gt; Existen problemas de seguridad con este tipo de configuración, ya que los archivos importantes del sistema se guardan en una partición no encriptada. &lt;br/&gt;Puede continuar si lo desea, pero el desbloqueo del sistema de archivos ocurrirá más tarde durante el inicio del sistema. &lt;br/&gt;Para encriptar la partición de arranque, retroceda y vuelva a crearla, seleccionando &lt;strong&gt;Encriptar&lt;/strong&gt; en la ventana de creación de la partición.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3623,18 +3638,18 @@ Salida
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3642,17 +3657,17 @@ Salida
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>No se puede aplicar chmod al archivo sudoers.</translation> <translation>No se puede aplicar chmod al archivo sudoers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>No se puede crear el archivo sudoers para editarlo. </translation> <translation>No se puede crear el archivo sudoers para editarlo. </translation>
</message> </message>
@ -3842,12 +3857,12 @@ Salida
<translation>Desmontar sistemas de archivo.</translation> <translation>Desmontar sistemas de archivo.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

File diff suppressed because it is too large Load Diff

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Instalar</translation> <translation>Instalar</translation>
</message> </message>
@ -1458,12 +1458,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1976,35 +1976,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2836,82 +2836,97 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3616,18 +3631,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3635,17 +3650,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3835,12 +3850,12 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Paigalda</translation> <translation>Paigalda</translation>
</message> </message>
@ -1459,12 +1459,12 @@ Paigaldaja sulgub ning kõik muutused kaovad.</translation>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1977,35 +1977,35 @@ Paigaldaja sulgub ning kõik muutused kaovad.</translation>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2837,82 +2837,97 @@ Paigaldaja sulgub ning kõik muutused kaovad.</translation>
<translation>Partitsioonid</translation> <translation>Partitsioonid</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Hetkel:</translation> <translation>Hetkel:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Pärast:</translation> <translation>Pärast:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>EFI süsteemipartitsiooni pole seadistatud</translation> <translation>EFI süsteemipartitsiooni pole seadistatud</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Käivituspartitsioon pole krüptitud</translation> <translation>Käivituspartitsioon pole krüptitud</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Eraldi käivituspartitsioon seadistati koos krüptitud juurpartitsiooniga, aga käivituspartitsioon ise ei ole krüptitud.&lt;br/&gt;&lt;br/&gt;Selle seadistusega kaasnevad turvaprobleemid, sest tähtsad süsteemifailid hoitakse krüptimata partitsioonil.&lt;br/&gt;Sa võid soovi korral jätkata, aga failisüsteemi lukust lahti tegemine toimub hiljem süsteemi käivitusel.&lt;br/&gt;Et krüpteerida käivituspartisiooni, mine tagasi ja taasloo see, valides &lt;strong&gt;Krüpteeri&lt;/strong&gt; partitsiooni loomise aknas.</translation> <translation>Eraldi käivituspartitsioon seadistati koos krüptitud juurpartitsiooniga, aga käivituspartitsioon ise ei ole krüptitud.&lt;br/&gt;&lt;br/&gt;Selle seadistusega kaasnevad turvaprobleemid, sest tähtsad süsteemifailid hoitakse krüptimata partitsioonil.&lt;br/&gt;Sa võid soovi korral jätkata, aga failisüsteemi lukust lahti tegemine toimub hiljem süsteemi käivitusel.&lt;br/&gt;Et krüpteerida käivituspartisiooni, mine tagasi ja taasloo see, valides &lt;strong&gt;Krüpteeri&lt;/strong&gt; partitsiooni loomise aknas.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3620,18 +3635,18 @@ Väljund:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3639,17 +3654,17 @@ Väljund:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Sudoja faili ei saa chmod-ida.</translation> <translation>Sudoja faili ei saa chmod-ida.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Sudoja faili ei saa kirjutamiseks luua.</translation> <translation>Sudoja faili ei saa kirjutamiseks luua.</translation>
</message> </message>
@ -3839,12 +3854,12 @@ Väljund:
<translation>Haagi failisüsteemid lahti.</translation> <translation>Haagi failisüsteemid lahti.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Instalatu</translation> <translation>Instalatu</translation>
</message> </message>
@ -1459,12 +1459,12 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira.</translation>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1977,35 +1977,35 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira.</translation>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2837,82 +2837,97 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira.</translation>
<translation>Partizioak</translation> <translation>Partizioak</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Unekoa: </translation> <translation>Unekoa: </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Ondoren:</translation> <translation>Ondoren:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3619,18 +3634,18 @@ Irteera:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3638,17 +3653,17 @@ Irteera:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Ezin zaio chmod egin sudoers fitxategiari.</translation> <translation>Ezin zaio chmod egin sudoers fitxategiari.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Ezin da sudoers fitxategia sortu bertan idazteko.</translation> <translation>Ezin da sudoers fitxategia sortu bertan idazteko.</translation>
</message> </message>
@ -3838,12 +3853,12 @@ Irteera:
<translation>Fitxategi sistemak desmuntatu.</translation> <translation>Fitxategi sistemak desmuntatu.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>راهاندازی</translation> <translation>راهاندازی</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>نصب</translation> <translation>نصب</translation>
</message> </message>
@ -1464,12 +1464,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>آیا مایلید که گزارشها در وب الصاق شوند؟</translation> <translation>آیا مایلید که گزارشها در وب الصاق شوند؟</translation>
</message> </message>
@ -1982,35 +1982,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>پیکربندی پروندهٔ کلید LUKS.</translation> <translation>پیکربندی پروندهٔ کلید LUKS.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>هیچ افرازی تعریف نشده</translation> <translation>هیچ افرازی تعریف نشده</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>خطای برپاسازی rootfs رمزشده</translation> <translation>خطای برپاسازی rootfs رمزشده</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>افراز روت %1 یک LUKS است، ولی هیچ گذرواژه ای تنظیم نشده است.</translation> <translation>افراز روت %1 یک LUKS است، ولی هیچ گذرواژه ای تنظیم نشده است.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>نمیتوان پرونده کلید LUKS را برای افراز روت %1 ایجاد کرد.</translation> <translation>نمیتوان پرونده کلید LUKS را برای افراز روت %1 ایجاد کرد.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>نمیتوان پرونده کلید LUKS را برای افراز روت %1 تنظیم کرد.</translation> <translation>نمیتوان پرونده کلید LUKS را برای افراز روت %1 تنظیم کرد.</translation>
</message> </message>
@ -2842,82 +2842,97 @@ The installer will quit and all changes will be lost.</source>
<translation>افرازها</translation> <translation>افرازها</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>فعلی:</translation> <translation>فعلی:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>بعد از:</translation> <translation>بعد از:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>هیچ پارتیشن سیستم EFI پیکربندی نشده است</translation> <translation>هیچ پارتیشن سیستم EFI پیکربندی نشده است</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>افراز سامانه EFI به نادرستی تنظیم شده است</translation> <translation>افراز سامانه EFI به نادرستی تنظیم شده است</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation>یک افراز سامانه EFI نیازمندست که از %1 شروع شود.&lt;br/&gt;&lt;br/&gt;برای تنظیم یک افراز سامانه EFI، به عقب بازگشته و یک سامانه پرونده مناسب انتخاب یا ایجاد کنید.</translation> <translation>یک افراز سامانه EFI نیازمندست که از %1 شروع شود.&lt;br/&gt;&lt;br/&gt;برای تنظیم یک افراز سامانه EFI، به عقب بازگشته و یک سامانه پرونده مناسب انتخاب یا ایجاد کنید.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>سامانه پرونده باید روی &lt;strong&gt;%1&lt;/strong&gt; سوارشده باشد.</translation> <translation>سامانه پرونده باید روی &lt;strong&gt;%1&lt;/strong&gt; سوارشده باشد.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation>سامانه پرونده باید دارای نوع FAT32 باشد.</translation> <translation>سامانه پرونده باید دارای نوع FAT32 باشد.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation>سامانه پرونده حداقل باید دارای %1مبیبایت حجم باشد.</translation> <translation>سامانه پرونده حداقل باید دارای %1مبیبایت حجم باشد.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation>سامانه پرونده باید پرچم &lt;strong&gt;%1&lt;/strong&gt; را دارا باشد.</translation> <translation>سامانه پرونده باید پرچم &lt;strong&gt;%1&lt;/strong&gt; را دارا باشد.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation>شما میتوانید بدون برپاکردن افراز سامانه EFI ادامه دهید ولی ممکن است سامانه برای شروع با مشکل مواجه شود.</translation> <translation>شما میتوانید بدون برپاکردن افراز سامانه EFI ادامه دهید ولی ممکن است سامانه برای شروع با مشکل مواجه شود.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>گزینه ای برای استفاده از GPT در BIOS</translation> <translation>گزینه ای برای استفاده از GPT در BIOS</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>پارتیشن بوت رمزشده نیست</translation> <translation>پارتیشن بوت رمزشده نیست</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>یک پارتیشن بوت جداگانه همراه با یک پارتیشن ریشه ای رمزگذاری شده راه اندازی شده است ، اما پارتیشن بوت رمزگذاری نشده است. با این نوع تنظیمات مشکلات امنیتی وجود دارد ، زیرا پرونده های مهم سیستم در یک پارتیشن رمزگذاری نشده نگهداری می شوند. در صورت تمایل می توانید ادامه دهید ، اما باز کردن قفل سیستم فایل بعداً در هنگام راه اندازی سیستم اتفاق می افتد. برای رمزگذاری پارتیشن بوت ، به عقب برگردید و آن را دوباره ایجاد کنید ، رمزگذاری را در پنجره ایجاد پارتیشن انتخاب کنید.</translation> <translation>یک پارتیشن بوت جداگانه همراه با یک پارتیشن ریشه ای رمزگذاری شده راه اندازی شده است ، اما پارتیشن بوت رمزگذاری نشده است. با این نوع تنظیمات مشکلات امنیتی وجود دارد ، زیرا پرونده های مهم سیستم در یک پارتیشن رمزگذاری نشده نگهداری می شوند. در صورت تمایل می توانید ادامه دهید ، اما باز کردن قفل سیستم فایل بعداً در هنگام راه اندازی سیستم اتفاق می افتد. برای رمزگذاری پارتیشن بوت ، به عقب برگردید و آن را دوباره ایجاد کنید ، رمزگذاری را در پنجره ایجاد پارتیشن انتخاب کنید.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>حداقل یک دستگاه دیسک در دسترس دارد.</translation> <translation>حداقل یک دستگاه دیسک در دسترس دارد.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>هیچ پارتیشنی برای نصب وجود ندارد</translation> <translation>هیچ پارتیشنی برای نصب وجود ندارد</translation>
</message> </message>
@ -3625,18 +3640,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>درحال آماده سازی گروه ها.</translation> <translation>درحال آماده سازی گروه ها.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>عدم توانایی در ساخت گروه ها در سامانه هدف</translation> <translation>عدم توانایی در ساخت گروه ها در سامانه هدف</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>این گروه ها در سامانه هدف یافت نشدند: %1</translation> <translation>این گروه ها در سامانه هدف یافت نشدند: %1</translation>
</message> </message>
@ -3644,17 +3659,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>کاربران با دسترسی &lt;pre&gt;sudo&lt;/pre&gt; را تنظیم کنید.</translation> <translation>کاربران با دسترسی &lt;pre&gt;sudo&lt;/pre&gt; را تنظیم کنید.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>نمیتوان مالک پروندهٔ sudoers را تغییر داد.</translation> <translation>نمیتوان مالک پروندهٔ sudoers را تغییر داد.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>نمیتوان پروندهٔ sudoers را برای نوشتن ایجاد کرد.</translation> <translation>نمیتوان پروندهٔ sudoers را برای نوشتن ایجاد کرد.</translation>
</message> </message>
@ -3844,12 +3859,12 @@ Output:
<translation>پیاده کردن سامانههای پرونده.</translation> <translation>پیاده کردن سامانههای پرونده.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Määritä</translation> <translation>Määritä</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Asenna</translation> <translation>Asenna</translation>
</message> </message>
@ -1465,12 +1465,12 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä.</tra
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>Tiedot:</translation> <translation>Tiedot:</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Haluatko liittää asennuslokin verkkoon?</translation> <translation>Haluatko liittää asennuslokin verkkoon?</translation>
</message> </message>
@ -1983,35 +1983,35 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä.</tra
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>LUKS-avaintiedoston määrittäminen.</translation> <translation>LUKS-avaintiedoston määrittäminen.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Osioita ei ole määritelty.</translation> <translation>Osioita ei ole määritelty.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Salattu rootfs asennusvirhe</translation> <translation>Salattu rootfs asennusvirhe</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>Juuriosio %1 on LUKS, mutta salasanaa ei ole asetettu.</translation> <translation>Juuriosio %1 on LUKS, mutta salasanaa ei ole asetettu.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>LUKS-avaintiedostoa ei voitu luoda juuriosioon %1.</translation> <translation>LUKS-avaintiedostoa ei voitu luoda juuriosioon %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>LUKS-avaintiedostoa ei voi määrittää osiossa %1.</translation> <translation>LUKS-avaintiedostoa ei voi määrittää osiossa %1.</translation>
</message> </message>
@ -2845,82 +2845,97 @@ hiiren vieritystä skaalaamiseen.</translation>
<translation>Osiot</translation> <translation>Osiot</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation>Epäturvalliset osiotoiminnot ovat käytössä.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation>Osiointi on määritetty &lt;b&gt;aina&lt;/b&gt; epäonnistumaan.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation>Osioita ei muuteta.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Nykyinen:</translation> <translation>Nykyinen:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Jälkeen:</translation> <translation>Jälkeen:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>EFI-järjestelmäosiota ei ole määritetty</translation> <translation>EFI-järjestelmäosiota ei ole määritetty</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>EFI-järjestelmäosio on määritetty väärin</translation> <translation>EFI-järjestelmäosio on määritetty väärin</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation>EFI-järjestelmäosio on vaatimus käynnistääksesi %1.&lt;br/&gt;&lt;br/&gt;Palaa jos haluat määrittää EFI-järjestelmäosion, valitse tai luo sopiva tiedostojärjestelmä.</translation> <translation>EFI-järjestelmäosio on vaatimus käynnistääksesi %1.&lt;br/&gt;&lt;br/&gt;Palaa jos haluat määrittää EFI-järjestelmäosion, valitse tai luo sopiva tiedostojärjestelmä.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>Tiedostojärjestelmä on asennettava &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Tiedostojärjestelmä on asennettava &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation>Tiedostojärjestelmän on oltava tyyppiä FAT32.</translation> <translation>Tiedostojärjestelmän on oltava tyyppiä FAT32.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation>Tiedostojärjestelmän on oltava kooltaan vähintään %1 MiB.</translation> <translation>Tiedostojärjestelmän on oltava kooltaan vähintään %1 MiB.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation>Tiedostojärjestelmässä on oltava &lt;strong&gt;%1&lt;/strong&gt; lippu.</translation> <translation>Tiedostojärjestelmässä on oltava &lt;strong&gt;%1&lt;/strong&gt; lippu.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation>Voit jatkaa ilman EFI-järjestelmäosion määrittämistä, mutta järjestelmä ei ehkä käynnisty.</translation> <translation>Voit jatkaa ilman EFI-järjestelmäosion määrittämistä, mutta järjestelmä ei ehkä käynnisty.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>BIOS:ssa mahdollisuus käyttää GPT:</translation> <translation>BIOS:ssa mahdollisuus käyttää GPT:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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-osiotaulukko on paras vaihtoehto kaikille järjestelmille. Tämä asennusohjelma tukee asennusta myös BIOS:n järjestelmään.&lt;br/&gt;&lt;br/&gt;Jos haluat määrittää GPT-osiotaulukon BIOS:ssa (jos sitä ei ole jo tehty) palaa takaisin ja aseta osiotaulukkoksi GPT. Luo seuraavaksi 8 Mb alustamaton osio &lt;strong&gt;%2&lt;/strong&gt; lipulla käyttöön.&lt;br/&gt;&lt;br/&gt;Alustamaton 8 Mb osio on tarpeen %1:n käynnistämiseksi BIOS-järjestelmässä GPT:llä.</translation> <translation>GPT-osiotaulukko on paras vaihtoehto kaikille järjestelmille. Kuitenkin asennusohjelma tukee myös BIOS-järjestelmää.&lt;br/&gt;&lt;br/&gt;Jos haluat määrittää GPT-osiotaulukon BIOS:ssa (jos et ole jo tehnyt) niin palaa takaisin ja aseta osiotaulukkoksi GPT. Luo seuraavaksi 8 Mt alustamaton osio &lt;strong&gt;%2&lt;/strong&gt; lipulla käyttöön.&lt;br/&gt;&lt;br/&gt;Alustamaton 8 Mt tarvitaan %1 käynnistämiseen BIOS-järjestelmässä, jossa on GPT.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Käynnistysosiota ei ole salattu</translation> <translation>Käynnistysosiota ei ole salattu</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Erillinen käynnistysosio perustettiin yhdessä salatun juuriosion kanssa, mutta käynnistysosio ei ole salattu.&lt;br/&gt;&lt;br/&gt;Tällaisissa asetuksissa on tietoturvaongelmia, koska tärkeät järjestelmätiedostot pidetään salaamattomassa osiossa.&lt;br/&gt;Voit jatkaa, jos haluat, mutta tiedostojärjestelmän lukituksen avaaminen tapahtuu myöhemmin järjestelmän käynnistyksen aikana.&lt;br/&gt;Käynnistysosion salaamiseksi siirry takaisin ja luo se uudelleen valitsemalla &lt;strong&gt;Salaa&lt;/strong&gt; osion luominen -ikkunassa. </translation> <translation>Erillinen käynnistysosio perustettiin yhdessä salatun juuriosion kanssa, mutta käynnistysosio ei ole salattu.&lt;br/&gt;&lt;br/&gt;Tällaisissa asetuksissa on tietoturvaongelmia, koska tärkeät järjestelmätiedostot pidetään salaamattomassa osiossa.&lt;br/&gt;Voit jatkaa, jos haluat, mutta tiedostojärjestelmän lukituksen avaaminen tapahtuu myöhemmin järjestelmän käynnistyksen aikana.&lt;br/&gt;Käynnistysosion salaamiseksi siirry takaisin ja luo se uudelleen valitsemalla &lt;strong&gt;Salaa&lt;/strong&gt; osion luominen -ikkunassa. </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>on vähintään yksi asema käytettävissä.</translation> <translation>on vähintään yksi asema käytettävissä.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Asennettavia osioita ei ole.</translation> <translation>Asennettavia osioita ei ole.</translation>
</message> </message>
@ -3631,18 +3646,18 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä.&lt;/
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>Valmistellaan ryhmiä.</translation> <translation>Valmistellaan ryhmiä.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>Ryhmiä ei voitu luoda kohdejärjestelmään</translation> <translation>Ryhmiä ei voitu luoda kohdejärjestelmään</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>Kohderyhmästä puuttuu näitä ryhmiä: %1</translation> <translation>Kohderyhmästä puuttuu näitä ryhmiä: %1</translation>
</message> </message>
@ -3650,17 +3665,17 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä.&lt;/
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>Määritä &lt;pre&gt;sudo&lt;/pre&gt;-käyttäjät.</translation> <translation>Määritä &lt;pre&gt;sudo&lt;/pre&gt;-käyttäjät.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Ei voida tehdä käyttöoikeuden muutosta sudoers-tiedostolle.</translation> <translation>Ei voida tehdä käyttöoikeuden muutosta sudoers-tiedostolle.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Ei voida luoda sudoers-tiedostoa kirjoitettavaksi.</translation> <translation>Ei voida luoda sudoers-tiedostoa kirjoitettavaksi.</translation>
</message> </message>
@ -3850,12 +3865,12 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä.&lt;/
<translation>Irrota tiedostojärjestelmät käytöstä.</translation> <translation>Irrota tiedostojärjestelmät käytöstä.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation>Kohdejärjestelmää ei ole käytettävissä.</translation> <translation>Kohdejärjestelmää ei ole käytettävissä.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation>Ei ole asetettu rootMountPoint</translation> <translation>Ei ole asetettu rootMountPoint</translation>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Configurer</translation> <translation>Configurer</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Installer</translation> <translation>Installer</translation>
</message> </message>
@ -1464,12 +1464,12 @@ L'installateur se fermera et les changements seront perdus.</translation>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Voulez-vous copier le journal d'installation sur le Web ?</translation> <translation>Voulez-vous copier le journal d'installation sur le Web ?</translation>
</message> </message>
@ -1982,35 +1982,35 @@ L'installateur se fermera et les changements seront perdus.</translation>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>Configuration de la clé de fichier LUKS.</translation> <translation>Configuration de la clé de fichier LUKS.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Aucune partition n'est définie.</translation> <translation>Aucune partition n'est définie.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Erreur du chiffrement du setup rootfs</translation> <translation>Erreur du chiffrement du setup rootfs</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>La partition racine %1 est LUKS mais aucune phrase secrète n'a é configurée.</translation> <translation>La partition racine %1 est LUKS mais aucune phrase secrète n'a é configurée.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>Impossible de créer le fichier de clé LUKS pour la partition racine %1.</translation> <translation>Impossible de créer le fichier de clé LUKS pour la partition racine %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>La clé LUKS n'a pas pu être configurée sur la partition %1.</translation> <translation>La clé LUKS n'a pas pu être configurée sur la partition %1.</translation>
</message> </message>
@ -2844,82 +2844,97 @@ L'installateur se fermera et les changements seront perdus.</translation>
<translation>Partitions</translation> <translation>Partitions</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Actuel :</translation> <translation>Actuel :</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Après :</translation> <translation>Après :</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Aucune partition système EFI configurée</translation> <translation>Aucune partition système EFI configurée</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>Option pour utiliser GPT sur le BIOS</translation> <translation>Option pour utiliser GPT sur le BIOS</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Partition d'amorçage non chiffrée.</translation> <translation>Partition d'amorçage non chiffrée.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Une partition d'amorçage distincte a été configurée avec une partition racine chiffrée, mais la partition d'amorçage n'est pas chiffrée. &lt;br/&gt; &lt;br/&gt; Il y a des problèmes de sécurité avec ce type d'installation, car des fichiers système importants sont conservés sur une partition non chiffrée &lt;br/&gt; Vous pouvez continuer si vous le souhaitez, mais le déverrouillage du système de fichiers se produira plus tard au démarrage du système. &lt;br/&gt; Pour chiffrer la partition d'amorçage, revenez en arrière et recréez-la, en sélectionnant &lt;strong&gt; Chiffrer &lt;/ strong&gt; dans la partition Fenêtre de création.</translation> <translation>Une partition d'amorçage distincte a été configurée avec une partition racine chiffrée, mais la partition d'amorçage n'est pas chiffrée. &lt;br/&gt; &lt;br/&gt; Il y a des problèmes de sécurité avec ce type d'installation, car des fichiers système importants sont conservés sur une partition non chiffrée &lt;br/&gt; Vous pouvez continuer si vous le souhaitez, mais le déverrouillage du système de fichiers se produira plus tard au démarrage du système. &lt;br/&gt; Pour chiffrer la partition d'amorçage, revenez en arrière et recréez-la, en sélectionnant &lt;strong&gt; Chiffrer &lt;/ strong&gt; dans la partition Fenêtre de création.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>a au moins un disque disponible.</translation> <translation>a au moins un disque disponible.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Il n'y a pas de partition pour l'installation</translation> <translation>Il n'y a pas de partition pour l'installation</translation>
</message> </message>
@ -3631,18 +3646,18 @@ Sortie
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>Préparation des groupes.</translation> <translation>Préparation des groupes.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>Impossible de créer des groupes dans le système cible</translation> <translation>Impossible de créer des groupes dans le système cible</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>Ces groupes sont manquants dans le système cible : %1</translation> <translation>Ces groupes sont manquants dans le système cible : %1</translation>
</message> </message>
@ -3650,17 +3665,17 @@ Sortie
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>Configurer les utilisateurs &lt;pre&gt;sudo&lt;/pre&gt;. </translation> <translation>Configurer les utilisateurs &lt;pre&gt;sudo&lt;/pre&gt;. </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Impossible d'exécuter chmod sur le fichier sudoers.</translation> <translation>Impossible d'exécuter chmod sur le fichier sudoers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Impossible de créer le fichier sudoers en écriture.</translation> <translation>Impossible de créer le fichier sudoers en écriture.</translation>
</message> </message>
@ -3850,12 +3865,12 @@ Sortie
<translation>Démonter les systèmes de fichiers</translation> <translation>Démonter les systèmes de fichiers</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

File diff suppressed because it is too large Load Diff

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Impostazion</translation> <translation>Impostazion</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Instale</translation> <translation>Instale</translation>
</message> </message>
@ -1460,12 +1460,12 @@ Il program di instalazion al jessarà e dutis lis modifichis a laran pierdudis.<
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Meti sul web il regjistri di instalazion?</translation> <translation>Meti sul web il regjistri di instalazion?</translation>
</message> </message>
@ -1978,35 +1978,35 @@ Il program di instalazion al jessarà e dutis lis modifichis a laran pierdudis.<
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>Daûr a configurâ dal file clâf di LUKS.</translation> <translation>Daûr a configurâ dal file clâf di LUKS.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>No je stade definide nissune partizion.</translation> <translation>No je stade definide nissune partizion.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Erôr te configurazion di rootfs cifrât</translation> <translation>Erôr te configurazion di rootfs cifrât</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>La partizion lidrîs (root) %1 e je LUKS ma no je stade stabilide nissune frase di acès.</translation> <translation>La partizion lidrîs (root) %1 e je LUKS ma no je stade stabilide nissune frase di acès.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>Impussibil creâ il file clâf di LUKS pe partizion lidrîs (root) %1.</translation> <translation>Impussibil creâ il file clâf di LUKS pe partizion lidrîs (root) %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>No si è rivâts a configurâ il file clâf di LUKS su la partizion %1.</translation> <translation>No si è rivâts a configurâ il file clâf di LUKS su la partizion %1.</translation>
</message> </message>
@ -2840,82 +2840,97 @@ Il program di instalazion al jessarà e dutis lis modifichis a laran pierdudis.<
<translation>Partizions</translation> <translation>Partizions</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Atuâl:</translation> <translation>Atuâl:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Dopo:</translation> <translation>Dopo:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Nissune partizion di sisteme EFI configurade</translation> <translation>Nissune partizion di sisteme EFI configurade</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>Opzion par doprâ GPT su BIOS</translation> <translation>Opzion par doprâ GPT su BIOS</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Partizion di inviament no cifrade</translation> <translation>Partizion di inviament no cifrade</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>E je stade configurade une partizion di inviament separade adun cuntune partizion lidrîs cifrade, ma la partizion di inviament no je cifrade.&lt;br/&gt;&lt;br/&gt; A esistin problemis di sigurece cun chest gjenar di configurazion, par vie che i file di sisteme impuartants a vegnin tignûts intune partizion no cifrade.&lt;br/&gt;Tu puedis continuâ se tu lu desideris, ma il sbloc dal filesystem al sucedarà plui indenant tal inviament dal sisteme.&lt;br/&gt;Par cifrâ la partizion di inviament, torne indaûr e torne creile, selezionant &lt;strong&gt;Cifrâ&lt;/strong&gt; tal barcon di creazion de partizion.</translation> <translation>E je stade configurade une partizion di inviament separade adun cuntune partizion lidrîs cifrade, ma la partizion di inviament no je cifrade.&lt;br/&gt;&lt;br/&gt; A esistin problemis di sigurece cun chest gjenar di configurazion, par vie che i file di sisteme impuartants a vegnin tignûts intune partizion no cifrade.&lt;br/&gt;Tu puedis continuâ se tu lu desideris, ma il sbloc dal filesystem al sucedarà plui indenant tal inviament dal sisteme.&lt;br/&gt;Par cifrâ la partizion di inviament, torne indaûr e torne creile, selezionant &lt;strong&gt;Cifrâ&lt;/strong&gt; tal barcon di creazion de partizion.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>al à almancul une unitât disc disponibil.</translation> <translation>al à almancul une unitât disc disponibil.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>No son partizions dulà a instalâ.</translation> <translation>No son partizions dulà a instalâ.</translation>
</message> </message>
@ -3626,18 +3641,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>Daûr a preparâ i grups.</translation> <translation>Daûr a preparâ i grups.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>Impussibil creâ i grups intal sisteme di destinazion</translation> <translation>Impussibil creâ i grups intal sisteme di destinazion</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>A mancjin chescj grups tal sisteme di destinazion: %1</translation> <translation>A mancjin chescj grups tal sisteme di destinazion: %1</translation>
</message> </message>
@ -3645,17 +3660,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>Configurâ i utents &lt;pre&gt;sudo&lt;/pre&gt;.</translation> <translation>Configurâ i utents &lt;pre&gt;sudo&lt;/pre&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Impussibil eseguî chmod sul file sudoers.</translation> <translation>Impussibil eseguî chmod sul file sudoers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Impussibil creâ il file sudoers pe scriture.</translation> <translation>Impussibil creâ il file sudoers pe scriture.</translation>
</message> </message>
@ -3845,12 +3860,12 @@ Output:
<translation>Dismonte i file-systems.</translation> <translation>Dismonte i file-systems.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -146,12 +146,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Instalar</translation> <translation>Instalar</translation>
</message> </message>
@ -1460,12 +1460,12 @@ O instalador pecharase e perderanse todos os cambios.</translation>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1978,35 +1978,35 @@ O instalador pecharase e perderanse todos os cambios.</translation>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2838,82 +2838,97 @@ O instalador pecharase e perderanse todos os cambios.</translation>
<translation>Particións</translation> <translation>Particións</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Actual:</translation> <translation>Actual:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Despois:</translation> <translation>Despois:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Non hai ningunha partición de sistema EFI configurada</translation> <translation>Non hai ningunha partición de sistema EFI configurada</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>A partición de arranque non está cifrada</translation> <translation>A partición de arranque non está cifrada</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Configurouse unha partición de arranque separada xunto cunha partición raíz cifrada, mais a partición raíz non está cifrada.&lt;br/&gt;&lt;br/&gt;Con este tipo de configuración preocupa a seguranza porque nunha partición sen cifrar grávanse ficheiros de sistema importantes.&lt;br/&gt;Pode continuar, se así o desexa, mais o desbloqueo do sistema de ficheiros producirase máis tarde durante o arranque do sistema.&lt;br/&gt;Para cifrar unha partición raíz volva atrás e créea de novo, seleccionando &lt;strong&gt;Cifrar&lt;/strong&gt; na xanela de creación de particións.</translation> <translation>Configurouse unha partición de arranque separada xunto cunha partición raíz cifrada, mais a partición raíz non está cifrada.&lt;br/&gt;&lt;br/&gt;Con este tipo de configuración preocupa a seguranza porque nunha partición sen cifrar grávanse ficheiros de sistema importantes.&lt;br/&gt;Pode continuar, se así o desexa, mais o desbloqueo do sistema de ficheiros producirase máis tarde durante o arranque do sistema.&lt;br/&gt;Para cifrar unha partición raíz volva atrás e créea de novo, seleccionando &lt;strong&gt;Cifrar&lt;/strong&gt; na xanela de creación de particións.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3621,18 +3636,18 @@ Saída:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3640,17 +3655,17 @@ Saída:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Non se puideron cambiar os permisos do arquivo sudoers.</translation> <translation>Non se puideron cambiar os permisos do arquivo sudoers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Non foi posible crear o arquivo de sudoers.</translation> <translation>Non foi posible crear o arquivo de sudoers.</translation>
</message> </message>
@ -3840,12 +3855,12 @@ Saída:
<translation>Desmontar sistemas de ficheiros.</translation> <translation>Desmontar sistemas de ficheiros.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1458,12 +1458,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1976,35 +1976,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2836,82 +2836,97 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3616,18 +3631,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3635,17 +3650,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3835,12 +3850,12 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>הקמה</translation> <translation>הקמה</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>התקנה</translation> <translation>התקנה</translation>
</message> </message>
@ -1468,12 +1468,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>פרטים:</translation> <translation>פרטים:</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>להדביק את יומן ההתקנה לאינטרנט?</translation> <translation>להדביק את יומן ההתקנה לאינטרנט?</translation>
</message> </message>
@ -1986,35 +1986,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>קובץ מפתח ה־LUKS מוגדר.</translation> <translation>קובץ מפתח ה־LUKS מוגדר.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>לא הוגדרו מחיצות.</translation> <translation>לא הוגדרו מחיצות.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>שגיאת התקנת מחיצת שורש מוצפנת</translation> <translation>שגיאת התקנת מחיצת שורש מוצפנת</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>מחיצת השורש %1 היא LUKS אבל לא הוגדרה מילת צופן.</translation> <translation>מחיצת השורש %1 היא LUKS אבל לא הוגדרה מילת צופן.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>לא ניתן ליצור קובץ מפתח LUKS למחיצת השורש %1.</translation> <translation>לא ניתן ליצור קובץ מפתח LUKS למחיצת השורש %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>לא ניתן להגדיר קובץ מפתח LUKS למחיצה %1.</translation> <translation>לא ניתן להגדיר קובץ מפתח LUKS למחיצה %1.</translation>
</message> </message>
@ -2866,82 +2866,97 @@ The installer will quit and all changes will be lost.</source>
<translation>מחיצות</translation> <translation>מחיצות</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation>פעולות מחיצה מסוכנות פעילות.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation>החלוקה למחיצות מוגדר כך ש&lt;b&gt;תמיד&lt;/b&gt; תיכשל.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation>לא נערכו מחיצות.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>נוכחי:</translation> <translation>נוכחי:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>לאחר:</translation> <translation>לאחר:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>לא הוגדרה מחיצת מערכת EFI</translation> <translation>לא הוגדרה מחיצת מערכת EFI</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>מחיצת המערכת EFI לא הוגדרה נכון</translation> <translation>מחיצת המערכת EFI לא הוגדרה נכון</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation>מחיצת מערכת EFI נחוצה להפעלת %1. &lt;br/&gt;&lt;br/&gt;כדי להפעיל מחיצת מערכת EFI, יש לחזור ולבחור או ליצור מערכת קבצים מתאימה.</translation> <translation>מחיצת מערכת EFI נחוצה להפעלת %1. &lt;br/&gt;&lt;br/&gt;כדי להפעיל מחיצת מערכת EFI, יש לחזור ולבחור או ליצור מערכת קבצים מתאימה.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>יש לעגן את מערכת הקבצים ב־&lt;strong&gt;%1&lt;/strong&gt;</translation> <translation>יש לעגן את מערכת הקבצים ב־&lt;strong&gt;%1&lt;/strong&gt;</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation>מערכת הקבצים חייבת להיות מסוג FAT32.</translation> <translation>מערכת הקבצים חייבת להיות מסוג FAT32.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation>גודל מערכת הקבצים חייב להיות לפחות %1 MIB.</translation> <translation>גודל מערכת הקבצים חייב להיות לפחות %1 MIB.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation>למערכת הקבצים חייב להיות מוגדר הדגלון &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>למערכת הקבצים חייב להיות מוגדר הדגלון &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation>ניתן להמשיך ללא הקמת מחיצת מערכת EFI אך המערכת שלך לא תצליח להיטען.</translation> <translation>ניתן להמשיך ללא הקמת מחיצת מערכת EFI אך המערכת שלך לא תצליח להיטען.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>אפשרות להשתמש ב־GPT או ב־BIOS</translation> <translation>אפשרות להשתמש ב־GPT או ב־BIOS</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <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>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>מחיצת האתחול (Boot) אינה מוצפנת</translation> <translation>מחיצת האתחול (Boot) אינה מוצפנת</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>מחיצת אתחול, boot, נפרדת הוגדרה יחד עם מחיצת מערכת ההפעלה, root, מוצפנת, אך מחיצת האתחול לא הוצפנה.&lt;br/&gt;&lt;br/&gt; ישנן השלכות בטיחותיות עם התצורה שהוגדרה, מכיוון שקובצי מערכת חשובים נשמרים על מחיצה לא מוצפנת.&lt;br/&gt;ניתן להמשיך אם זהו רצונך, אך שחרור מערכת הקבצים יתרחש מאוחר יותר כחלק מהאתחול.&lt;br/&gt;בכדי להצפין את מחיצת האתחול, יש לחזור וליצור אותה מחדש, על ידי בחירה ב &lt;strong&gt;הצפנה&lt;/strong&gt; בחלונית יצירת המחיצה.</translation> <translation>מחיצת אתחול, boot, נפרדת הוגדרה יחד עם מחיצת מערכת ההפעלה, root, מוצפנת, אך מחיצת האתחול לא הוצפנה.&lt;br/&gt;&lt;br/&gt; ישנן השלכות בטיחותיות עם התצורה שהוגדרה, מכיוון שקובצי מערכת חשובים נשמרים על מחיצה לא מוצפנת.&lt;br/&gt;ניתן להמשיך אם זהו רצונך, אך שחרור מערכת הקבצים יתרחש מאוחר יותר כחלק מהאתחול.&lt;br/&gt;בכדי להצפין את מחיצת האתחול, יש לחזור וליצור אותה מחדש, על ידי בחירה ב &lt;strong&gt;הצפנה&lt;/strong&gt; בחלונית יצירת המחיצה.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>יש לפחות התקן כונן אחד זמין.</translation> <translation>יש לפחות התקן כונן אחד זמין.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>אין מחיצות להתקין עליהן.</translation> <translation>אין מחיצות להתקין עליהן.</translation>
</message> </message>
@ -3652,18 +3667,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>הקבוצות בהכנה.</translation> <translation>הקבוצות בהכנה.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>לא ניתן למצוא קבוצות במערכת היעד</translation> <translation>לא ניתן למצוא קבוצות במערכת היעד</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>קבוצות אלו חסרות ממערכת היעד: %1</translation> <translation>קבוצות אלו חסרות ממערכת היעד: %1</translation>
</message> </message>
@ -3671,17 +3686,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>הגדרת משתמשי &lt;pre&gt;sudo&lt;/pre&gt;.</translation> <translation>הגדרת משתמשי &lt;pre&gt;sudo&lt;/pre&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>לא ניתן לשנות את מאפייני קובץ מנהלי המערכת.</translation> <translation>לא ניתן לשנות את מאפייני קובץ מנהלי המערכת.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>לא ניתן ליצור את קובץ מנהלי המערכת לכתיבה.</translation> <translation>לא ניתן ליצור את קובץ מנהלי המערכת לכתיבה.</translation>
</message> </message>
@ -3871,12 +3886,12 @@ Output:
<translation>ניתוק עיגון מערכות קבצים.</translation> <translation>ניתוק עיגון מערכות קבצים.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation>אין מערכת יעד זמינה.</translation> <translation>אין מערכת יעד זמינה.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation>לא הוגדרה נקודת עיגון לשורש.</translation> <translation>לא הוגדרה נקודת עיגון לשורש.</translation>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation> </translation> <translation> </translation>
</message> </message>
@ -1464,12 +1464,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>ि :</translation> <translation>ि :</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation> ि ? </translation> <translation> ि ? </translation>
</message> </message>
@ -1982,35 +1982,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>LUKS ि </translation> <translation>LUKS ि </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation> ि िि </translation> <translation> ि िि </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>ि ि ि</translation> <translation>ि ि ि</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation> ि %1, LUKS </translation> <translation> ि %1, LUKS </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation> ि %1 LUKS </translation> <translation> ि %1 LUKS </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>ि %1 LUKS ि </translation> <translation>ि %1 LUKS ि </translation>
</message> </message>
@ -2844,82 +2844,97 @@ The installer will quit and all changes will be lost.</source>
<translation>ि</translation> <translation>ि</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation>ि ि ि </translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation>ि ि &lt;b&gt;&lt;/b&gt; ि ि </translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation>ि ि ि </translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation> :</translation> <translation> :</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation> :</translation> <translation> :</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation> EFI ि ि ि </translation> <translation> EFI ि ि ि </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>EFI ि ि ि ि </translation> <translation>EFI ि ि ि ि </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation>%1 EFI ि ि &lt;br/&gt;&lt;br/&gt; EFI ि ि ि , ि </translation> <translation>%1 EFI ि ि &lt;br/&gt;&lt;br/&gt; EFI ि ि ि , ि </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation> ि &lt;strong&gt;%1&lt;/strong&gt; </translation> <translation> ि &lt;strong&gt;%1&lt;/strong&gt; </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation> ि FAT32 </translation> <translation> ि FAT32 </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation> ि -- %1 </translation> <translation> ि -- %1 </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation> ि &lt;strong&gt;%1&lt;/strong&gt; </translation> <translation> ि &lt;strong&gt;%1&lt;/strong&gt; </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation> ि EFI ि ि ि ि </translation> <translation> ि EFI ि ि ि ि </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>BIOS GPT ि ि</translation> <translation>BIOS GPT ि ि</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <translation>GPT ि ि ि ि BIOS ि &lt;br/&gt;&lt;br/&gt;BIOS GPT ि ि ि , (ि ) ि ि GPT , ि 8 MB ि ि ि &lt;strong&gt;%2&lt;/strong&gt; का फ्लैग हो।&lt;br/&gt;&lt;br/&gt; ि 8 MB ि %1 BIOS ि GPT </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation> ि ि </translation> <translation> ि ि </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>ि ि ि ि , ि ि &lt;br/&gt;&lt;br/&gt; ि ि ि ि ि &lt;br/&gt; , ि ि ि &lt;br/&gt; ि ि ि ि ि ि &lt;strong&gt;ि&lt;/strong&gt; </translation> <translation>ि ि ि ि , ि ि &lt;br/&gt;&lt;br/&gt; ि ि ि ि ि &lt;br/&gt; , ि ि ि &lt;br/&gt; ि ि ि ि ि ि &lt;strong&gt;ि&lt;/strong&gt; </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>-- ि ि </translation> <translation>-- ि ि </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation> ि </translation> <translation> ि </translation>
</message> </message>
@ -3630,18 +3645,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>ि ि ि</translation> <translation>ि ि ि</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>ि ि ि : %1</translation> <translation>ि ि ि : %1</translation>
</message> </message>
@ -3649,17 +3664,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>&lt;pre&gt;sudo&lt;/pre&gt; ि</translation> <translation>&lt;pre&gt;sudo&lt;/pre&gt; ि</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>sudoers chmod </translation> <translation>sudoers chmod </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation> sudoers </translation> <translation> sudoers </translation>
</message> </message>
@ -3849,12 +3864,12 @@ Output:
<translation> ि </translation> <translation> ि </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation>ि ि </translation> <translation>ि ि </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation>rootMountPoint िि </translation> <translation>rootMountPoint िि </translation>
</message> </message>
@ -4091,7 +4106,7 @@ Output:
<message> <message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/> <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"/> <translation>ZFS ि </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/> <location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>

File diff suppressed because it is too large Load Diff

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Postaviti</translation> <translation>Postaviti</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Instaliraj</translation> <translation>Instaliraj</translation>
</message> </message>
@ -1466,12 +1466,12 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>Detalji:</translation> <translation>Detalji:</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Želite li objaviti dnevnik instaliranja na web?</translation> <translation>Želite li objaviti dnevnik instaliranja na web?</translation>
</message> </message>
@ -1984,35 +1984,35 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>Konfiguriranje LUKS ključne datoteke.</translation> <translation>Konfiguriranje LUKS ključne datoteke.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Nema definiranih particija.</translation> <translation>Nema definiranih particija.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Pogreška postavljanja šifriranog rootfs-a</translation> <translation>Pogreška postavljanja šifriranog rootfs-a</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>Root particija %1 je LUKS, ali nije postavljena zaporka.</translation> <translation>Root particija %1 je LUKS, ali nije postavljena zaporka.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>Nije moguće kreirati LUKS ključnu datoteku za root particiju %1.</translation> <translation>Nije moguće kreirati LUKS ključnu datoteku za root particiju %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>Nije moguće konfigurirati datoteku LUKS ključevima na particiji %1.</translation> <translation>Nije moguće konfigurirati datoteku LUKS ključevima na particiji %1.</translation>
</message> </message>
@ -2855,82 +2855,97 @@ te korištenjem tipki +/- ili skrolanjem miša za zumiranje.</translation>
<translation>Particije</translation> <translation>Particije</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation>Nesigurne radnje na particijama su omogućene.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation>Particioniranje je konfigurirano tako da &lt;b&gt;uvijek&lt;/b&gt; ne uspije.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation>Nijedna particija neće biti promijenjena.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Trenutni:</translation> <translation>Trenutni:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Poslije:</translation> <translation>Poslije:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>EFI particija nije konfigurirana</translation> <translation>EFI particija nije konfigurirana</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>EFI particija nije ispravno konfigurirana</translation> <translation>EFI particija nije ispravno konfigurirana</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation>Za pokretanje %1 potrebna je EFI particija. &lt;br/&gt;&lt;br/&gt;Za konfiguriranje EFI sistemske particije, vratite se i odaberite ili kreirajte odgovarajući datotečni sustav. </translation> <translation>Za pokretanje %1 potrebna je EFI particija. &lt;br/&gt;&lt;br/&gt;Za konfiguriranje EFI sistemske particije, vratite se i odaberite ili kreirajte odgovarajući datotečni sustav. </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>Datotečni sustav mora biti montiran na &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Datotečni sustav mora biti montiran na &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation>Datotečni sustav mora biti FAT32.</translation> <translation>Datotečni sustav mora biti FAT32.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation>Datotečni sustav mora biti veličine od najmanje %1 MiB.</translation> <translation>Datotečni sustav mora biti veličine od najmanje %1 MiB.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation>Datotečni sustav mora imati postavljenu oznaku &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Datotečni sustav mora imati postavljenu oznaku &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation>Možete nastaviti bez postavljanja EFI particije, ali vaš se sustav možda neće pokrenuti.</translation> <translation>Možete nastaviti bez postavljanja EFI particije, ali vaš se sustav možda neće pokrenuti.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>Mogućnost korištenja GPT-a na BIOS-u</translation> <translation>Mogućnost korištenja GPT-a na BIOS-u</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <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>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Boot particija nije kriptirana</translation> <translation>Boot particija nije kriptirana</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Odvojena boot particija je postavljena zajedno s kriptiranom root particijom, ali boot particija nije kriptirana.&lt;br/&gt;&lt;br/&gt;Zabrinuti smo za vašu sigurnost jer su važne datoteke sustava na nekriptiranoj particiji.&lt;br/&gt;Možete nastaviti ako želite, ali datotečni sustav će se otključati kasnije tijekom pokretanja sustava.&lt;br/&gt;Da bi ste kriptirali boot particiju, vratite se natrag i napravite ju, odabirom opcije &lt;strong&gt;Kriptiraj&lt;/strong&gt; u prozoru za stvaranje prarticije.</translation> <translation>Odvojena boot particija je postavljena zajedno s kriptiranom root particijom, ali boot particija nije kriptirana.&lt;br/&gt;&lt;br/&gt;Zabrinuti smo za vašu sigurnost jer su važne datoteke sustava na nekriptiranoj particiji.&lt;br/&gt;Možete nastaviti ako želite, ali datotečni sustav će se otključati kasnije tijekom pokretanja sustava.&lt;br/&gt;Da bi ste kriptirali boot particiju, vratite se natrag i napravite ju, odabirom opcije &lt;strong&gt;Kriptiraj&lt;/strong&gt; u prozoru za stvaranje prarticije.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>ima barem jedan disk dostupan.</translation> <translation>ima barem jedan disk dostupan.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Ne postoje particije na koje bi se instalirao sustav.</translation> <translation>Ne postoje particije na koje bi se instalirao sustav.</translation>
</message> </message>
@ -3641,18 +3656,18 @@ Postavljanje se može nastaviti, ali neke će značajke možda biti onemogućene
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>Pripremam grupe</translation> <translation>Pripremam grupe</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>Nije moguće stvoriti grupe na ciljnom sustavu</translation> <translation>Nije moguće stvoriti grupe na ciljnom sustavu</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>Ove grupe nedostaju na ciljnom sustavu: %1</translation> <translation>Ove grupe nedostaju na ciljnom sustavu: %1</translation>
</message> </message>
@ -3660,17 +3675,17 @@ Postavljanje se može nastaviti, ali neke će značajke možda biti onemogućene
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>Konfiguriranje &lt;pre&gt;sudo&lt;/pre&gt; korisnika</translation> <translation>Konfiguriranje &lt;pre&gt;sudo&lt;/pre&gt; korisnika</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Ne mogu chmod sudoers datoteku.</translation> <translation>Ne mogu chmod sudoers datoteku.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Ne mogu stvoriti sudoers datoteku za pisanje.</translation> <translation>Ne mogu stvoriti sudoers datoteku za pisanje.</translation>
</message> </message>
@ -3860,12 +3875,12 @@ Postavljanje se može nastaviti, ali neke će značajke možda biti onemogućene
<translation>Odmontiraj datotečne sustave.</translation> <translation>Odmontiraj datotečne sustave.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation>Ciljni sustav nije dostupan.</translation> <translation>Ciljni sustav nije dostupan.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation>Nije postavljena root točka moniranja.</translation> <translation>Nije postavljena root točka moniranja.</translation>
</message> </message>

File diff suppressed because it is too large Load Diff

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Összeállítás</translation> <translation>Összeállítás</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Telepít</translation> <translation>Telepít</translation>
</message> </message>
@ -1461,12 +1461,12 @@ Telepítés nem folytatható. &lt;a href="#details"&gt;Részletek...&lt;/a&gt;</
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1979,35 +1979,35 @@ Telepítés nem folytatható. &lt;a href="#details"&gt;Részletek...&lt;/a&gt;</
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>LUKS kulcs fájl konfigurálása.</translation> <translation>LUKS kulcs fájl konfigurálása.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Nincsenek partíciók definiálva.</translation> <translation>Nincsenek partíciók definiálva.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Titkosított rootfs telepítési hiba</translation> <translation>Titkosított rootfs telepítési hiba</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>A %1 root partíció LUKS de beállítva nincs kulcs.</translation> <translation>A %1 root partíció LUKS de beállítva nincs kulcs.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>Nem sikerült létrehozni a LUKS kulcs fájlt a %1 root partícióhoz</translation> <translation>Nem sikerült létrehozni a LUKS kulcs fájlt a %1 root partícióhoz</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2839,82 +2839,97 @@ Telepítés nem folytatható. &lt;a href="#details"&gt;Részletek...&lt;/a&gt;</
<translation>Partíciók</translation> <translation>Partíciók</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Aktuális:</translation> <translation>Aktuális:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Utána:</translation> <translation>Utána:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Nincs EFI rendszer partíció beállítva</translation> <translation>Nincs EFI rendszer partíció beállítva</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Indító partíció nincs titkosítva</translation> <translation>Indító partíció nincs titkosítva</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Egy külön indító partíció lett beállítva egy titkosított root partícióval, de az indító partíció nincs titkosítva.br/&gt;&lt;br/&gt;Biztonsági aggályok merülnek fel ilyen beállítás mellet, mert fontos fájlok nem titkosított partíción vannak tárolva. &lt;br/&gt;Ha szeretnéd, folytathatod így, de a fájlrendszer zárolása meg fog történni az indítás után. &lt;br/&gt; Az indító partíció titkosításához lépj vissza és az újra létrehozáskor válaszd a &lt;strong&gt;Titkosít&lt;/strong&gt; opciót.</translation> <translation>Egy külön indító partíció lett beállítva egy titkosított root partícióval, de az indító partíció nincs titkosítva.br/&gt;&lt;br/&gt;Biztonsági aggályok merülnek fel ilyen beállítás mellet, mert fontos fájlok nem titkosított partíción vannak tárolva. &lt;br/&gt;Ha szeretnéd, folytathatod így, de a fájlrendszer zárolása meg fog történni az indítás után. &lt;br/&gt; Az indító partíció titkosításához lépj vissza és az újra létrehozáskor válaszd a &lt;strong&gt;Titkosít&lt;/strong&gt; opciót.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>legalább egy lemez eszköz elérhető.</translation> <translation>legalább egy lemez eszköz elérhető.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3622,18 +3637,18 @@ Kimenet:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3641,17 +3656,17 @@ Kimenet:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Nem lehet a sudoers fájlt "chmod" -olni.</translation> <translation>Nem lehet a sudoers fájlt "chmod" -olni.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Nem lehet sudoers fájlt létrehozni írásra.</translation> <translation>Nem lehet sudoers fájlt létrehozni írásra.</translation>
</message> </message>
@ -3842,12 +3857,12 @@ Calamares hiba %1.</translation>
<translation>Fájlrendszerek leválasztása.</translation> <translation>Fájlrendszerek leválasztása.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Instal</translation> <translation>Instal</translation>
</message> </message>
@ -1458,12 +1458,12 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</translat
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Maukah anda menempelkan log instalasi ke situs?</translation> <translation>Maukah anda menempelkan log instalasi ke situs?</translation>
</message> </message>
@ -1976,35 +1976,35 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</translat
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>Mengkonfigurasi file kunci LUKS</translation> <translation>Mengkonfigurasi file kunci LUKS</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Tidak ada partisi yang didefinisikan.</translation> <translation>Tidak ada partisi yang didefinisikan.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Kesalahan penyiapan rootfs yang terenkripsi</translation> <translation>Kesalahan penyiapan rootfs yang terenkripsi</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>Partisi root %1 merupakan LUKS tetapi frasa sandi tidak ditetapkan</translation> <translation>Partisi root %1 merupakan LUKS tetapi frasa sandi tidak ditetapkan</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>Tidak dapat membuat file kunci LUKS untuk partisi root %1</translation> <translation>Tidak dapat membuat file kunci LUKS untuk partisi root %1</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>Tidak dapat mengkonfigurasi file kunci LUKS pada partisi %1</translation> <translation>Tidak dapat mengkonfigurasi file kunci LUKS pada partisi %1</translation>
</message> </message>
@ -2827,82 +2827,97 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</translat
<translation>Partisi</translation> <translation>Partisi</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Saat ini:</translation> <translation>Saat ini:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Sesudah:</translation> <translation>Sesudah:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Tiada partisi sistem EFI terkonfigurasi</translation> <translation>Tiada partisi sistem EFI terkonfigurasi</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Partisi boot tidak dienkripsi</translation> <translation>Partisi boot tidak dienkripsi</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Sebuah partisi tersendiri telah terset bersama dengan sebuah partisi root terenkripsi, tapi partisi boot tidak terenkripsi.&lt;br/&gt;&lt;br/&gt;Ada kekhawatiran keamanan dengan jenis setup ini, karena file sistem penting tetap pada partisi tak terenkripsi.&lt;br/&gt;Kamu bisa melanjutkan jika kamu menghendaki, tapi filesystem unlocking akan terjadi nanti selama memulai sistem.&lt;br/&gt;Untuk mengenkripsi partisi boot, pergi mundur dan menciptakannya ulang, memilih &lt;strong&gt;Encrypt&lt;/strong&gt; di jendela penciptaan partisi.</translation> <translation>Sebuah partisi tersendiri telah terset bersama dengan sebuah partisi root terenkripsi, tapi partisi boot tidak terenkripsi.&lt;br/&gt;&lt;br/&gt;Ada kekhawatiran keamanan dengan jenis setup ini, karena file sistem penting tetap pada partisi tak terenkripsi.&lt;br/&gt;Kamu bisa melanjutkan jika kamu menghendaki, tapi filesystem unlocking akan terjadi nanti selama memulai sistem.&lt;br/&gt;Untuk mengenkripsi partisi boot, pergi mundur dan menciptakannya ulang, memilih &lt;strong&gt;Encrypt&lt;/strong&gt; di jendela penciptaan partisi.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3610,18 +3625,18 @@ Keluaran:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3629,17 +3644,17 @@ Keluaran:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Tidak dapat chmod berkas sudoers.</translation> <translation>Tidak dapat chmod berkas sudoers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Tidak dapat membuat berkas sudoers untuk ditulis.</translation> <translation>Tidak dapat membuat berkas sudoers untuk ditulis.</translation>
</message> </message>
@ -3829,12 +3844,12 @@ Keluaran:
<translation>Lepaskan sistem berkas.</translation> <translation>Lepaskan sistem berkas.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

File diff suppressed because it is too large Load Diff

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Configurar</translation> <translation>Configurar</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Installar</translation> <translation>Installar</translation>
</message> </message>
@ -1458,12 +1458,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1976,35 +1976,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Null partition es definit.</translation> <translation>Null partition es definit.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2836,82 +2836,97 @@ The installer will quit and all changes will be lost.</source>
<translation>Partitiones</translation> <translation>Partitiones</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Actual:</translation> <translation>Actual:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Pos:</translation> <translation>Pos:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Null partition del sistema EFI es configurat</translation> <translation>Null partition del sistema EFI es configurat</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Ne existe disponibil partitiones por installation.</translation> <translation>Ne existe disponibil partitiones por installation.</translation>
</message> </message>
@ -3616,18 +3631,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3635,17 +3650,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3835,12 +3850,12 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Setja upp</translation> <translation>Setja upp</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Setja upp</translation> <translation>Setja upp</translation>
</message> </message>
@ -1459,12 +1459,12 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1977,35 +1977,35 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2837,82 +2837,97 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
<translation>Disksneiðar</translation> <translation>Disksneiðar</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Núverandi:</translation> <translation>Núverandi:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Eftir:</translation> <translation>Eftir:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Ekkert EFI kerfisdisksneið stillt</translation> <translation>Ekkert EFI kerfisdisksneið stillt</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3617,18 +3632,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3636,17 +3651,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Get ekki chmod sudoers skrá.</translation> <translation>Get ekki chmod sudoers skrá.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Get ekki búið til sudoers skrá til lesa.</translation> <translation>Get ekki búið til sudoers skrá til lesa.</translation>
</message> </message>
@ -3836,12 +3851,12 @@ Output:
<translation>Aftengja skráarkerfi.</translation> <translation>Aftengja skráarkerfi.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Impostazione</translation> <translation>Impostazione</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Installa</translation> <translation>Installa</translation>
</message> </message>
@ -1459,12 +1459,12 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>Dettagli:</translation> <translation>Dettagli:</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Si vuole mettere il log di installazione sul web?</translation> <translation>Si vuole mettere il log di installazione sul web?</translation>
</message> </message>
@ -1977,35 +1977,35 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>Configurazione in corso del file chiave LUKS.</translation> <translation>Configurazione in corso del file chiave LUKS.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Non è stata specificata alcuna partizione.</translation> <translation>Non è stata specificata alcuna partizione.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Errore nella configurazione del rootfs crittato</translation> <translation>Errore nella configurazione del rootfs crittato</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>La partizione root %1 è LUKS ma non sono state configurate passphrase.</translation> <translation>La partizione root %1 è LUKS ma non sono state configurate passphrase.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>Impossibile creare il file chiave LUKS per la partizione root %1.</translation> <translation>Impossibile creare il file chiave LUKS per la partizione root %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>Impossibile configurare il file chiave LUKS per la partizione %1.</translation> <translation>Impossibile configurare il file chiave LUKS per la partizione %1.</translation>
</message> </message>
@ -2837,82 +2837,97 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<translation>Partizioni</translation> <translation>Partizioni</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Corrente:</translation> <translation>Corrente:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Dopo:</translation> <translation>Dopo:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Nessuna partizione EFI di sistema è configurata</translation> <translation>Nessuna partizione EFI di sistema è configurata</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>Opzione per usare GPT su BIOS</translation> <translation>Opzione per usare GPT su BIOS</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Partizione di avvio non criptata</translation> <translation>Partizione di avvio non criptata</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>E' stata configurata una partizione di avvio non criptata assieme ad una partizione root criptata. &lt;br/&gt;&lt;br/&gt;Ci sono problemi di sicurezza con questo tipo di configurazione perchè dei file di sistema importanti sono tenuti su una partizione non criptata.&lt;br/&gt;Si può continuare se lo si desidera ma dopo ci sarà lo sblocco del file system, durante l'avvio del sistema.&lt;br/&gt;Per criptare la partizione di avvio, tornare indietro e ricrearla, selezionando &lt;strong&gt;Criptare&lt;/strong&gt; nella finestra di creazione della partizione.</translation> <translation>E' stata configurata una partizione di avvio non criptata assieme ad una partizione root criptata. &lt;br/&gt;&lt;br/&gt;Ci sono problemi di sicurezza con questo tipo di configurazione perchè dei file di sistema importanti sono tenuti su una partizione non criptata.&lt;br/&gt;Si può continuare se lo si desidera ma dopo ci sarà lo sblocco del file system, durante l'avvio del sistema.&lt;br/&gt;Per criptare la partizione di avvio, tornare indietro e ricrearla, selezionando &lt;strong&gt;Criptare&lt;/strong&gt; nella finestra di creazione della partizione.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>ha almeno un'unità disco disponibile.</translation> <translation>ha almeno un'unità disco disponibile.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Non ci sono partizioni su cui installare.</translation> <translation>Non ci sono partizioni su cui installare.</translation>
</message> </message>
@ -3620,18 +3635,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3639,17 +3654,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Impossibile eseguire chmod sul file sudoers.</translation> <translation>Impossibile eseguire chmod sul file sudoers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Impossibile creare il file sudoers in scrittura.</translation> <translation>Impossibile creare il file sudoers in scrittura.</translation>
</message> </message>
@ -3839,12 +3854,12 @@ Output:
<translation>Smonta i file system.</translation> <translation>Smonta i file system.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1456,12 +1456,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1974,35 +1974,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2825,82 +2825,97 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3605,18 +3620,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3624,17 +3639,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3824,12 +3839,12 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation></translation> <translation></translation>
</message> </message>
@ -1463,12 +1463,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>:</translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Webに貼り付けますか</translation> <translation>Webに貼り付けますか</translation>
</message> </message>
@ -1981,35 +1981,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>LUKSキーファイルを設定しています</translation> <translation>LUKSキーファイルを設定しています</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation> rootfs </translation> <translation> rootfs </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation> %1 LUKSですが</translation> <translation> %1 LUKSですが</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation> %1 LUKSキーファイルを作成できませんでした</translation> <translation> %1 LUKSキーファイルを作成できませんでした</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation> %1 LUKSキーファイルを設定できませんでした</translation> <translation> %1 LUKSキーファイルを設定できませんでした</translation>
</message> </message>
@ -2835,82 +2835,97 @@ The installer will quit and all changes will be lost.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation>&lt;b&gt;&lt;/b&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>:</translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>:</translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>EFI </translation> <translation>EFI </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>EFI </translation> <translation>EFI </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation>%1 EFI &lt;br/&gt;&lt;br/&gt;EFI </translation> <translation>%1 EFI &lt;br/&gt;&lt;br/&gt;EFI </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation> &lt;strong&gt;%1&lt;/strong&gt; </translation> <translation> &lt;strong&gt;%1&lt;/strong&gt; </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation> FAT32 </translation> <translation> FAT32 </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation> %1 MiB </translation> <translation> %1 MiB </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation> &lt;strong&gt;%1&lt;/strong&gt; </translation> <translation> &lt;strong&gt;%1&lt;/strong&gt; </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation>EFI </translation> <translation>EFI </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>BIOS GPT 使</translation> <translation>BIOS GPT 使</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <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>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;strong&gt;Encrypt&lt;/strong&gt; () </translation> <translation>&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;strong&gt;Encrypt&lt;/strong&gt; () </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>1</translation> <translation>1</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation></translation> <translation></translation>
</message> </message>
@ -3621,18 +3636,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>: %1</translation> <translation>: %1</translation>
</message> </message>
@ -3640,17 +3655,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>&lt;pre&gt;sudo&lt;/pre&gt; </translation> <translation>&lt;pre&gt;sudo&lt;/pre&gt; </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>sudoersファイルの権限を変更できません</translation> <translation>sudoersファイルの権限を変更できません</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>sudoersファイルを作成できません</translation> <translation>sudoersファイルを作成できません</translation>
</message> </message>
@ -3840,12 +3855,12 @@ Output:
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation>使</translation> <translation>使</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation>rootMountPoint </translation> <translation>rootMountPoint </translation>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Орнату</translation> <translation>Орнату</translation>
</message> </message>
@ -1458,12 +1458,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1976,35 +1976,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2836,82 +2836,97 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3616,18 +3631,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3635,17 +3650,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3835,12 +3850,12 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>ಿ</translation> <translation>ಿ</translation>
</message> </message>
@ -1458,12 +1458,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1976,35 +1976,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2836,82 +2836,97 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>:</translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3616,18 +3631,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3635,17 +3650,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3835,12 +3850,12 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation></translation> <translation></translation>
</message> </message>
@ -1462,12 +1462,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>:</translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation> ?</translation> <translation> ?</translation>
</message> </message>
@ -1980,35 +1980,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>LUKS .</translation> <translation>LUKS .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation> .</translation> <translation> .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation> rootfs </translation> <translation> rootfs </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation> %1() LUKS이지만 .</translation> <translation> %1() LUKS이지만 .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation> %1 LUKS .</translation> <translation> %1 LUKS .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation> %1 LUKS .</translation> <translation> %1 LUKS .</translation>
</message> </message>
@ -2833,82 +2833,97 @@ The installer will quit and all changes will be lost.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>:</translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>:</translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>EFI </translation> <translation>EFI </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>EFI </translation> <translation>EFI </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation>%1() EFI .&lt;br/&gt;&lt;br/&gt;EFI .</translation> <translation>%1() EFI .&lt;br/&gt;&lt;br/&gt;EFI .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation> &lt;strong&gt;%1&lt;/strong&gt; .</translation> <translation> &lt;strong&gt;%1&lt;/strong&gt; .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation> FAT32 .</translation> <translation> FAT32 .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation> %1MiB .</translation> <translation> %1MiB .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation> &lt;strong&gt;%1&lt;/strong&gt; .</translation> <translation> &lt;strong&gt;%1&lt;/strong&gt; .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation>EFI .</translation> <translation>EFI .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>BIOS에서 GPT를 </translation> <translation>BIOS에서 GPT를 </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation> .&lt;br/&gt;&lt;br/&gt; .&lt;br/&gt; .&lt;br/&gt; &lt;strong&gt;&lt;/strong&gt; .</translation> <translation> .&lt;br/&gt;&lt;br/&gt; .&lt;br/&gt; .&lt;br/&gt; &lt;strong&gt;&lt;/strong&gt; .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation> .</translation> <translation> .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation> .</translation> <translation> .</translation>
</message> </message>
@ -3619,18 +3634,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation> .</translation> <translation> .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation> : %1</translation> <translation> : %1</translation>
</message> </message>
@ -3638,17 +3653,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>&lt;pre&gt;sudo&lt;/pre&gt; .</translation> <translation>&lt;pre&gt;sudo&lt;/pre&gt; .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>sudoers .</translation> <translation>sudoers .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>sudoers .</translation> <translation>sudoers .</translation>
</message> </message>
@ -3838,12 +3853,12 @@ Output:
<translation> .</translation> <translation> .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation> .</translation> <translation> .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation> .</translation> <translation> .</translation>
</message> </message>

File diff suppressed because it is too large Load Diff

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1456,12 +1456,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1974,35 +1974,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2825,82 +2825,97 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3605,18 +3620,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3624,17 +3639,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3824,12 +3839,12 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Sąranka</translation> <translation>Sąranka</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Diegimas</translation> <translation>Diegimas</translation>
</message> </message>
@ -1468,12 +1468,12 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>Išsamiau:</translation> <translation>Išsamiau:</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Ar norėtumėte įdėti diegimo žurnalą į saityną?</translation> <translation>Ar norėtumėte įdėti diegimo žurnalą į saityną?</translation>
</message> </message>
@ -1986,35 +1986,35 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>Konfigūruojamas LUKS raktų failas.</translation> <translation>Konfigūruojamas LUKS raktų failas.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Nėra jokių apibrėžtų skaidinių.</translation> <translation>Nėra jokių apibrėžtų skaidinių.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Šifruoto rootfs sąrankos klaida</translation> <translation>Šifruoto rootfs sąrankos klaida</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>Šaknies skaidinys %1 yra LUKS, tačiau nebuvo nustatyta jokia slaptafrazė.</translation> <translation>Šaknies skaidinys %1 yra LUKS, tačiau nebuvo nustatyta jokia slaptafrazė.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>Nepavyko šakniniam skaidiniui %1 sukurti LUKS rakto failo. </translation> <translation>Nepavyko šakniniam skaidiniui %1 sukurti LUKS rakto failo. </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>Nepavyko konfigūruoti LUKS rakto failo skaidinyje %1.</translation> <translation>Nepavyko konfigūruoti LUKS rakto failo skaidinyje %1.</translation>
</message> </message>
@ -2866,82 +2866,97 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
<translation>Skaidiniai</translation> <translation>Skaidiniai</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation>Nesaugūs veiksmai su skaidiniais yra įjungti.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation>Skaidymas yra sukonfigūruotas taip, kad &lt;b&gt;visada&lt;/b&gt; patirtų nesėkmę.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation>Nebus pakeisti jokie skaidiniai.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Dabartinis:</translation> <translation>Dabartinis:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Po:</translation> <translation>Po:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Nėra sukonfigūruoto EFI sistemos skaidinio</translation> <translation>Nėra sukonfigūruoto EFI sistemos skaidinio</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>Neteisingai sukonfigūruotas EFI sistemos skaidinys</translation> <translation>Neteisingai sukonfigūruotas EFI sistemos skaidinys</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation>%1 paleidimui yra reikalingas EFI sistemos skaidinys.&lt;br/&gt;&lt;br/&gt;Norėdami konfigūruoti EFI sistemos skaidinį, grįžkite atgal ir pasirinkite arba sukurkite tinkamą failų sistemą.</translation> <translation>%1 paleidimui yra reikalingas EFI sistemos skaidinys.&lt;br/&gt;&lt;br/&gt;Norėdami konfigūruoti EFI sistemos skaidinį, grįžkite atgal ir pasirinkite arba sukurkite tinkamą failų sistemą.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>Failų sistema privalo būti prijungta ties &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Failų sistema privalo būti prijungta ties &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation>Failų sistema privalo būti FAT32 tipo.</translation> <translation>Failų sistema privalo būti FAT32 tipo.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation>Failų sistema privalo būti bent %1 MiB dydžio.</translation> <translation>Failų sistema privalo būti bent %1 MiB dydžio.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation>Failų sistema privalo turėti nustatytą &lt;strong&gt;%1&lt;/strong&gt; vėliavėlę.</translation> <translation>Failų sistema privalo turėti nustatytą &lt;strong&gt;%1&lt;/strong&gt; vėliavėlę.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation>Galite tęsti nenustatę EFI sistemos skaidinio, bet jūsų sistema gali nepasileisti.</translation> <translation>Galite tęsti nenustatę EFI sistemos skaidinio, bet jūsų sistema gali nepasileisti.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>Parinktis naudoti GPT per BIOS</translation> <translation>Parinktis naudoti GPT per BIOS</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <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>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Paleidimo skaidinys nėra užšifruotas</translation> <translation>Paleidimo skaidinys nėra užšifruotas</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Kartu su užšifruotu šaknies skaidiniu, buvo nustatytas atskiras paleidimo skaidinys, tačiau paleidimo skaidinys nėra užšifruotas.&lt;br/&gt;&lt;br/&gt;Dėl tokios sąrankos iškyla tam tikrų saugumo klausimų, kadangi svarbūs sisteminiai failai yra laikomi neužšifruotame skaidinyje.&lt;br/&gt;Jeigu norite, galite tęsti, tačiau failų sistemos atrakinimas įvyks vėliau, sistemos paleidimo metu.&lt;br/&gt;Norėdami užšifruoti paleidimo skaidinį, grįžkite atgal ir sukurkite naujo bei skaidinių kūrimo lange pažymėkite parinktį &lt;strong&gt;Užšifruoti&lt;/strong&gt;.</translation> <translation>Kartu su užšifruotu šaknies skaidiniu, buvo nustatytas atskiras paleidimo skaidinys, tačiau paleidimo skaidinys nėra užšifruotas.&lt;br/&gt;&lt;br/&gt;Dėl tokios sąrankos iškyla tam tikrų saugumo klausimų, kadangi svarbūs sisteminiai failai yra laikomi neužšifruotame skaidinyje.&lt;br/&gt;Jeigu norite, galite tęsti, tačiau failų sistemos atrakinimas įvyks vėliau, sistemos paleidimo metu.&lt;br/&gt;Norėdami užšifruoti paleidimo skaidinį, grįžkite atgal ir sukurkite naujo bei skaidinių kūrimo lange pažymėkite parinktį &lt;strong&gt;Užšifruoti&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>turi bent vieną prieinamą disko įrenginį.</translation> <translation>turi bent vieną prieinamą disko įrenginį.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Nėra skaidinių į kuriuos diegti.</translation> <translation>Nėra skaidinių į kuriuos diegti.</translation>
</message> </message>
@ -3652,18 +3667,18 @@ Išvestis:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>Ruošiamos grupės.</translation> <translation>Ruošiamos grupės.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>Nepavyko paskirties sistemoje sukurti grupių</translation> <translation>Nepavyko paskirties sistemoje sukurti grupių</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>Paskirties sistemoje nėra š grupių: %1</translation> <translation>Paskirties sistemoje nėra š grupių: %1</translation>
</message> </message>
@ -3671,17 +3686,17 @@ Išvestis:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>Konfigūruoti &lt;pre&gt;sudo&lt;/pre&gt; naudotojus.</translation> <translation>Konfigūruoti &lt;pre&gt;sudo&lt;/pre&gt; naudotojus.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Nepavyko pritaikyti chmod failui sudoers.</translation> <translation>Nepavyko pritaikyti chmod failui sudoers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Nepavyko įrašymui sukurti failo sudoers.</translation> <translation>Nepavyko įrašymui sukurti failo sudoers.</translation>
</message> </message>
@ -3871,12 +3886,12 @@ Išvestis:
<translation>Atjungti failų sistemas.</translation> <translation>Atjungti failų sistemas.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation>Neprieinama jokia paskirties sistema.</translation> <translation>Neprieinama jokia paskirties sistema.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation>Nenustatyta rootMountPoint.</translation> <translation>Nenustatyta rootMountPoint.</translation>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1460,12 +1460,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1978,35 +1978,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2847,82 +2847,97 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3627,18 +3642,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3646,17 +3661,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3846,12 +3861,12 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Инсталирај</translation> <translation>Инсталирај</translation>
</message> </message>
@ -1458,12 +1458,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1976,35 +1976,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2836,82 +2836,97 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3616,18 +3631,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3635,17 +3650,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3835,12 +3850,12 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation> </translation> <translation> </translation>
</message> </message>
@ -1460,12 +1460,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation> ി ?</translation> <translation> ി ?</translation>
</message> </message>
@ -1978,35 +1978,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>LUKS ി.</translation> <translation>LUKS ി.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation> ിിിി</translation> <translation> ിിിി</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>ി ി </translation> <translation>ി ി </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation> %1 LUKS ിിി.</translation> <translation> %1 LUKS ിിി.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation> %1 ി LUKS ിിി.</translation> <translation> %1 ി LUKS ിിി.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2838,82 +2838,97 @@ The installer will quit and all changes will be lost.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>ിി:</translation> <translation>ിി:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>:</translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation> ി ിിി</translation> <translation> ി ിിി</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation> ി ിി</translation> <translation> ി ിി</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>ി ി ിി, ി .&lt;br/&gt;&lt;br/&gt; ി , ി ി ി ിി.&lt;br/&gt; ി , ി ി ിി ി ി.&lt;br/&gt; ി ി, ിി ി ി ി &lt;strong&gt;ി&lt;/strong&gt; ി ിി.</translation> <translation>ി ി ിി, ി .&lt;br/&gt;&lt;br/&gt; ി , ി ി ി ിി.&lt;br/&gt; ി , ി ി ിി ി ി.&lt;br/&gt; ി ി, ിി ി ി ി &lt;strong&gt;ി&lt;/strong&gt; ി ിി.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation> ി ിി .</translation> <translation> ി ിി .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3621,18 +3636,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3640,17 +3655,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation> chmod ിി.</translation> <translation> chmod ിി.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>ിി ിിി.</translation> <translation>ിി ിിി.</translation>
</message> </message>
@ -3840,12 +3855,12 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>ि</translation> <translation>ि</translation>
</message> </message>
@ -1458,12 +1458,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1976,35 +1976,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2836,82 +2836,97 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation> :</translation> <translation> :</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation> :</translation> <translation> :</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3616,18 +3631,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3635,17 +3650,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3835,12 +3850,12 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Installer</translation> <translation>Installer</translation>
</message> </message>
@ -1459,12 +1459,12 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1977,35 +1977,35 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2837,82 +2837,97 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3617,18 +3632,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3636,17 +3651,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3836,12 +3851,12 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1458,12 +1458,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1976,35 +1976,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2836,82 +2836,97 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3616,18 +3631,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3635,17 +3650,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3835,12 +3850,12 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Inrichten</translation> <translation>Inrichten</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Installeer</translation> <translation>Installeer</translation>
</message> </message>
@ -1464,12 +1464,12 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Wil je het installatielogboek plakken naar het web?</translation> <translation>Wil je het installatielogboek plakken naar het web?</translation>
</message> </message>
@ -1982,35 +1982,35 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>LUKS-sleutelbestand configureren.</translation> <translation>LUKS-sleutelbestand configureren.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Geen partities gedefineerd.</translation> <translation>Geen partities gedefineerd.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Versleutelde rootfs installatiefout</translation> <translation>Versleutelde rootfs installatiefout</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>Rootpartitie %1 is LUKS maar er is een wachtwoord ingesteld.</translation> <translation>Rootpartitie %1 is LUKS maar er is een wachtwoord ingesteld.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>Kon het LUKS-sleutelbestand niet aanmaken voor rootpartitie %1.</translation> <translation>Kon het LUKS-sleutelbestand niet aanmaken voor rootpartitie %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>Kon het LUKS-sleutelbestand niet aanmaken op partitie %1.</translation> <translation>Kon het LUKS-sleutelbestand niet aanmaken op partitie %1.</translation>
</message> </message>
@ -2842,82 +2842,97 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
<translation>Partities</translation> <translation>Partities</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Huidig:</translation> <translation>Huidig:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Na:</translation> <translation>Na:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Geen EFI systeempartitie geconfigureerd</translation> <translation>Geen EFI systeempartitie geconfigureerd</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>Optie om GPT te gebruiken in BIOS</translation> <translation>Optie om GPT te gebruiken in BIOS</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Bootpartitie niet versleuteld</translation> <translation>Bootpartitie niet versleuteld</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Een aparte bootpartitie was ingesteld samen met een versleutelde rootpartitie, maar de bootpartitie zelf is niet versleuteld.&lt;br/&gt;&lt;br/&gt;Dit is niet volledig veilig, aangezien belangrijke systeembestanden bewaard worden op een niet-versleutelde partitie.&lt;br/&gt;Je kan doorgaan als je wil, maar het ontgrendelen van bestandssystemen zal tijdens het opstarten later plaatsvinden.&lt;br/&gt;Om de bootpartitie toch te versleutelen: keer terug en maak de bootpartitie opnieuw, waarbij je &lt;strong&gt;Versleutelen&lt;/strong&gt; aanvinkt in het venster partitie aanmaken. </translation> <translation>Een aparte bootpartitie was ingesteld samen met een versleutelde rootpartitie, maar de bootpartitie zelf is niet versleuteld.&lt;br/&gt;&lt;br/&gt;Dit is niet volledig veilig, aangezien belangrijke systeembestanden bewaard worden op een niet-versleutelde partitie.&lt;br/&gt;Je kan doorgaan als je wil, maar het ontgrendelen van bestandssystemen zal tijdens het opstarten later plaatsvinden.&lt;br/&gt;Om de bootpartitie toch te versleutelen: keer terug en maak de bootpartitie opnieuw, waarbij je &lt;strong&gt;Versleutelen&lt;/strong&gt; aanvinkt in het venster partitie aanmaken. </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>tenminste één schijfapparaat beschikbaar.</translation> <translation>tenminste één schijfapparaat beschikbaar.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Er zijn geen partities om op te installeren.</translation> <translation>Er zijn geen partities om op te installeren.</translation>
</message> </message>
@ -3626,18 +3641,18 @@ De installatie kan niet doorgaan.</translation>
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>Gebruikers-groepen worden voorbereid.</translation> <translation>Gebruikers-groepen worden voorbereid.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>Kan groepen niet creëren in doelsysteem.</translation> <translation>Kan groepen niet creëren in doelsysteem.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>Deze groepen bestaan niet in het doelsysteem: %1</translation> <translation>Deze groepen bestaan niet in het doelsysteem: %1</translation>
</message> </message>
@ -3645,17 +3660,17 @@ De installatie kan niet doorgaan.</translation>
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>Configureer &lt;pre&gt;sudo&lt;/pre&gt; (administratie) gebruikers.</translation> <translation>Configureer &lt;pre&gt;sudo&lt;/pre&gt; (administratie) gebruikers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>chmod sudoers gefaald.</translation> <translation>chmod sudoers gefaald.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Kan het bestand sudoers niet aanmaken.</translation> <translation>Kan het bestand sudoers niet aanmaken.</translation>
</message> </message>
@ -3845,12 +3860,12 @@ De installatie kan niet doorgaan.</translation>
<translation>Unmount bestandssystemen.</translation> <translation>Unmount bestandssystemen.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

File diff suppressed because it is too large Load Diff

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Zainstaluj</translation> <translation>Zainstaluj</translation>
</message> </message>
@ -1463,12 +1463,12 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1981,35 +1981,35 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>Konfigurowanie pliku klucza LUKS.</translation> <translation>Konfigurowanie pliku klucza LUKS.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2859,82 +2859,97 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<translation>Partycje</translation> <translation>Partycje</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Bieżący:</translation> <translation>Bieżący:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Po:</translation> <translation>Po:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Nie skonfigurowano partycji systemowej EFI</translation> <translation>Nie skonfigurowano partycji systemowej EFI</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Niezaszyfrowana partycja rozruchowa</translation> <translation>Niezaszyfrowana partycja rozruchowa</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Oddzielna partycja rozruchowa została skonfigurowana razem z zaszyfrowaną partycją roota, ale partycja rozruchowa nie jest szyfrowana.&lt;br/&gt;&lt;br/&gt;Nie jest to najbezpieczniejsze rozwiązanie, ponieważ ważne pliki systemowe znajdują się na niezaszyfrowanej partycji.&lt;br/&gt;Możesz kontynuować, ale odblokowywanie systemu nastąpi później, w trakcie uruchamiania.&lt;br/&gt;Aby zaszyfrować partycję rozruchową, wróć i utwórz ponownie zaznaczając opcję &lt;strong&gt;Szyfruj&lt;/strong&gt; w oknie tworzenia partycji.</translation> <translation>Oddzielna partycja rozruchowa została skonfigurowana razem z zaszyfrowaną partycją roota, ale partycja rozruchowa nie jest szyfrowana.&lt;br/&gt;&lt;br/&gt;Nie jest to najbezpieczniejsze rozwiązanie, ponieważ ważne pliki systemowe znajdują się na niezaszyfrowanej partycji.&lt;br/&gt;Możesz kontynuować, ale odblokowywanie systemu nastąpi później, w trakcie uruchamiania.&lt;br/&gt;Aby zaszyfrować partycję rozruchową, wróć i utwórz ponownie zaznaczając opcję &lt;strong&gt;Szyfruj&lt;/strong&gt; w oknie tworzenia partycji.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3643,18 +3658,18 @@ i nie uruchomi się</translation>
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3662,17 +3677,17 @@ i nie uruchomi się</translation>
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Nie można wykonać chmod na pliku sudoers.</translation> <translation>Nie można wykonać chmod na pliku sudoers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Nie można utworzyć pliku sudoers z możliwością zapisu.</translation> <translation>Nie można utworzyć pliku sudoers z możliwością zapisu.</translation>
</message> </message>
@ -3862,12 +3877,12 @@ i nie uruchomi się</translation>
<translation>Odmontuj systemy plików.</translation> <translation>Odmontuj systemy plików.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Configurar</translation> <translation>Configurar</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Instalar</translation> <translation>Instalar</translation>
</message> </message>
@ -1464,12 +1464,12 @@ O instalador será fechado e todas as alterações serão perdidas.</translation
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>Detalhes:</translation> <translation>Detalhes:</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Deseja colar o registro de instalação na internet?</translation> <translation>Deseja colar o registro de instalação na internet?</translation>
</message> </message>
@ -1982,35 +1982,35 @@ O instalador será fechado e todas as alterações serão perdidas.</translation
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>Configurando o arquivo de chave do LUKS.</translation> <translation>Configurando o arquivo de chave do LUKS.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Nenhuma partição está definida.</translation> <translation>Nenhuma partição está definida.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Erro de configuração de rootfs encriptado</translation> <translation>Erro de configuração de rootfs encriptado</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>A partição raiz %1 é LUKS, mas nenhuma senha foi definida.</translation> <translation>A partição raiz %1 é LUKS, mas nenhuma senha foi definida.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>Não foi possível criar o arquivo de chave LUKS para a partição raiz %1.</translation> <translation>Não foi possível criar o arquivo de chave LUKS para a partição raiz %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>Não foi possível configurar a chave LUKS na partição %1.</translation> <translation>Não foi possível configurar a chave LUKS na partição %1.</translation>
</message> </message>
@ -2844,82 +2844,97 @@ O instalador será fechado e todas as alterações serão perdidas.</translation
<translation>Partições</translation> <translation>Partições</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation>As ações de partição não seguras estão habilitadas.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation>O particionamento está configurado para &lt;b&gt;sempre&lt;/b&gt; falhar.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation>Nenhuma partição será modificada.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Atualmente:</translation> <translation>Atualmente:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Depois:</translation> <translation>Depois:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Nenhuma partição de sistema EFI configurada</translation> <translation>Nenhuma partição de sistema EFI configurada</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>Partição EFI do sistema configurada incorretamente</translation> <translation>Partição EFI do sistema configurada incorretamente</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation>Uma partição de sistema EFI é necessária para iniciar o %1. &lt;br/&gt;&lt;br/&gt;Para configurar uma partição de sistema EFI, volte atrás e selecione ou crie um sistema de arquivos adequado.</translation> <translation>Uma partição de sistema EFI é necessária para iniciar o %1. &lt;br/&gt;&lt;br/&gt;Para configurar uma partição de sistema EFI, volte atrás e selecione ou crie um sistema de arquivos adequado.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>O sistema de arquivos deve ser montado em &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>O sistema de arquivos deve ser montado em &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation>O sistema de arquivos deve ter o tipo FAT32.</translation> <translation>O sistema de arquivos deve ter o tipo FAT32.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation>O sistema de arquivos deve ter pelo menos %1 MiB de tamanho.</translation> <translation>O sistema de arquivos deve ter pelo menos %1 MiB de tamanho.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation>O sistema de arquivos deve ter o marcador %1 definido.</translation> <translation>O sistema de arquivos deve ter o marcador %1 definido.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation>Você pode continuar sem configurar uma partição de sistema EFI, mas seu sistema pode não iniciar.</translation> <translation>Você pode continuar sem configurar uma partição de sistema EFI, mas seu sistema pode não iniciar.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>Opção para usar GPT no BIOS</translation> <translation>Opção para usar GPT no BIOS</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <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 em um sistema BIOS com GPT.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Partição de inicialização não criptografada</translation> <translation>Partição de inicialização não criptografada</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Uma partição de inicialização separada foi configurada juntamente com uma partição raiz criptografada, mas a partição de inicialização não é criptografada.&lt;br/&gt;&lt;br/&gt; preocupações de segurança quanto a esse tipo de configuração, porque arquivos de sistema importantes são mantidos em uma partição não criptografada.&lt;br/&gt;Você pode continuar se quiser, mas o desbloqueio do sistema de arquivos acontecerá mais tarde durante a inicialização do sistema.&lt;br/&gt;Para criptografar a partição de inicialização, volte e recrie-a, selecionando &lt;strong&gt;Criptografar&lt;/strong&gt; na janela de criação da partição.</translation> <translation>Uma partição de inicialização separada foi configurada juntamente com uma partição raiz criptografada, mas a partição de inicialização não é criptografada.&lt;br/&gt;&lt;br/&gt; preocupações de segurança quanto a esse tipo de configuração, porque arquivos de sistema importantes são mantidos em uma partição não criptografada.&lt;br/&gt;Você pode continuar se quiser, mas o desbloqueio do sistema de arquivos acontecerá mais tarde durante a inicialização do sistema.&lt;br/&gt;Para criptografar a partição de inicialização, volte e recrie-a, selecionando &lt;strong&gt;Criptografar&lt;/strong&gt; na janela de criação da partição.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>tem pelo menos um dispositivo de disco disponível.</translation> <translation>tem pelo menos um dispositivo de disco disponível.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Não partições para instalar.</translation> <translation>Não partições para instalar.</translation>
</message> </message>
@ -3630,18 +3645,18 @@ Saída:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>Preparando grupos.</translation> <translation>Preparando grupos.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>Não foi possível criar grupos no sistema alvo</translation> <translation>Não foi possível criar grupos no sistema alvo</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>Estes grupos estão faltando no sistema alvo: %1</translation> <translation>Estes grupos estão faltando no sistema alvo: %1</translation>
</message> </message>
@ -3649,17 +3664,17 @@ Saída:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>Configurar usuários &lt;pre&gt;sudo&lt;/pre&gt;.</translation> <translation>Configurar usuários &lt;pre&gt;sudo&lt;/pre&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Não foi possível utilizar chmod no arquivo sudoers.</translation> <translation>Não foi possível utilizar chmod no arquivo sudoers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Não foi possível criar arquivo sudoers para gravação.</translation> <translation>Não foi possível criar arquivo sudoers para gravação.</translation>
</message> </message>
@ -3849,12 +3864,12 @@ Saída:
<translation>Desmontar os sistemas de arquivos.</translation> <translation>Desmontar os sistemas de arquivos.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation>Não um sistema alvo disponível.</translation> <translation>Não um sistema alvo disponível.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation>Nenhum rootMountPoint está definido.</translation> <translation>Nenhum rootMountPoint está definido.</translation>
</message> </message>
@ -4091,7 +4106,7 @@ Saída:
<message> <message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/> <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"/> <translation>Não partições disponíveis para o ZFS.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/> <location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Configuração</translation> <translation>Configuração</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Instalar</translation> <translation>Instalar</translation>
</message> </message>
@ -1464,12 +1464,12 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>Detalhes:</translation> <translation>Detalhes:</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Deseja colar o registo de instalação na Web?</translation> <translation>Deseja colar o registo de instalação na Web?</translation>
</message> </message>
@ -1982,35 +1982,35 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>A configurar o ficheiro chave do LUKS.</translation> <translation>A configurar o ficheiro chave do LUKS.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Nenhuma partição é definida.</translation> <translation>Nenhuma partição é definida.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Erro de configuração do rootfs criptografado</translation> <translation>Erro de configuração do rootfs criptografado</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>A partição root %1 é LUKS, mas nenhuma palavra-passe foi definida.</translation> <translation>A partição root %1 é LUKS, mas nenhuma palavra-passe foi definida.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>Não foi possível criar o ficheiro de chave LUKS para a partição root %1.</translation> <translation>Não foi possível criar o ficheiro de chave LUKS para a partição root %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>Não foi possível configurar a chave LUKS na partição %1.</translation> <translation>Não foi possível configurar a chave LUKS na partição %1.</translation>
</message> </message>
@ -2844,82 +2844,97 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<translation>Partições</translation> <translation>Partições</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation>As ações de partição inseguras estão ativadas.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation>A partição é configurada para falhar &lt;b&gt;sempre&lt;/b&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation>Nenhuma partição será alterada.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Atual:</translation> <translation>Atual:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Depois:</translation> <translation>Depois:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Nenhuma partição de sistema EFI configurada</translation> <translation>Nenhuma partição de sistema EFI configurada</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>Partição de sistema EFI configurada incorretamente</translation> <translation>Partição de sistema EFI configurada incorretamente</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation>Uma partição de sistema EFI é necessária para iniciar o %1. &lt;br/&gt;&lt;br/&gt;Para configurar uma partição de sistema EFI, volte atrás e selecione ou crie um sistema de ficheiros adequado.</translation> <translation>Uma partição de sistema EFI é necessária para iniciar o %1. &lt;br/&gt;&lt;br/&gt;Para configurar uma partição de sistema EFI, volte atrás e selecione ou crie um sistema de ficheiros adequado.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>O sistema de ficheiros deve ser montado em &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>O sistema de ficheiros deve ser montado em &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation>O sistema de ficheiros deve ter o tipo FAT32.</translation> <translation>O sistema de ficheiros deve ter o tipo FAT32.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation>O sistema de ficheiros deve ter pelo menos %1 MiB de tamanho.</translation> <translation>O sistema de ficheiros deve ter pelo menos %1 MiB de tamanho.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation>O sistema de ficheiros deve ter a "flag" %1 definida.</translation> <translation>O sistema de ficheiros deve ter a "flag" %1 definida.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation>Pode continuar sem configurar uma partição do sistema EFI, mas o seu sistema pode não arrancar.</translation> <translation>Pode continuar sem configurar uma partição do sistema EFI, mas o seu sistema pode não arrancar.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>Opção para utilizar GPT no BIOS</translation> <translation>Opção para utilizar GPT no BIOS</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <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 sinalizador &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>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Partição de arranque não encriptada</translation> <translation>Partição de arranque não encriptada</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Foi preparada uma partição de arranque separada juntamente com uma partição root encriptada, mas a partição de arranque não está encriptada.&lt;br/&gt;&lt;br/&gt;Existem preocupações de segurança com este tipo de configuração, por causa de importantes ficheiros de sistema serem guardados numa partição não encriptada.&lt;br/&gt;Se desejar pode continuar, mas o destrancar do sistema de ficheiros irá ocorrer mais tarde durante o arranque do sistema.&lt;br/&gt;Para encriptar a partição de arranque, volte atrás e recrie-a, e selecione &lt;strong&gt;Encriptar&lt;/strong&gt; na janela de criação de partições.</translation> <translation>Foi preparada uma partição de arranque separada juntamente com uma partição root encriptada, mas a partição de arranque não está encriptada.&lt;br/&gt;&lt;br/&gt;Existem preocupações de segurança com este tipo de configuração, por causa de importantes ficheiros de sistema serem guardados numa partição não encriptada.&lt;br/&gt;Se desejar pode continuar, mas o destrancar do sistema de ficheiros irá ocorrer mais tarde durante o arranque do sistema.&lt;br/&gt;Para encriptar a partição de arranque, volte atrás e recrie-a, e selecione &lt;strong&gt;Encriptar&lt;/strong&gt; na janela de criação de partições.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>tem pelo menos um dispositivo de disco disponível.</translation> <translation>tem pelo menos um dispositivo de disco disponível.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Não partições para instalar.</translation> <translation>Não partições para instalar.</translation>
</message> </message>
@ -3630,18 +3645,18 @@ Saída de Dados:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>A preparar grupos.</translation> <translation>A preparar grupos.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>Não foi possível criar grupos no sistema de destino</translation> <translation>Não foi possível criar grupos no sistema de destino</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>Estes grupos estão em falta no sistema de destino: %1</translation> <translation>Estes grupos estão em falta no sistema de destino: %1</translation>
</message> </message>
@ -3649,17 +3664,17 @@ Saída de Dados:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>Configurar utilizadores &lt;pre&gt;sudo&lt;/pre&gt;.</translation> <translation>Configurar utilizadores &lt;pre&gt;sudo&lt;/pre&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Impossível de usar chmod no ficheiro dos super utilizadores.</translation> <translation>Impossível de usar chmod no ficheiro dos super utilizadores.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Impossível criar ficheiro do super utilizador para escrita.</translation> <translation>Impossível criar ficheiro do super utilizador para escrita.</translation>
</message> </message>
@ -3849,12 +3864,12 @@ Saída de Dados:
<translation>Desmontar sistemas de ficheiros.</translation> <translation>Desmontar sistemas de ficheiros.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation>Não existe um sistema alvo disponível.</translation> <translation>Não existe um sistema alvo disponível.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation>Nenhum rootMountPoint está definido.</translation> <translation>Nenhum rootMountPoint está definido.</translation>
</message> </message>
@ -4091,7 +4106,7 @@ Saída de Dados:
<message> <message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/> <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"/> <translation>Não estão disponíveis partições para ZFS.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/> <location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Setat</translation> <translation>Setat</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Instalează</translation> <translation>Instalează</translation>
</message> </message>
@ -1461,12 +1461,12 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1979,35 +1979,35 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2851,82 +2851,97 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans
<translation>Partiții</translation> <translation>Partiții</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Actual:</translation> <translation>Actual:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>După:</translation> <translation>După:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Nicio partiție de sistem EFI nu a fost configurată</translation> <translation>Nicio partiție de sistem EFI nu a fost configurată</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Partiția de boot nu este criptată</translation> <translation>Partiția de boot nu este criptată</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>A fost creată o partiție de boot împreună cu o partiție root criptată, dar partiția de boot nu este criptată.&lt;br/&gt;&lt;br/&gt;Sunt potențiale probleme de securitate cu un astfel de aranjament deoarece importante fișiere de sistem sunt păstrate pe o partiție necriptată.&lt;br/&gt;Puteți continua dacă doriți, dar descuierea sistemului se va petrece mai târziu în timpul pornirii.&lt;br/&gt;Pentru a cripta partiția de boot, reveniți și recreați-o, alegând opțiunea &lt;strong&gt;Criptează&lt;/strong&gt; din fereastra de creare de partiții.</translation> <translation>A fost creată o partiție de boot împreună cu o partiție root criptată, dar partiția de boot nu este criptată.&lt;br/&gt;&lt;br/&gt;Sunt potențiale probleme de securitate cu un astfel de aranjament deoarece importante fișiere de sistem sunt păstrate pe o partiție necriptată.&lt;br/&gt;Puteți continua dacă doriți, dar descuierea sistemului se va petrece mai târziu în timpul pornirii.&lt;br/&gt;Pentru a cripta partiția de boot, reveniți și recreați-o, alegând opțiunea &lt;strong&gt;Criptează&lt;/strong&gt; din fereastra de creare de partiții.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3634,18 +3649,18 @@ Output
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3653,17 +3668,17 @@ Output
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Nu se poate chmoda fișierul sudoers.</translation> <translation>Nu se poate chmoda fișierul sudoers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Nu se poate crea fișierul sudoers pentru scriere.</translation> <translation>Nu se poate crea fișierul sudoers pentru scriere.</translation>
</message> </message>
@ -3853,12 +3868,12 @@ Output
<translation>Demonteaza sistemul de fisiere</translation> <translation>Demonteaza sistemul de fisiere</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Настроить</translation> <translation>Настроить</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Установить</translation> <translation>Установить</translation>
</message> </message>
@ -1463,12 +1463,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Разместить журнал установки в интернете?</translation> <translation>Разместить журнал установки в интернете?</translation>
</message> </message>
@ -1981,35 +1981,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>Конфигурация файла ключа LUKS.</translation> <translation>Конфигурация файла ключа LUKS.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Разделы не были заданы.</translation> <translation>Разделы не были заданы.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Ошибка шифрования корневой файловой системы</translation> <translation>Ошибка шифрования корневой файловой системы</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>Корневой раздел %1 это LUKS, но ключ шифрования не был задан.</translation> <translation>Корневой раздел %1 это LUKS, но ключ шифрования не был задан.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>Не удалось создать файл ключа LUKS для корневого раздела %1.</translation> <translation>Не удалось создать файл ключа LUKS для корневого раздела %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>Не удалось настроить файл ключа LUKS на разделе %1.</translation> <translation>Не удалось настроить файл ключа LUKS на разделе %1.</translation>
</message> </message>
@ -2859,82 +2859,97 @@ The installer will quit and all changes will be lost.</source>
<translation>Разделы</translation> <translation>Разделы</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Текущий:</translation> <translation>Текущий:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>После:</translation> <translation>После:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Нет настроенного системного раздела EFI</translation> <translation>Нет настроенного системного раздела EFI</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>Возможность для использования GPT в BIOS</translation> <translation>Возможность для использования GPT в BIOS</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Загрузочный раздел не зашифрован</translation> <translation>Загрузочный раздел не зашифрован</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Включено шифрование корневого раздела, но использован отдельный загрузочный раздел без шифрования.&lt;br/&gt;&lt;br/&gt;При такой конфигурации возникают проблемы с безопасностью, потому что важные системные файлы хранятся на разделе без шифрования.&lt;br/&gt;Если хотите, можете продолжить, но файловая система будет разблокирована позднее во время загрузки системы.&lt;br/&gt;Чтобы включить шифрование загрузочного раздела, вернитесь назад и снова создайте его, отметив &lt;strong&gt;Шифровать&lt;/strong&gt; в окне создания раздела.</translation> <translation>Включено шифрование корневого раздела, но использован отдельный загрузочный раздел без шифрования.&lt;br/&gt;&lt;br/&gt;При такой конфигурации возникают проблемы с безопасностью, потому что важные системные файлы хранятся на разделе без шифрования.&lt;br/&gt;Если хотите, можете продолжить, но файловая система будет разблокирована позднее во время загрузки системы.&lt;br/&gt;Чтобы включить шифрование загрузочного раздела, вернитесь назад и снова создайте его, отметив &lt;strong&gt;Шифровать&lt;/strong&gt; в окне создания раздела.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>имеет как минимум одно доступное дисковое устройство.</translation> <translation>имеет как минимум одно доступное дисковое устройство.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Нет разделов для установки.</translation> <translation>Нет разделов для установки.</translation>
</message> </message>
@ -3643,18 +3658,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>Подготовка групп</translation> <translation>Подготовка групп</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3662,17 +3677,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Не удалось применить chmod к файлу sudoers.</translation> <translation>Не удалось применить chmod к файлу sudoers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Не удалось записать файл sudoers.</translation> <translation>Не удалось записать файл sudoers.</translation>
</message> </message>
@ -3862,12 +3877,12 @@ Output:
<translation>Размонтирование файловой системы.</translation> <translation>Размонтирование файловой системы.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

File diff suppressed because it is too large Load Diff

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation></translation> <translation></translation>
</message> </message>
@ -1464,12 +1464,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>:</translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation> ?</translation> <translation> ?</translation>
</message> </message>
@ -1982,35 +1982,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>LUKS .</translation> <translation>LUKS .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation> .</translation> <translation> .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation> rootfs </translation> <translation> rootfs </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation> %1 LUKS - .</translation> <translation> %1 LUKS - .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation> %1 LUKS .</translation> <translation> %1 LUKS .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>%1 LUKS .</translation> <translation>%1 LUKS .</translation>
</message> </message>
@ -2844,82 +2844,97 @@ The installer will quit and all changes will be lost.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>:</translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>:</translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>EFI </translation> <translation>EFI </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>EFI </translation> <translation>EFI </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation>%1 EFI . &lt;br/&gt;&lt;br/&gt;EFI , .</translation> <translation>%1 EFI . &lt;br/&gt;&lt;br/&gt;EFI , .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation> %1 .</translation> <translation> %1 .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation> FAT32 .</translation> <translation> FAT32 .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation> %1 MiB .</translation> <translation> %1 MiB .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation> &lt;strong&gt;%1&lt;/strong&gt; .</translation> <translation> &lt;strong&gt;%1&lt;/strong&gt; .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation> EFI .</translation> <translation> EFI .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>BIOS GPT </translation> <translation>BIOS GPT </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation> , . &lt;br/&lt;br/&gt; . &lt;br/&gt; , . &lt;br/&gt; , , &lt;strong&gt;&lt;/srong&gt; .</translation> <translation> , . &lt;br/&lt;br/&gt; . &lt;br/&gt; , . &lt;br/&gt; , , &lt;strong&gt;&lt;/srong&gt; .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation> .</translation> <translation> .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation> .</translation> <translation> .</translation>
</message> </message>
@ -3630,18 +3645,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation> .</translation> <translation> .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation> : %1</translation> <translation> : %1</translation>
</message> </message>
@ -3649,17 +3664,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>&lt;strong&gt;sudo&lt;/strong&gt; .</translation> <translation>&lt;strong&gt;sudo&lt;/strong&gt; .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>sudoers chmod .</translation> <translation>sudoers chmod .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation> sudoers .</translation> <translation> sudoers .</translation>
</message> </message>
@ -3849,12 +3864,12 @@ Output:
<translation> .</translation> <translation> .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation> .</translation> <translation> .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation> .</translation> <translation> .</translation>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Inštalácia</translation> <translation>Inštalácia</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Inštalácia</translation> <translation>Inštalácia</translation>
</message> </message>
@ -1465,12 +1465,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>Podrobnosti:</translation> <translation>Podrobnosti:</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Chceli by ste vložiť záznam z inštalácie na web?</translation> <translation>Chceli by ste vložiť záznam z inštalácie na web?</translation>
</message> </message>
@ -1983,35 +1983,35 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>Nastavuje sa kľúčový súbor LUKS.</translation> <translation>Nastavuje sa kľúčový súbor LUKS.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Nie určené žiadne oddiely.</translation> <translation>Nie určené žiadne oddiely.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Chyba pri inštalácii zašifrovaného koreňového súborového systému</translation> <translation>Chyba pri inštalácii zašifrovaného koreňového súborového systému</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>Koreňový oddiel %1 je typu LUKS, ale nebolo nastavené žiadne heslo.</translation> <translation>Koreňový oddiel %1 je typu LUKS, ale nebolo nastavené žiadne heslo.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>Nepodarilo sa vytvoriť kľúčový súbor LUKS pre koreňový oddiel %1.</translation> <translation>Nepodarilo sa vytvoriť kľúčový súbor LUKS pre koreňový oddiel %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>Nepodarilo sa nastaviť kľúčový súbor LUKS na oddieli %1.</translation> <translation>Nepodarilo sa nastaviť kľúčový súbor LUKS na oddieli %1.</translation>
</message> </message>
@ -2862,82 +2862,97 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<translation>Oddiely</translation> <translation>Oddiely</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation>Nebudú zmenené žiadne oddiely.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Teraz:</translation> <translation>Teraz:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Potom:</translation> <translation>Potom:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Nie je nastavený žiadny oddiel systému EFI</translation> <translation>Nie je nastavený žiadny oddiel systému EFI</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation>Systémový oddiel EFI nie je správne nastavený</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation>Na spustenie distribúcie %1 je potrebný systémový oddiel EFI.&lt;br/&gt;&lt;br/&gt;Na konfiguráciu systémového oddielu EFI, prejdite späť a vyberte alebo vytvorte vhodný systém súborov.</translation> <translation>Na spustenie distribúcie %1 je potrebný systémový oddiel EFI.&lt;br/&gt;&lt;br/&gt;Na konfiguráciu systémového oddielu EFI, prejdite späť a vyberte alebo vytvorte vhodný systém súborov.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>Systém súborov musí byť pripojený do &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Systém súborov musí byť pripojený do &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation>Systém súborov musí byť typu FAT32.</translation> <translation>Systém súborov musí byť typu FAT32.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation>Systém súborov musí mať veľkosť aspoň %1.</translation> <translation>Systém súborov musí mať veľkosť aspoň %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation>Systém súborov musí mať nastavený príznak &lt;strong&gt;%1 .</translation> <translation>Systém súborov musí mať nastavený príznak &lt;strong&gt;%1 .</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation>Môžete pokračovať bez nastavenia systémového oddielu EFI, ale váš systém môže zlyhať pri spúšťaní.</translation> <translation>Môžete pokračovať bez nastavenia systémového oddielu EFI, ale váš systém môže zlyhať pri spúšťaní.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>Voľba na použitie tabuľky GPT s BIOSom</translation> <translation>Voľba na použitie tabuľky GPT s BIOSom</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <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>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Zavádzací oddiel nie je zašifrovaný</translation> <translation>Zavádzací oddiel nie je zašifrovaný</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Spolu so zašifrovaným koreňovým oddielom bol nainštalovaný oddelený zavádzací oddiel, ktorý ale nie je zašifrovaný.&lt;br/&gt;&lt;br/&gt;S týmto typom inštalácie je ohrozená bezpečnosť, pretože dôležité systémové súbory uchovávané na nezašifrovanom oddieli.&lt;br/&gt;Ak si to želáte, môžete pokračovať, ale neskôr, počas spúšťania systému sa vykoná odomknutie systému súborov.&lt;br/&gt;Na zašifrovanie zavádzacieho oddielu prejdite späť a vytvorte ju znovu vybraním voľby &lt;strong&gt;Zašifrovať&lt;/strong&gt; v okne vytvárania oddielu.</translation> <translation>Spolu so zašifrovaným koreňovým oddielom bol nainštalovaný oddelený zavádzací oddiel, ktorý ale nie je zašifrovaný.&lt;br/&gt;&lt;br/&gt;S týmto typom inštalácie je ohrozená bezpečnosť, pretože dôležité systémové súbory uchovávané na nezašifrovanom oddieli.&lt;br/&gt;Ak si to želáte, môžete pokračovať, ale neskôr, počas spúšťania systému sa vykoná odomknutie systému súborov.&lt;br/&gt;Na zašifrovanie zavádzacieho oddielu prejdite späť a vytvorte ju znovu vybraním voľby &lt;strong&gt;Zašifrovať&lt;/strong&gt; v okne vytvárania oddielu.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation> dostupné aspoň jedno diskové zariadenie.</translation> <translation> dostupné aspoň jedno diskové zariadenie.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Neexistujú žiadne oddiely, na ktoré je možné vykonať inštaláciu.</translation> <translation>Neexistujú žiadne oddiely, na ktoré je možné vykonať inštaláciu.</translation>
</message> </message>
@ -3648,18 +3663,18 @@ Výstup:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>Pripravujú sa skupiny.</translation> <translation>Pripravujú sa skupiny.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>Nepodarilo sa vytvoriť skupiny v cieľovom systéme</translation> <translation>Nepodarilo sa vytvoriť skupiny v cieľovom systéme</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>Tieto skupiny chýbajú v cieľovom systéme: %1</translation> <translation>Tieto skupiny chýbajú v cieľovom systéme: %1</translation>
</message> </message>
@ -3667,17 +3682,17 @@ Výstup:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>Konfigurácia používateľov skupiny &lt;pre&gt;sudo&lt;/pre&gt;.</translation> <translation>Konfigurácia používateľov skupiny &lt;pre&gt;sudo&lt;/pre&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Nedá sa vykonať príkaz chmod na súbori sudoers.</translation> <translation>Nedá sa vykonať príkaz chmod na súbori sudoers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Nedá sa vytvoriť súbor sudoers na zapisovanie.</translation> <translation>Nedá sa vytvoriť súbor sudoers na zapisovanie.</translation>
</message> </message>
@ -3867,12 +3882,12 @@ Výstup:
<translation>Odpojenie súborových systémov.</translation> <translation>Odpojenie súborových systémov.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation>Nie je dostupný žiadny cieľový systém.</translation> <translation>Nie je dostupný žiadny cieľový systém.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -4109,7 +4124,7 @@ Výstup:
<message> <message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/> <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"/> <translation>Nie dostupné žiadne oddiely pre ZFS.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/> <location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Namesti</translation> <translation>Namesti</translation>
</message> </message>
@ -1463,12 +1463,12 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1981,35 +1981,35 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2859,82 +2859,97 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation>
<translation>Razdelki</translation> <translation>Razdelki</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Potem:</translation> <translation>Potem:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3639,18 +3654,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3658,17 +3673,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Na datoteki sudoers ni mogoče izvesti opravila chmod.</translation> <translation>Na datoteki sudoers ni mogoče izvesti opravila chmod.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Ni mogoče ustvariti datoteke sudoers za pisanje.</translation> <translation>Ni mogoče ustvariti datoteke sudoers za pisanje.</translation>
</message> </message>
@ -3858,12 +3873,12 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Ujdise</translation> <translation>Ujdise</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Instalim</translation> <translation>Instalim</translation>
</message> </message>
@ -1464,12 +1464,12 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>Hollësi:</translation> <translation>Hollësi:</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Do donit hidhet web regjistri i instalimit?</translation> <translation>Do donit hidhet web regjistri i instalimit?</translation>
</message> </message>
@ -1982,35 +1982,35 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>Po formësohet kartelë kyçesh LUKS.</translation> <translation>Po formësohet kartelë kyçesh LUKS.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Ska pjesë përkufizuara.</translation> <translation>Ska pjesë përkufizuara.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Gabim ujdisjeje rootfs fshehtëzuar</translation> <translation>Gabim ujdisjeje rootfs fshehtëzuar</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>Pjesa rrënjë %1 është LUKS, por sështë caktuar frazëkalim.</translation> <translation>Pjesa rrënjë %1 është LUKS, por sështë caktuar frazëkalim.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>Su krijua dot kartelë kyçi LUKS për ndarjen rrënjë %1.</translation> <translation>Su krijua dot kartelë kyçi LUKS për ndarjen rrënjë %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>Su formësua dot kartelë kyçesh LUKS te pjesën %1.</translation> <translation>Su formësua dot kartelë kyçesh LUKS te pjesën %1.</translation>
</message> </message>
@ -2842,82 +2842,97 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<translation>Pjesë</translation> <translation>Pjesë</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation>Janë aktivizuar veprime jo parrezik pjesësh.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation>Pjesëzimi është formësuar dështojë &lt;b&gt;përherë&lt;/b&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation>Sdo ndryshohet ndonjë pjesë.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>E tanishmja:</translation> <translation>E tanishmja:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation> Pas:</translation> <translation> Pas:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Ska formësuar pjesë sistemi EFI</translation> <translation>Ska formësuar pjesë sistemi EFI</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>Pjesë EFI sistemi e formësuar pasaktësisht</translation> <translation>Pjesë EFI sistemi e formësuar pasaktësisht</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation> niset %1, është e nevojshme një pjesë EFI sistemi.&lt;br/&gt;&lt;br/&gt; formësoni një pjesë sistemi EFI, kthehuni nbrapsht dhe përzgjidhni ose krijoni një sistem përshtatshëm kartelash.</translation> <translation> niset %1, është e nevojshme një pjesë EFI sistemi.&lt;br/&gt;&lt;br/&gt; formësoni një pjesë sistemi EFI, kthehuni nbrapsht dhe përzgjidhni ose krijoni një sistem përshtatshëm kartelash.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>Sistemi i kartelave duhet montohet te &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Sistemi i kartelave duhet montohet te &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation>Sistemi i kartelave duhet jetë i llojit FAT32.</translation> <translation>Sistemi i kartelave duhet jetë i llojit FAT32.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation>Sistemi i kartelave duhet jetë paktën %1 MiB i madh.</translation> <translation>Sistemi i kartelave duhet jetë paktën %1 MiB i madh.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation>Sistemi i kartelave duhet ketë përzgjedhur parametrin &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Sistemi i kartelave duhet ketë përzgjedhur parametrin &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation>Mund vazhdoni pa ujdisur një pjesë EFI sistemi, por sistemi juaj mund mos arrijë niset.</translation> <translation>Mund vazhdoni pa ujdisur një pjesë EFI sistemi, por sistemi juaj mund mos arrijë niset.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>Mundësi për përdorim GTP-je BIOS</translation> <translation>Mundësi për përdorim GTP-je BIOS</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <translation>Mundësia e mirë për krejt sistemet është një tabelë GPT pjesësh. Ky instalues mbulon një ujdisje tillë edhe për sisteme BIOS.&lt;br/&gt;&lt;br/&gt; formësoni një tabelë GPT pjesësh BIOS, (nëse sështë bërë tashmë), kthehuni mbrapsht dhe vëreni tabelën e pjesëve si GPT, pas, krijoni një pjesë 8 MB paformatuar, me parametrin &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>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Pjesë nisjesh e pafshehtëzuar</translation> <translation>Pjesë nisjesh e pafshehtëzuar</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Tok me pjesën e fshehtëzuar &lt;em&gt;root&lt;/em&gt; qe rregulluar edhe një pjesë &lt;em&gt;boot&lt;/em&gt; veçmas, por pjesa &lt;em&gt;boot&lt;/em&gt; sështë e fshehtëzuar.&lt;br/&gt;&lt;br/&gt;Ka preokupime mbi sigurinë e këtij lloj rregullimi, ngaqë kartela të rëndësishme sistemi mbahen në një pjesë të pafshehtëzuar.&lt;br/&gt;Mund të vazhdoni, nëse doni, por shkyçja e sistemit të kartelave do të ndodhë më vonë, gjatë nisjes së sistemit.&lt;br/&gt;Që të fshehtëzoni pjesën &lt;em&gt;boot&lt;/em&gt;, kthehuni mbrapsht dhe rikrijojeni, duke përzgjedhur te skena e krijimit të pjesës &lt;strong&gt;Fshehtëzoje&lt;/strong&gt;.</translation> <translation>Tok me pjesën e fshehtëzuar &lt;em&gt;root&lt;/em&gt; qe rregulluar edhe një pjesë &lt;em&gt;boot&lt;/em&gt; veçmas, por pjesa &lt;em&gt;boot&lt;/em&gt; sështë e fshehtëzuar.&lt;br/&gt;&lt;br/&gt;Ka preokupime mbi sigurinë e këtij lloj rregullimi, ngaqë kartela të rëndësishme sistemi mbahen në një pjesë të pafshehtëzuar.&lt;br/&gt;Mund të vazhdoni, nëse doni, por shkyçja e sistemit të kartelave do të ndodhë më vonë, gjatë nisjes së sistemit.&lt;br/&gt;Që të fshehtëzoni pjesën &lt;em&gt;boot&lt;/em&gt;, kthehuni mbrapsht dhe rikrijojeni, duke përzgjedhur te skena e krijimit të pjesës &lt;strong&gt;Fshehtëzoje&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>ka paktën një pajisje disku për përdorim.</translation> <translation>ka paktën një pajisje disku për përdorim.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Ska pjesë ku instalohet.</translation> <translation>Ska pjesë ku instalohet.</translation>
</message> </message>
@ -3628,18 +3643,18 @@ Përfundim:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>Po përgatiten grupe.</translation> <translation>Po përgatiten grupe.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>Su krijuan dot grupe te sistemi i synuar</translation> <translation>Su krijuan dot grupe te sistemi i synuar</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>Këto grupe mungojnë te sistemi i synuar: %1</translation> <translation>Këto grupe mungojnë te sistemi i synuar: %1</translation>
</message> </message>
@ -3647,17 +3662,17 @@ Përfundim:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>Formësoni përdorues &lt;pre&gt;sudo&lt;/pre&gt;.</translation> <translation>Formësoni përdorues &lt;pre&gt;sudo&lt;/pre&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Smund kryhet chmod mbi kartelën sudoers.</translation> <translation>Smund kryhet chmod mbi kartelën sudoers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Skrijohet dot kartelë sudoers për shkrim.</translation> <translation>Skrijohet dot kartelë sudoers për shkrim.</translation>
</message> </message>
@ -3847,12 +3862,12 @@ Përfundim:
<translation>Çmontoni sisteme kartelash.</translation> <translation>Çmontoni sisteme kartelash.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation>Ska sistem synuar.</translation> <translation>Ska sistem synuar.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation>Sështë ujdisur rootMountPoint.</translation> <translation>Sështë ujdisur rootMountPoint.</translation>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Инсталирај</translation> <translation>Инсталирај</translation>
</message> </message>
@ -1461,12 +1461,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1979,35 +1979,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2848,82 +2848,97 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Тренутно:</translation> <translation>Тренутно:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>После:</translation> <translation>После:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3628,18 +3643,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3647,17 +3662,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Није могуће променити мод (chmod) над "судоерс" фајлом</translation> <translation>Није могуће променити мод (chmod) над "судоерс" фајлом</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3847,12 +3862,12 @@ Output:
<translation>Демонтирање фајл-система.</translation> <translation>Демонтирање фајл-система.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Instaliraj</translation> <translation>Instaliraj</translation>
</message> </message>
@ -1461,12 +1461,12 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1979,35 +1979,35 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2848,82 +2848,97 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation>
<translation>Particije</translation> <translation>Particije</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Poslije:</translation> <translation>Poslije:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3628,18 +3643,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3647,17 +3662,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Nemoguće uraditi chmod nad sudoers fajlom.</translation> <translation>Nemoguće uraditi chmod nad sudoers fajlom.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Nemoguće napraviti sudoers fajl</translation> <translation>Nemoguće napraviti sudoers fajl</translation>
</message> </message>
@ -3847,12 +3862,12 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Inställningar</translation> <translation>Inställningar</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Installera</translation> <translation>Installera</translation>
</message> </message>
@ -1463,12 +1463,12 @@ Alla ändringar kommer att gå förlorade.</translation>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>Detaljer:</translation> <translation>Detaljer:</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Vill du ladda upp installationsloggen webben?</translation> <translation>Vill du ladda upp installationsloggen webben?</translation>
</message> </message>
@ -1981,35 +1981,35 @@ Alla ändringar kommer att gå förlorade.</translation>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>Konfigurerar LUKS nyckel fil.</translation> <translation>Konfigurerar LUKS nyckel fil.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Inga partitioner är definerade.</translation> <translation>Inga partitioner är definerade.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Fel vid inställning av krypterat rootfs</translation> <translation>Fel vid inställning av krypterat rootfs</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>Root partition %1 är LUKS men ingen lösenfras har ställts in.</translation> <translation>Root partition %1 är LUKS men ingen lösenfras har ställts in.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>Kunde inte skapa LUKS nyckelfil för root partition %1.</translation> <translation>Kunde inte skapa LUKS nyckelfil för root partition %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>Kunde inte konfigurera LUKS nyckelfil partition %1.</translation> <translation>Kunde inte konfigurera LUKS nyckelfil partition %1.</translation>
</message> </message>
@ -2844,82 +2844,97 @@ Sök på kartan genom att dra
<translation>Partitioner</translation> <translation>Partitioner</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation>Osäkra partitionsåtgärder är aktiverade.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation>Partitionering är konfigurerad till att &lt;b&gt;alltid&lt;/b&gt; misslyckas.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation>Inga partitioner kommer att ändras.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Nuvarande:</translation> <translation>Nuvarande:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Efter:</translation> <translation>Efter:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Ingen EFI system partition konfigurerad</translation> <translation>Ingen EFI system partition konfigurerad</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>EFI-systempartitionen felaktigt konfigurerad</translation> <translation>EFI-systempartitionen felaktigt konfigurerad</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation>En EFI-systempartition krävs för att starta %1 &lt;br/&gt;&lt;br/&gt;För att konfigurera en EFI-systempartition, tillbaka och välj eller skapa ett lämpligt filsystem.</translation> <translation>En EFI-systempartition krävs för att starta %1 &lt;br/&gt;&lt;br/&gt;För att konfigurera en EFI-systempartition, tillbaka och välj eller skapa ett lämpligt filsystem.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>Filsystemet måste vara monterat &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Filsystemet måste vara monterat &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation>Filsystemet måste vara av typ FAT32.</translation> <translation>Filsystemet måste vara av typ FAT32.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation>Filsystemet måste vara minst %1 MiB i storlek.</translation> <translation>Filsystemet måste vara minst %1 MiB i storlek.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation>Filsystemet måste ha flagga &lt;strong&gt;%1&lt;/strong&gt; satt.</translation> <translation>Filsystemet måste ha flagga &lt;strong&gt;%1&lt;/strong&gt; satt.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation>Du kan fortsätta utan att ställa in en EFI-systempartition men ditt system kanske inte startar.</translation> <translation>Du kan fortsätta utan att ställa in en EFI-systempartition men ditt system kanske inte startar.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>Alternativ för att använda GPT BIOS</translation> <translation>Alternativ för att använda GPT BIOS</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <translation>En GPT-partitionstabell är det bästa alternativet för alla system. Det här installationsprogrammet stöder också en sådan installation för BIOS-system. &lt;br/&gt;&lt;br/&gt;för att konfigurera en GPT-partitionstabell i BIOS, (om du inte redan har gjort det) tillbaka och ställ in partitionstabellen till GPT, skapa sedan en 8 MB oformaterad partition med &lt;strong&gt;%2&lt;/strong&gt; flaggan aktiverad.&lt;br/&gt;&lt;br/&gt;En oformaterad 8 MB partition krävs för att starta %1 ett BIOS-system med GPT.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Boot partition inte krypterad</translation> <translation>Boot partition inte krypterad</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>En separat uppstartspartition skapades tillsammans med den krypterade rootpartitionen, men uppstartspartitionen är inte krypterad.&lt;br/&gt;&lt;br/&gt;Det finns säkerhetsproblem med den här inställningen, eftersom viktiga systemfiler sparas en okrypterad partition.&lt;br/&gt;Du kan fortsätta om du vill, men upplåsning av filsystemet kommer hända senare under uppstart av systemet.&lt;br/&gt;För att kryptera uppstartspartitionen, tillbaka och återskapa den, och välj &lt;strong&gt;Kryptera&lt;/strong&gt; i fönstret när du skapar partitionen.</translation> <translation>En separat uppstartspartition skapades tillsammans med den krypterade rootpartitionen, men uppstartspartitionen är inte krypterad.&lt;br/&gt;&lt;br/&gt;Det finns säkerhetsproblem med den här inställningen, eftersom viktiga systemfiler sparas en okrypterad partition.&lt;br/&gt;Du kan fortsätta om du vill, men upplåsning av filsystemet kommer hända senare under uppstart av systemet.&lt;br/&gt;För att kryptera uppstartspartitionen, tillbaka och återskapa den, och välj &lt;strong&gt;Kryptera&lt;/strong&gt; i fönstret när du skapar partitionen.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>har åtminstone en diskenhet tillgänglig.</translation> <translation>har åtminstone en diskenhet tillgänglig.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Det finns inga partitioner att installera .</translation> <translation>Det finns inga partitioner att installera .</translation>
</message> </message>
@ -3630,18 +3645,18 @@ Installationen kan inte fortsätta.&lt;/p&gt;</translation>
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>Förbereder grupper.</translation> <translation>Förbereder grupper.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>Kunde inte skapa grupper målsystemet</translation> <translation>Kunde inte skapa grupper målsystemet</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>Dessa grupper saknas målsystemet: %1</translation> <translation>Dessa grupper saknas målsystemet: %1</translation>
</message> </message>
@ -3649,17 +3664,17 @@ Installationen kan inte fortsätta.&lt;/p&gt;</translation>
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>Konfigurerar &lt;pre&gt;sudo&lt;/pre&gt; användare.</translation> <translation>Konfigurerar &lt;pre&gt;sudo&lt;/pre&gt; användare.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Kunde inte chmodda sudoerfilen.</translation> <translation>Kunde inte chmodda sudoerfilen.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Kunde inte skapa sudoerfil för skrivning.</translation> <translation>Kunde inte skapa sudoerfil för skrivning.</translation>
</message> </message>
@ -3849,12 +3864,12 @@ Installationen kan inte fortsätta.&lt;/p&gt;</translation>
<translation>Avmontera filsystem.</translation> <translation>Avmontera filsystem.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation>Inget målsystem tillgängligt.</translation> <translation>Inget målsystem tillgängligt.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation>Ingen rootMonteringspunkt är satt</translation> <translation>Ingen rootMonteringspunkt är satt</translation>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1458,12 +1458,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1976,35 +1976,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2836,82 +2836,97 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3616,18 +3631,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3635,17 +3650,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3835,12 +3850,12 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -147,12 +147,12 @@ automatic ఉంటుంది, మీరు మాన్యువల్ వి
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation></translation> <translation></translation>
</message> </message>
@ -1460,12 +1460,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1978,35 +1978,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2838,82 +2838,97 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3618,18 +3633,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3637,17 +3652,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3837,12 +3852,12 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

File diff suppressed because it is too large Load Diff

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Танзимкунӣ</translation> <translation>Танзимкунӣ</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Насбкунӣ</translation> <translation>Насбкунӣ</translation>
</message> </message>
@ -1460,12 +1460,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Шумо мехоҳед, ки сабти рӯйдодҳои насбро ба шабака нусха бардоред?</translation> <translation>Шумо мехоҳед, ки сабти рӯйдодҳои насбро ба шабака нусха бардоред?</translation>
</message> </message>
@ -1978,35 +1978,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>Танзимкунии файли калиди LUKS.</translation> <translation>Танзимкунии файли калиди LUKS.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Ягон қисми диск муайян карда нашуд.</translation> <translation>Ягон қисми диск муайян карда нашуд.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Хатои танзими рамзгузории "rootfs"</translation> <translation>Хатои танзими рамзгузории "rootfs"</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>Қисми диски реша (root)-и %1 дар LUKS асос меёбад, вале гузарвожа танзим нашудааст.</translation> <translation>Қисми диски реша (root)-и %1 дар LUKS асос меёбад, вале гузарвожа танзим нашудааст.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>Файли калидии LUKS барои қисми диски реша (root)-и %1 эҷод карда нашуд.</translation> <translation>Файли калидии LUKS барои қисми диски реша (root)-и %1 эҷод карда нашуд.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>Файли калидии LUKS дар қисми диски %1 танзим карда нашуд.</translation> <translation>Файли калидии LUKS дар қисми диски %1 танзим карда нашуд.</translation>
</message> </message>
@ -2840,82 +2840,97 @@ The installer will quit and all changes will be lost.</source>
<translation>Қисмҳои диск</translation> <translation>Қисмҳои диск</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Танзимоти ҷорӣ:</translation> <translation>Танзимоти ҷорӣ:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Баъд аз тағйир:</translation> <translation>Баъд аз тағйир:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Ягон қисми диски низомии EFI танзим нашуд</translation> <translation>Ягон қисми диски низомии EFI танзим нашуд</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>Имкони истифодаи GPT дар BIOS</translation> <translation>Имкони истифодаи GPT дар BIOS</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Қисми диски роҳандозӣ рамзгузорӣ нашудааст</translation> <translation>Қисми диски роҳандозӣ рамзгузорӣ нашудааст</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Қисми диски роҳандозии алоҳида дар як ҷой бо қисми диски реша (root)-и рамзгузоришуда танзим карда шуд, аммо қисми диски роҳандозӣ рамзгузорӣ нашудааст.&lt;br/&gt;&lt;br/&gt;Барои ҳамин навъи танзимкунӣ масъалаи амниятӣ аҳамият дорад, зеро ки файлҳои низомии муҳим дар қисми диски рамзгузоринашуда нигоҳ дошта мешаванд.&lt;br/&gt;Агар шумо хоҳед, метавонед идома диҳед, аммо қулфкушоии низоми файлӣ дертар ҳангоми оғози кори низом иҷро карда мешавад.&lt;br/&gt;Барои рамзгзорӣ кардани қисми диски роҳандозӣ ба қафо гузаред ва бо интихоби тугмаи &lt;strong&gt;Рамзгузорӣ&lt;/strong&gt; дар равзанаи эҷодкунии қисми диск онро аз нав эҷод намоед.</translation> <translation>Қисми диски роҳандозии алоҳида дар як ҷой бо қисми диски реша (root)-и рамзгузоришуда танзим карда шуд, аммо қисми диски роҳандозӣ рамзгузорӣ нашудааст.&lt;br/&gt;&lt;br/&gt;Барои ҳамин навъи танзимкунӣ масъалаи амниятӣ аҳамият дорад, зеро ки файлҳои низомии муҳим дар қисми диски рамзгузоринашуда нигоҳ дошта мешаванд.&lt;br/&gt;Агар шумо хоҳед, метавонед идома диҳед, аммо қулфкушоии низоми файлӣ дертар ҳангоми оғози кори низом иҷро карда мешавад.&lt;br/&gt;Барои рамзгзорӣ кардани қисми диски роҳандозӣ ба қафо гузаред ва бо интихоби тугмаи &lt;strong&gt;Рамзгузорӣ&lt;/strong&gt; дар равзанаи эҷодкунии қисми диск онро аз нав эҷод намоед.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>ақаллан як дастгоҳи диск дастрас аст.</translation> <translation>ақаллан як дастгоҳи диск дастрас аст.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Ягон қисми диск барои насб вуҷуд надорад.</translation> <translation>Ягон қисми диск барои насб вуҷуд надорад.</translation>
</message> </message>
@ -3626,18 +3641,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3645,17 +3660,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Фармони chmod барои файли sudoers иҷро намешавад.</translation> <translation>Фармони chmod барои файли sudoers иҷро намешавад.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Файли sudoers барои сабт эҷод карда намешавад.</translation> <translation>Файли sudoers барои сабт эҷод карда намешавад.</translation>
</message> </message>
@ -3845,12 +3860,12 @@ Output:
<translation>Ҷудо кардани низомҳои файлӣ.</translation> <translation>Ҷудо кардани низомҳои файлӣ.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation></translation> <translation></translation>
</message> </message>
@ -1457,12 +1457,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1975,35 +1975,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2826,82 +2826,97 @@ The installer will quit and all changes will be lost.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>:</translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>:</translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3606,18 +3621,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3625,17 +3640,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation> &lt;pre&gt;sudo&lt;/pre&gt;</translation> <translation> &lt;pre&gt;sudo&lt;/pre&gt;</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation> chmod sudoers</translation> <translation> chmod sudoers</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation> sudoers </translation> <translation> sudoers </translation>
</message> </message>
@ -3825,12 +3840,12 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Kur</translation> <translation>Kur</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Sistem Kuruluyor</translation> <translation>Sistem Kuruluyor</translation>
</message> </message>
@ -1467,12 +1467,12 @@ Kurulum devam edebilir fakat bazı özellikler devre dışı kalabilir.</transla
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>Detaylar:</translation> <translation>Detaylar:</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Kurulum günlüğünü web'e yapıştırmak ister misiniz?</translation> <translation>Kurulum günlüğünü web'e yapıştırmak ister misiniz?</translation>
</message> </message>
@ -1986,35 +1986,35 @@ Sistem güç kaynağına bağlı değil.</translation>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>LUKS anahtar dosyası yapılandırılıyor.</translation> <translation>LUKS anahtar dosyası yapılandırılıyor.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Hiçbir disk bölümü tanımlanmadı.</translation> <translation>Hiçbir disk bölümü tanımlanmadı.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Şifrelenmiş rootfs kurulum hatası</translation> <translation>Şifrelenmiş rootfs kurulum hatası</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>%1 kök disk bölümü LUKS olacak fakat bunun için parola belirlenmedi.</translation> <translation>%1 kök disk bölümü LUKS olacak fakat bunun için parola belirlenmedi.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>%1 kök disk bölümü için LUKS anahtar dosyası oluşturulamadı.</translation> <translation>%1 kök disk bölümü için LUKS anahtar dosyası oluşturulamadı.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>%1 disk bölümü LUKS anahtar dosyası yapılandırılamadı.</translation> <translation>%1 disk bölümü LUKS anahtar dosyası yapılandırılamadı.</translation>
</message> </message>
@ -2848,83 +2848,98 @@ Sistem güç kaynağına bağlı değil.</translation>
<translation>Disk Bölümleme</translation> <translation>Disk Bölümleme</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Geçerli:</translation> <translation>Geçerli:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Sonra:</translation> <translation>Sonra:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>EFI sistem bölümü yapılandırılmamış</translation> <translation>EFI sistem bölümü yapılandırılmamış</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>EFI sistem bölümü yanlış yapılandırılmış</translation> <translation>EFI sistem bölümü yanlış yapılandırılmış</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation>%1 başlatmak için bir EFI sistem bölümü gereklidir. &lt;br/&gt;&lt;br/&gt; Bir EFI sistem bölümü yapılandırmak için geri dönün ve uygun bir dosya sistemi seçin veya oluşturun.</translation> <translation>%1 başlatmak için bir EFI sistem bölümü gereklidir. &lt;br/&gt;&lt;br/&gt; Bir EFI sistem bölümü yapılandırmak için geri dönün ve uygun bir dosya sistemi seçin veya oluşturun.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>Dosya sistemi &lt;strong&gt;%1&lt;/strong&gt; üzerine bağlanmalıdır.</translation> <translation>Dosya sistemi &lt;strong&gt;%1&lt;/strong&gt; üzerine bağlanmalıdır.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation>Dosya sistemi FAT32 tipine sahip olmalıdır.</translation> <translation>Dosya sistemi FAT32 tipine sahip olmalıdır.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation>Dosya sisteminin boyutu en az %1 MB olmalıdır.</translation> <translation>Dosya sisteminin boyutu en az %1 MB olmalıdır.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation>Dosya sisteminde &lt;strong&gt;%1&lt;/strong&gt; bayrağı ayarlanmış olmalıdır.</translation> <translation>Dosya sisteminde &lt;strong&gt;%1&lt;/strong&gt; bayrağı ayarlanmış olmalıdır.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation>Bir EFI sistem bölümü kurmadan devam edebilirsiniz ancak sisteminiz başlamayabilir.</translation> <translation>Bir EFI sistem bölümü kurmadan devam edebilirsiniz ancak sisteminiz başlamayabilir.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>BIOS'ta GPT kullanma seçeneği</translation> <translation>BIOS'ta GPT kullanma seçeneği</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Önyükleme yani boot diski şifrelenmedi</translation> <translation>Önyükleme yani boot diski şifrelenmedi</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Ayrı bir önyükleme yani boot disk bölümü, şifrenmiş bir kök bölüm ile birlikte ayarlandı, fakat önyükleme bölümü şifrelenmedi.&lt;br/&gt;&lt;br/&gt;Bu tip kurulumun güvenlik endişeleri vardır, çünkü önemli sistem dosyaları şifrelenmemiş bir bölümde saklanır.&lt;br/&gt;İsterseniz kuruluma devam edebilirsiniz, fakat dosya sistemi kilidi daha sonra sistem başlatılırken ılacak.&lt;br/&gt; <translation>Ayrı bir önyükleme yani boot disk bölümü, şifrenmiş bir kök bölüm ile birlikte ayarlandı, fakat önyükleme bölümü şifrelenmedi.&lt;br/&gt;&lt;br/&gt;Bu tip kurulumun güvenlik endişeleri vardır, çünkü önemli sistem dosyaları şifrelenmemiş bir bölümde saklanır.&lt;br/&gt;İsterseniz kuruluma devam edebilirsiniz, fakat dosya sistemi kilidi daha sonra sistem başlatılırken ılacak.&lt;br/&gt;
Önyükleme bölümünü şifrelemek için geri dönün ve bölüm oluşturma penceresinde &lt;strong&gt;Şifreleme&lt;/strong&gt;seçeneği ile yeniden oluşturun.</translation> Önyükleme bölümünü şifrelemek için geri dönün ve bölüm oluşturma penceresinde &lt;strong&gt;Şifreleme&lt;/strong&gt;seçeneği ile yeniden oluşturun.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>Mevcut en az bir disk aygıtı var.</translation> <translation>Mevcut en az bir disk aygıtı var.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Kurulacak disk bölümü yok.</translation> <translation>Kurulacak disk bölümü yok.</translation>
</message> </message>
@ -3635,18 +3650,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>Gruplar hazırlanıyor.</translation> <translation>Gruplar hazırlanıyor.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>Hedef sistemde gruplar oluşturulamadı</translation> <translation>Hedef sistemde gruplar oluşturulamadı</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>Bu gruplar hedef sistemde eksik, :%1</translation> <translation>Bu gruplar hedef sistemde eksik, :%1</translation>
</message> </message>
@ -3654,17 +3669,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>&lt;pre&gt;sudo&lt;/pre&gt; kullanıcını yapılandır.</translation> <translation>&lt;pre&gt;sudo&lt;/pre&gt; kullanıcını yapılandır.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Sudoers dosya izinleri ayarlanamadı.</translation> <translation>Sudoers dosya izinleri ayarlanamadı.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>sudoers dosyası oluşturulamadı ve yazılamadı.</translation> <translation>sudoers dosyası oluşturulamadı ve yazılamadı.</translation>
</message> </message>
@ -3854,12 +3869,12 @@ Output:
<translation>Dosya sistemlerini ayırın.</translation> <translation>Dosya sistemlerini ayırın.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation>Mevcut hedef sistemi yok.</translation> <translation>Mevcut hedef sistemi yok.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation>Hiçbir rootMountPoint ayarlanmadı.</translation> <translation>Hiçbir rootMountPoint ayarlanmadı.</translation>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Налаштувати</translation> <translation>Налаштувати</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Встановити</translation> <translation>Встановити</translation>
</message> </message>
@ -1468,12 +1468,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>Подробиці:</translation> <translation>Подробиці:</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Хочете викласти журнал встановлення у мережі?</translation> <translation>Хочете викласти журнал встановлення у мережі?</translation>
</message> </message>
@ -1986,35 +1986,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>Налаштовуємо файл ключа LUKS.</translation> <translation>Налаштовуємо файл ключа LUKS.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Не визначено жодного розділу.</translation> <translation>Не визначено жодного розділу.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Помилка налаштовування зашифрованих rootfs</translation> <translation>Помилка налаштовування зашифрованих rootfs</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>Кореневим розділом %1 є розділ LUKS, але пароль до нього не встановлено.</translation> <translation>Кореневим розділом %1 є розділ LUKS, але пароль до нього не встановлено.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>Не вдалося створити файл ключа LUKS для кореневого розділу %1.</translation> <translation>Не вдалося створити файл ключа LUKS для кореневого розділу %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>Не вдалося налаштувати файл ключа LUKS на розділі %1.</translation> <translation>Не вдалося налаштувати файл ключа LUKS на розділі %1.</translation>
</message> </message>
@ -2867,82 +2867,97 @@ The installer will quit and all changes will be lost.</source>
<translation>Розділи</translation> <translation>Розділи</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation>Увімкнено небезпечні дії із розділами.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation>Поділ на розділи налаштовано так, щоб &lt;b&gt;завжди&lt;/b&gt; завершуватися помилкою.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation>Змін до розділів внесено не буде.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Зараз:</translation> <translation>Зараз:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Після:</translation> <translation>Після:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Не налаштовано жодного системного розділу EFI</translation> <translation>Не налаштовано жодного системного розділу EFI</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>Системний розділ EFI налаштовано неправильно</translation> <translation>Системний розділ EFI налаштовано неправильно</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation>Для запуску %1 потрібен системний розділ EFI.&lt;br/&gt;&lt;br/&gt;Щоб налаштувати системний розділ EFI, поверніться до попередніх пунктів і виберіть створення відповідної файлової системи.</translation> <translation>Для запуску %1 потрібен системний розділ EFI.&lt;br/&gt;&lt;br/&gt;Щоб налаштувати системний розділ EFI, поверніться до попередніх пунктів і виберіть створення відповідної файлової системи.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>Файлову систему має бути змоновано до &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Файлову систему має бути змоновано до &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation>Файлова система має належати до типу FAT32.</translation> <translation>Файлова система має належати до типу FAT32.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation>Розмір файлової системи має бути не меншим за %1 МіБ.</translation> <translation>Розмір файлової системи має бути не меншим за %1 МіБ.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation>Для файлової системи має бути встановлено прапорець &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Для файлової системи має бути встановлено прапорець &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation>Ви можете продовжити без встановлення системного розділу EFI, але це може призвести до неможливості запуску вашої операційної системи.</translation> <translation>Ви можете продовжити без встановлення системного розділу EFI, але це може призвести до неможливості запуску вашої операційної системи.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>Варіант із використанням GPT на BIOS</translation> <translation>Варіант із використанням GPT на BIOS</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <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>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Завантажувальний розділ незашифрований</translation> <translation>Завантажувальний розділ незашифрований</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Було налаштовано окремий завантажувальний розділ поряд із зашифрованим кореневим розділом, але завантажувальний розділ незашифрований.&lt;br/&gt;&lt;br/&gt;Існують проблеми з безпекою такого типу, оскільки важливі системні файли зберігаються на незашифрованому розділі.&lt;br/&gt;Ви можете продовжувати, якщо бажаєте, але розблокування файлової системи відбудеться пізніше під час запуску системи.&lt;br/&gt;Щоб зашифрувати завантажувальний розділ, поверніться і створіть його знов, обравши &lt;strong&gt;Зашифрувати&lt;/strong&gt; у вікні створення розділів.</translation> <translation>Було налаштовано окремий завантажувальний розділ поряд із зашифрованим кореневим розділом, але завантажувальний розділ незашифрований.&lt;br/&gt;&lt;br/&gt;Існують проблеми з безпекою такого типу, оскільки важливі системні файли зберігаються на незашифрованому розділі.&lt;br/&gt;Ви можете продовжувати, якщо бажаєте, але розблокування файлової системи відбудеться пізніше під час запуску системи.&lt;br/&gt;Щоб зашифрувати завантажувальний розділ, поверніться і створіть його знов, обравши &lt;strong&gt;Зашифрувати&lt;/strong&gt; у вікні створення розділів.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation>має принаймні один доступний дисковий пристрій.</translation> <translation>має принаймні один доступний дисковий пристрій.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Немає розділів для встановлення.</translation> <translation>Немає розділів для встановлення.</translation>
</message> </message>
@ -3653,18 +3668,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>Готуємо групи.</translation> <translation>Готуємо групи.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>Не вдалося створити групи у системі призначення</translation> <translation>Не вдалося створити групи у системі призначення</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>У системі призначення не вистачає таких груп: %1</translation> <translation>У системі призначення не вистачає таких груп: %1</translation>
</message> </message>
@ -3672,17 +3687,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>Налаштувати користувачів &lt;pre&gt;sudo&lt;/pre&gt;.</translation> <translation>Налаштувати користувачів &lt;pre&gt;sudo&lt;/pre&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Неможливо встановити права на файл sudoers.</translation> <translation>Неможливо встановити права на файл sudoers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Неможливо створити файл sudoers для запису.</translation> <translation>Неможливо створити файл sudoers для запису.</translation>
</message> </message>
@ -3872,12 +3887,12 @@ Output:
<translation>Демонтувати файлові системи.</translation> <translation>Демонтувати файлові системи.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation>Немає доступної цільової системи.</translation> <translation>Немає доступної цільової системи.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation>Не встановлено rootMountPoint.</translation> <translation>Не встановлено rootMountPoint.</translation>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1458,12 +1458,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1976,35 +1976,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2836,82 +2836,97 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3616,18 +3631,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3635,17 +3650,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3835,12 +3850,12 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

File diff suppressed because it is too large Load Diff

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation>Thiết lập</translation> <translation>Thiết lập</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation>Cài đt</translation> <translation>Cài đt</translation>
</message> </message>
@ -1458,12 +1458,12 @@ Trình cài đặt sẽ thoát và tất cả các thay đổi sẽ bị mất.<
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation>Bạn muốn gửi nhật cài đt lên web không?</translation> <translation>Bạn muốn gửi nhật cài đt lên web không?</translation>
</message> </message>
@ -1976,35 +1976,35 @@ Trình cài đặt sẽ thoát và tất cả các thay đổi sẽ bị mất.<
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation>Đnh cấu hình tệp khóa LUKS.</translation> <translation>Đnh cấu hình tệp khóa LUKS.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation>Không phân vùng nào đưc xác đnh.</translation> <translation>Không phân vùng nào đưc xác đnh.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation>Lỗi thiết lập rootfs hóa</translation> <translation>Lỗi thiết lập rootfs hóa</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>Phân vùng gốc %1 LUKS nhưng không cụm mật khẩu nào đưc đt.</translation> <translation>Phân vùng gốc %1 LUKS nhưng không cụm mật khẩu nào đưc đt.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>Không thể tạo tệp khóa LUKS cho phân vùng gốc %1.</translation> <translation>Không thể tạo tệp khóa LUKS cho phân vùng gốc %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>Không thể đnh cấu hình tệp khóa LUKS trên phân vùng %1.</translation> <translation>Không thể đnh cấu hình tệp khóa LUKS trên phân vùng %1.</translation>
</message> </message>
@ -2829,82 +2829,97 @@ Trình cài đặt sẽ thoát và tất cả các thay đổi sẽ bị mất.<
<translation>Phân vùng</translation> <translation>Phân vùng</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation>Hiện tại:</translation> <translation>Hiện tại:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation>Sau:</translation> <translation>Sau:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Không hệ thống phân vùng EFI đưc cài đt</translation> <translation>Không hệ thống phân vùng EFI đưc cài đt</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation>Lựa chọn dùng GPT trên BIOS</translation> <translation>Lựa chọn dùng GPT trên BIOS</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Phân vùng khởi đng không đưc hóa</translation> <translation>Phân vùng khởi đng không đưc hóa</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Một phân vùng khởi đng riêng biệt đã đưc thiết lập cùng với một phân vùng gốc đưc hóa, nhưng phân vùng khởi đng không đưc hóa. &lt;br/&gt; &lt;br/&gt; những lo ngại về bảo mật với loại thiết lập này, các tệp hệ thống quan trọng đưc lưu giữ trên một phân vùng không đưc hóa . &lt;br/&gt; Bạn thể tiếp tục nếu muốn, nhưng việc mở khóa hệ thống tệp sẽ diễn ra sau trong quá trình khởi đng hệ thống. &lt;br/&gt; Đ hóa phân vùng khởi đng, hãy quay lại tạo lại , chọn &lt;strong&gt; hóa &lt;/strong&gt; trong phân vùng ca s to.</translation> <translation>Một phân vùng khởi đng riêng biệt đã đưc thiết lập cùng với một phân vùng gốc đưc hóa, nhưng phân vùng khởi đng không đưc hóa. &lt;br/&gt; &lt;br/&gt; những lo ngại về bảo mật với loại thiết lập này, các tệp hệ thống quan trọng đưc lưu giữ trên một phân vùng không đưc hóa . &lt;br/&gt; Bạn thể tiếp tục nếu muốn, nhưng việc mở khóa hệ thống tệp sẽ diễn ra sau trong quá trình khởi đng hệ thống. &lt;br/&gt; Đ hóa phân vùng khởi đng, hãy quay lại tạo lại , chọn &lt;strong&gt; hóa &lt;/strong&gt; trong phân vùng ca s to.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation> sẵn ít nhất một thiết bị đĩa.</translation> <translation> sẵn ít nhất một thiết bị đĩa.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation>Không phân vùng đ cài đt.</translation> <translation>Không phân vùng đ cài đt.</translation>
</message> </message>
@ -3615,18 +3630,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation>Đang chuẩn bị các nhóm</translation> <translation>Đang chuẩn bị các nhóm</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation>Không thể tạo các nhóm trên hệ thống đích </translation> <translation>Không thể tạo các nhóm trên hệ thống đích </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation> vài nhóm đang bị thiếu trong hệ thống đích: %1</translation> <translation> vài nhóm đang bị thiếu trong hệ thống đích: %1</translation>
</message> </message>
@ -3634,17 +3649,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation>Cấu hình &lt;pre&gt;sudo&lt;/pre&gt;cho ngưi dùng.</translation> <translation>Cấu hình &lt;pre&gt;sudo&lt;/pre&gt;cho ngưi dùng.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation>Không thể sửa đi mod của tệp sudoers.</translation> <translation>Không thể sửa đi mod của tệp sudoers.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation>Không thể tạo tệp sudoers đ viết.</translation> <translation>Không thể tạo tệp sudoers đ viết.</translation>
</message> </message>
@ -3834,12 +3849,12 @@ Output:
<translation>Gỡ kết nối các hệ thống tập tin.</translation> <translation>Gỡ kết nối các hệ thống tập tin.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1456,12 +1456,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1974,35 +1974,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2825,82 +2825,97 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3605,18 +3620,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3624,17 +3639,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3824,12 +3839,12 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -146,12 +146,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation></translation> <translation></translation>
</message> </message>
@ -1466,12 +1466,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation>:</translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation></translation> <translation></translation>
</message> </message>
@ -1984,35 +1984,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation> LUKS key </translation> <translation> LUKS key </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation>%1LUKS但没有设置密钥</translation> <translation>%1LUKS但没有设置密钥</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation>%1LUKS密钥文件</translation> <translation>%1LUKS密钥文件</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation>%1LUKS密钥文件</translation> <translation>%1LUKS密钥文件</translation>
</message> </message>
@ -2837,82 +2837,97 @@ The installer will quit and all changes will be lost.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation> EFI </translation> <translation> EFI </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>EFI系统分区配置错误</translation> <translation>EFI系统分区配置错误</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation> %1 EFI &lt;br/&gt;&lt;br/&gt; EFI </translation> <translation> %1 EFI &lt;br/&gt;&lt;br/&gt; EFI </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation> &lt;strong&gt;%1&lt;/strong&gt;</translation> <translation> &lt;strong&gt;%1&lt;/strong&gt;</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation>FAT32</translation> <translation>FAT32</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation>%1 MiB </translation> <translation>%1 MiB </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation> &lt;strong&gt;%1&lt;/strong&gt; </translation> <translation> &lt;strong&gt;%1&lt;/strong&gt; </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation>EFI系统分区的情况下继续</translation> <translation>EFI系统分区的情况下继续</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation> BIOS 使 GPT</translation> <translation> BIOS 使 GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>使&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt; &lt;strong&gt;&lt;/strong&gt; </translation> <translation>使&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt; &lt;strong&gt;&lt;/strong&gt; </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation></translation> <translation></translation>
</message> </message>
@ -3623,18 +3638,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>: %1</translation> <translation>: %1</translation>
</message> </message>
@ -3642,17 +3657,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation> &lt;pre&gt;sudo&lt;/pre&gt; </translation> <translation> &lt;pre&gt;sudo&lt;/pre&gt; </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation> sudoers </translation> <translation> sudoers </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation> sudoers </translation> <translation> sudoers </translation>
</message> </message>
@ -3842,12 +3857,12 @@ Output:
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation> root挂载点</translation> <translation> root挂载点</translation>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1456,12 +1456,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1974,35 +1974,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -2825,82 +2825,97 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3605,18 +3620,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3624,17 +3639,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -3824,12 +3839,12 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -145,12 +145,12 @@
<context> <context>
<name>Calamares::ExecutionViewStep</name> <name>Calamares::ExecutionViewStep</name>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Set up</source> <source>Set up</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/> <location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="118"/>
<source>Install</source> <source>Install</source>
<translation></translation> <translation></translation>
</message> </message>
@ -1462,12 +1462,12 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>ErrorDialog</name> <name>ErrorDialog</name>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="40"/>
<source>Details:</source> <source>Details:</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/> <location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="56"/>
<source>Would you like to paste the install log to the web?</source> <source>Would you like to paste the install log to the web?</source>
<translation></translation> <translation></translation>
</message> </message>
@ -1980,35 +1980,35 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>LuksBootKeyFileJob</name> <name>LuksBootKeyFileJob</name>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="32"/>
<source>Configuring LUKS key file.</source> <source>Configuring LUKS key file.</source>
<translation> LUKS </translation> <translation> LUKS </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="188"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="196"/>
<source>No partitions are defined.</source> <source>No partitions are defined.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="231"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="238"/>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="246"/>
<source>Encrypted rootfs setup error</source> <source>Encrypted rootfs setup error</source>
<translation> rootfs </translation> <translation> rootfs </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="232"/>
<source>Root partition %1 is LUKS but no passphrase has been set.</source> <source>Root partition %1 is LUKS but no passphrase has been set.</source>
<translation> %1 LUKS </translation> <translation> %1 LUKS </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="239"/>
<source>Could not create LUKS key file for root partition %1.</source> <source>Could not create LUKS key file for root partition %1.</source>
<translation> %1 LUKS </translation> <translation> %1 LUKS </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="247"/>
<source>Could not configure LUKS key file on partition %1.</source> <source>Could not configure LUKS key file on partition %1.</source>
<translation> %1 LUKS </translation> <translation> %1 LUKS </translation>
</message> </message>
@ -2833,82 +2833,97 @@ The installer will quit and all changes will be lost.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="297"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation>&lt;b&gt;&lt;/b&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
<source>Current:</source> <source>Current:</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="315"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="318"/>
<source>After:</source> <source>After:</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="524"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="529"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation> EFI </translation> <translation> EFI </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="528"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/>
<source>EFI system partition configured incorrectly</source> <source>EFI system partition configured incorrectly</source>
<translation>EFI </translation> <translation>EFI </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="533"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="538"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a suitable filesystem.</source>
<translation> %1 EFI &lt;br/&gt;&lt;br/&gt; EFI </translation> <translation> %1 EFI &lt;br/&gt;&lt;br/&gt; EFI </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="544"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="549"/>
<source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>The filesystem must be mounted on &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation> &lt;strong&gt;%1&lt;/strong&gt;</translation> <translation> &lt;strong&gt;%1&lt;/strong&gt;</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="555"/>
<source>The filesystem must have type FAT32.</source> <source>The filesystem must have type FAT32.</source>
<translation> FAT32</translation> <translation> FAT32</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="558"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="563"/>
<source>The filesystem must be at least %1 MiB in size.</source> <source>The filesystem must be at least %1 MiB in size.</source>
<translation> %1 MiB </translation> <translation> %1 MiB </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="564"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/>
<source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source> <source>The filesystem must have flag &lt;strong&gt;%1&lt;/strong&gt; set.</source>
<translation> &lt;strong&gt;%1&lt;/strong&gt; </translation> <translation> &lt;strong&gt;%1&lt;/strong&gt; </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="570"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/>
<source>You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation> EFI </translation> <translation> EFI </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="587"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>Option to use GPT on BIOS</source> <source>Option to use GPT on BIOS</source>
<translation> BIOS 使 GPT </translation> <translation> BIOS 使 GPT </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/> <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;%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> <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> <translation>GPT BIOS &lt;br/&gt;&lt;br/&gt; BIOS GPT GPT 8 MB &lt;strong&gt;%2&lt;/strong&gt; 旗標。&lt;br/&gt;&lt;br/&gt; BIOS 使 GPT %1 使 8MB </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="621"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="627"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;strong&gt;&lt;/strong&gt;</translation> <translation>&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;strong&gt;&lt;/strong&gt;</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="712"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source> <source>has at least one disk device available.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="713"/> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
<source>There are no partitions to install on.</source> <source>There are no partitions to install on.</source>
<translation></translation> <translation></translation>
</message> </message>
@ -3619,18 +3634,18 @@ Output:
<context> <context>
<name>SetupGroupsJob</name> <name>SetupGroupsJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="166"/> <location filename="../src/modules/users/MiscJobs.cpp" line="185"/>
<source>Preparing groups.</source> <source>Preparing groups.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="178"/> <location filename="../src/modules/users/MiscJobs.cpp" line="197"/>
<location filename="../src/modules/users/MiscJobs.cpp" line="183"/> <location filename="../src/modules/users/MiscJobs.cpp" line="202"/>
<source>Could not create groups in target system</source> <source>Could not create groups in target system</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="184"/> <location filename="../src/modules/users/MiscJobs.cpp" line="203"/>
<source>These groups are missing in the target system: %1</source> <source>These groups are missing in the target system: %1</source>
<translation>%1</translation> <translation>%1</translation>
</message> </message>
@ -3638,17 +3653,17 @@ Output:
<context> <context>
<name>SetupSudoJob</name> <name>SetupSudoJob</name>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/> <location filename="../src/modules/users/MiscJobs.cpp" line="34"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source> <source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation> &lt;pre&gt;sudo&lt;/pre&gt; 使</translation> <translation> &lt;pre&gt;sudo&lt;/pre&gt; 使</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/> <location filename="../src/modules/users/MiscJobs.cpp" line="74"/>
<source>Cannot chmod sudoers file.</source> <source>Cannot chmod sudoers file.</source>
<translation> sudoers </translation> <translation> sudoers </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/> <location filename="../src/modules/users/MiscJobs.cpp" line="79"/>
<source>Cannot create sudoers file for writing.</source> <source>Cannot create sudoers file for writing.</source>
<translation> sudoers </translation> <translation> sudoers </translation>
</message> </message>
@ -3838,12 +3853,12 @@ Output:
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/> <location filename="../src/modules/umount/UmountJob.cpp" line="124"/>
<source>No target system available.</source> <source>No target system available.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/> <location filename="../src/modules/umount/UmountJob.cpp" line="132"/>
<source>No rootMountPoint is set.</source> <source>No rootMountPoint is set.</source>
<translation></translation> <translation></translation>
</message> </message>

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-17 15:52+0100\n" "POT-Creation-Date: 2022-03-21 17:21+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -23,8 +23,8 @@ msgid "Configuring initramfs."
msgstr "Configuring initramfs." msgstr "Configuring initramfs."
#: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89 #: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89
#: src/modules/fstab/main.py:360 src/modules/fstab/main.py:366 #: src/modules/fstab/main.py:361 src/modules/fstab/main.py:367
#: src/modules/fstab/main.py:393 src/modules/networkcfg/main.py:105 #: src/modules/fstab/main.py:394 src/modules/networkcfg/main.py:105
#: src/modules/initcpiocfg/main.py:235 src/modules/initcpiocfg/main.py:239 #: src/modules/initcpiocfg/main.py:235 src/modules/initcpiocfg/main.py:239
#: src/modules/localecfg/main.py:135 src/modules/mount/main.py:229 #: src/modules/localecfg/main.py:135 src/modules/mount/main.py:229
#: src/modules/rawfs/main.py:164 src/modules/openrcdmcryptcfg/main.py:72 #: src/modules/rawfs/main.py:164 src/modules/openrcdmcryptcfg/main.py:72
@ -32,13 +32,13 @@ msgstr "Configuring initramfs."
msgid "Configuration Error" msgid "Configuration Error"
msgstr "Configuration Error" msgstr "Configuration Error"
#: src/modules/initramfscfg/main.py:86 src/modules/fstab/main.py:361 #: src/modules/initramfscfg/main.py:86 src/modules/fstab/main.py:362
#: src/modules/initcpiocfg/main.py:236 src/modules/mount/main.py:230 #: src/modules/initcpiocfg/main.py:236 src/modules/mount/main.py:230
#: src/modules/rawfs/main.py:165 src/modules/openrcdmcryptcfg/main.py:73 #: src/modules/rawfs/main.py:165 src/modules/openrcdmcryptcfg/main.py:73
msgid "No partitions are defined for <pre>{!s}</pre> to use." msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "No partitions are defined for <pre>{!s}</pre> to use." msgstr "No partitions are defined for <pre>{!s}</pre> to use."
#: src/modules/initramfscfg/main.py:90 src/modules/fstab/main.py:367 #: src/modules/initramfscfg/main.py:90 src/modules/fstab/main.py:368
#: src/modules/networkcfg/main.py:106 src/modules/initcpiocfg/main.py:240 #: src/modules/networkcfg/main.py:106 src/modules/initcpiocfg/main.py:240
#: src/modules/localecfg/main.py:136 src/modules/openrcdmcryptcfg/main.py:77 #: src/modules/localecfg/main.py:136 src/modules/openrcdmcryptcfg/main.py:77
msgid "No root mount point is given for <pre>{!s}</pre> to use." msgid "No root mount point is given for <pre>{!s}</pre> to use."
@ -52,15 +52,15 @@ msgstr "Configure GRUB."
msgid "Install bootloader." msgid "Install bootloader."
msgstr "Install bootloader." msgstr "Install bootloader."
#: src/modules/bootloader/main.py:612 #: src/modules/bootloader/main.py:614
msgid "Failed to install grub, no partitions defined in global storage" msgid "Failed to install grub, no partitions defined in global storage"
msgstr "Failed to install grub, no partitions defined in global storage" msgstr "Failed to install grub, no partitions defined in global storage"
#: src/modules/bootloader/main.py:780 #: src/modules/bootloader/main.py:782
msgid "Bootloader installation error" msgid "Bootloader installation error"
msgstr "Bootloader installation error" msgstr "Bootloader installation error"
#: src/modules/bootloader/main.py:781 #: src/modules/bootloader/main.py:783
msgid "" msgid ""
"The bootloader could not be installed. The installation command " "The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}." "<pre>{!s}</pre> returned error code {!s}."
@ -72,7 +72,7 @@ msgstr ""
msgid "Writing fstab." msgid "Writing fstab."
msgstr "Writing fstab." msgstr "Writing fstab."
#: src/modules/fstab/main.py:394 #: src/modules/fstab/main.py:395
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use." msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use." msgstr "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."

View File

@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-17 15:52+0100\n" "POT-Creation-Date: 2022-03-21 17:21+0100\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: aboodilankaboot, 2019\n" "Last-Translator: aboodilankaboot, 2019\n"
"Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n" "Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n"
@ -27,8 +27,8 @@ msgid "Configuring initramfs."
msgstr "" msgstr ""
#: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89 #: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89
#: src/modules/fstab/main.py:360 src/modules/fstab/main.py:366 #: src/modules/fstab/main.py:361 src/modules/fstab/main.py:367
#: src/modules/fstab/main.py:393 src/modules/networkcfg/main.py:105 #: src/modules/fstab/main.py:394 src/modules/networkcfg/main.py:105
#: src/modules/initcpiocfg/main.py:235 src/modules/initcpiocfg/main.py:239 #: src/modules/initcpiocfg/main.py:235 src/modules/initcpiocfg/main.py:239
#: src/modules/localecfg/main.py:135 src/modules/mount/main.py:229 #: src/modules/localecfg/main.py:135 src/modules/mount/main.py:229
#: src/modules/rawfs/main.py:164 src/modules/openrcdmcryptcfg/main.py:72 #: src/modules/rawfs/main.py:164 src/modules/openrcdmcryptcfg/main.py:72
@ -36,13 +36,13 @@ msgstr ""
msgid "Configuration Error" msgid "Configuration Error"
msgstr "خطأ في الضبط" msgstr "خطأ في الضبط"
#: src/modules/initramfscfg/main.py:86 src/modules/fstab/main.py:361 #: src/modules/initramfscfg/main.py:86 src/modules/fstab/main.py:362
#: src/modules/initcpiocfg/main.py:236 src/modules/mount/main.py:230 #: src/modules/initcpiocfg/main.py:236 src/modules/mount/main.py:230
#: src/modules/rawfs/main.py:165 src/modules/openrcdmcryptcfg/main.py:73 #: src/modules/rawfs/main.py:165 src/modules/openrcdmcryptcfg/main.py:73
msgid "No partitions are defined for <pre>{!s}</pre> to use." msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "" msgstr ""
#: src/modules/initramfscfg/main.py:90 src/modules/fstab/main.py:367 #: src/modules/initramfscfg/main.py:90 src/modules/fstab/main.py:368
#: src/modules/networkcfg/main.py:106 src/modules/initcpiocfg/main.py:240 #: src/modules/networkcfg/main.py:106 src/modules/initcpiocfg/main.py:240
#: src/modules/localecfg/main.py:136 src/modules/openrcdmcryptcfg/main.py:77 #: src/modules/localecfg/main.py:136 src/modules/openrcdmcryptcfg/main.py:77
msgid "No root mount point is given for <pre>{!s}</pre> to use." msgid "No root mount point is given for <pre>{!s}</pre> to use."
@ -56,15 +56,15 @@ msgstr ""
msgid "Install bootloader." msgid "Install bootloader."
msgstr "تثبيت محمل الإقلاع" msgstr "تثبيت محمل الإقلاع"
#: src/modules/bootloader/main.py:612 #: src/modules/bootloader/main.py:614
msgid "Failed to install grub, no partitions defined in global storage" msgid "Failed to install grub, no partitions defined in global storage"
msgstr "" msgstr ""
#: src/modules/bootloader/main.py:780 #: src/modules/bootloader/main.py:782
msgid "Bootloader installation error" msgid "Bootloader installation error"
msgstr "" msgstr ""
#: src/modules/bootloader/main.py:781 #: src/modules/bootloader/main.py:783
msgid "" msgid ""
"The bootloader could not be installed. The installation command " "The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}." "<pre>{!s}</pre> returned error code {!s}."
@ -74,7 +74,7 @@ msgstr ""
msgid "Writing fstab." msgid "Writing fstab."
msgstr "" msgstr ""
#: src/modules/fstab/main.py:394 #: src/modules/fstab/main.py:395
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use." msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr "" msgstr ""

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-17 15:52+0100\n" "POT-Creation-Date: 2022-03-21 17:21+0100\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Deep Jyoti Choudhury <deep.choudhury@libresoft.in>, 2020\n" "Last-Translator: Deep Jyoti Choudhury <deep.choudhury@libresoft.in>, 2020\n"
"Language-Team: Assamese (https://www.transifex.com/calamares/teams/20061/as/)\n" "Language-Team: Assamese (https://www.transifex.com/calamares/teams/20061/as/)\n"
@ -26,8 +26,8 @@ msgid "Configuring initramfs."
msgstr "initramfs কন্ফিগাৰ কৰি আছে।" msgstr "initramfs কন্ফিগাৰ কৰি আছে।"
#: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89 #: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89
#: src/modules/fstab/main.py:360 src/modules/fstab/main.py:366 #: src/modules/fstab/main.py:361 src/modules/fstab/main.py:367
#: src/modules/fstab/main.py:393 src/modules/networkcfg/main.py:105 #: src/modules/fstab/main.py:394 src/modules/networkcfg/main.py:105
#: src/modules/initcpiocfg/main.py:235 src/modules/initcpiocfg/main.py:239 #: src/modules/initcpiocfg/main.py:235 src/modules/initcpiocfg/main.py:239
#: src/modules/localecfg/main.py:135 src/modules/mount/main.py:229 #: src/modules/localecfg/main.py:135 src/modules/mount/main.py:229
#: src/modules/rawfs/main.py:164 src/modules/openrcdmcryptcfg/main.py:72 #: src/modules/rawfs/main.py:164 src/modules/openrcdmcryptcfg/main.py:72
@ -35,13 +35,13 @@ msgstr "initramfs কন্ফিগাৰ কৰি আছে।"
msgid "Configuration Error" msgid "Configuration Error"
msgstr "কনফিগাৰেচন ত্ৰুটি" msgstr "কনফিগাৰেচন ত্ৰুটি"
#: src/modules/initramfscfg/main.py:86 src/modules/fstab/main.py:361 #: src/modules/initramfscfg/main.py:86 src/modules/fstab/main.py:362
#: src/modules/initcpiocfg/main.py:236 src/modules/mount/main.py:230 #: src/modules/initcpiocfg/main.py:236 src/modules/mount/main.py:230
#: src/modules/rawfs/main.py:165 src/modules/openrcdmcryptcfg/main.py:73 #: src/modules/rawfs/main.py:165 src/modules/openrcdmcryptcfg/main.py:73
msgid "No partitions are defined for <pre>{!s}</pre> to use." msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "<pre>{!s}</pre>ৰ ব্যৱহাৰৰ বাবে কোনো বিভাজনৰ বৰ্ণনা দিয়া হোৱা নাই।" msgstr "<pre>{!s}</pre>ৰ ব্যৱহাৰৰ বাবে কোনো বিভাজনৰ বৰ্ণনা দিয়া হোৱা নাই।"
#: src/modules/initramfscfg/main.py:90 src/modules/fstab/main.py:367 #: src/modules/initramfscfg/main.py:90 src/modules/fstab/main.py:368
#: src/modules/networkcfg/main.py:106 src/modules/initcpiocfg/main.py:240 #: src/modules/networkcfg/main.py:106 src/modules/initcpiocfg/main.py:240
#: src/modules/localecfg/main.py:136 src/modules/openrcdmcryptcfg/main.py:77 #: src/modules/localecfg/main.py:136 src/modules/openrcdmcryptcfg/main.py:77
msgid "No root mount point is given for <pre>{!s}</pre> to use." msgid "No root mount point is given for <pre>{!s}</pre> to use."
@ -55,15 +55,15 @@ msgstr "GRUB কনফিগাৰ কৰক।"
msgid "Install bootloader." msgid "Install bootloader."
msgstr "বুতলোডাৰ ইন্স্তল কৰক।" msgstr "বুতলোডাৰ ইন্স্তল কৰক।"
#: src/modules/bootloader/main.py:612 #: src/modules/bootloader/main.py:614
msgid "Failed to install grub, no partitions defined in global storage" msgid "Failed to install grub, no partitions defined in global storage"
msgstr "" msgstr ""
#: src/modules/bootloader/main.py:780 #: src/modules/bootloader/main.py:782
msgid "Bootloader installation error" msgid "Bootloader installation error"
msgstr "" msgstr ""
#: src/modules/bootloader/main.py:781 #: src/modules/bootloader/main.py:783
msgid "" msgid ""
"The bootloader could not be installed. The installation command " "The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}." "<pre>{!s}</pre> returned error code {!s}."
@ -73,7 +73,7 @@ msgstr ""
msgid "Writing fstab." msgid "Writing fstab."
msgstr "fstab লিখি আছে।" msgstr "fstab লিখি আছে।"
#: src/modules/fstab/main.py:394 #: src/modules/fstab/main.py:395
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use." msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr "" msgstr ""

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-17 15:52+0100\n" "POT-Creation-Date: 2022-03-21 17:21+0100\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: enolp <enolp@softastur.org>, 2020\n" "Last-Translator: enolp <enolp@softastur.org>, 2020\n"
"Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n" "Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n"
@ -26,8 +26,8 @@ msgid "Configuring initramfs."
msgstr "" msgstr ""
#: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89 #: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89
#: src/modules/fstab/main.py:360 src/modules/fstab/main.py:366 #: src/modules/fstab/main.py:361 src/modules/fstab/main.py:367
#: src/modules/fstab/main.py:393 src/modules/networkcfg/main.py:105 #: src/modules/fstab/main.py:394 src/modules/networkcfg/main.py:105
#: src/modules/initcpiocfg/main.py:235 src/modules/initcpiocfg/main.py:239 #: src/modules/initcpiocfg/main.py:235 src/modules/initcpiocfg/main.py:239
#: src/modules/localecfg/main.py:135 src/modules/mount/main.py:229 #: src/modules/localecfg/main.py:135 src/modules/mount/main.py:229
#: src/modules/rawfs/main.py:164 src/modules/openrcdmcryptcfg/main.py:72 #: src/modules/rawfs/main.py:164 src/modules/openrcdmcryptcfg/main.py:72
@ -35,13 +35,13 @@ msgstr ""
msgid "Configuration Error" msgid "Configuration Error"
msgstr "" msgstr ""
#: src/modules/initramfscfg/main.py:86 src/modules/fstab/main.py:361 #: src/modules/initramfscfg/main.py:86 src/modules/fstab/main.py:362
#: src/modules/initcpiocfg/main.py:236 src/modules/mount/main.py:230 #: src/modules/initcpiocfg/main.py:236 src/modules/mount/main.py:230
#: src/modules/rawfs/main.py:165 src/modules/openrcdmcryptcfg/main.py:73 #: src/modules/rawfs/main.py:165 src/modules/openrcdmcryptcfg/main.py:73
msgid "No partitions are defined for <pre>{!s}</pre> to use." msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "" msgstr ""
#: src/modules/initramfscfg/main.py:90 src/modules/fstab/main.py:367 #: src/modules/initramfscfg/main.py:90 src/modules/fstab/main.py:368
#: src/modules/networkcfg/main.py:106 src/modules/initcpiocfg/main.py:240 #: src/modules/networkcfg/main.py:106 src/modules/initcpiocfg/main.py:240
#: src/modules/localecfg/main.py:136 src/modules/openrcdmcryptcfg/main.py:77 #: src/modules/localecfg/main.py:136 src/modules/openrcdmcryptcfg/main.py:77
msgid "No root mount point is given for <pre>{!s}</pre> to use." msgid "No root mount point is given for <pre>{!s}</pre> to use."
@ -55,15 +55,15 @@ msgstr ""
msgid "Install bootloader." msgid "Install bootloader."
msgstr "Instalando'l xestor d'arrinque." msgstr "Instalando'l xestor d'arrinque."
#: src/modules/bootloader/main.py:612 #: src/modules/bootloader/main.py:614
msgid "Failed to install grub, no partitions defined in global storage" msgid "Failed to install grub, no partitions defined in global storage"
msgstr "" msgstr ""
#: src/modules/bootloader/main.py:780 #: src/modules/bootloader/main.py:782
msgid "Bootloader installation error" msgid "Bootloader installation error"
msgstr "" msgstr ""
#: src/modules/bootloader/main.py:781 #: src/modules/bootloader/main.py:783
msgid "" msgid ""
"The bootloader could not be installed. The installation command " "The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}." "<pre>{!s}</pre> returned error code {!s}."
@ -73,7 +73,7 @@ msgstr ""
msgid "Writing fstab." msgid "Writing fstab."
msgstr "" msgstr ""
#: src/modules/fstab/main.py:394 #: src/modules/fstab/main.py:395
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use." msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr "" msgstr ""

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