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

This commit is contained in:
Philip Müller 2021-08-09 11:13:13 +02:00
commit 46b0a933c2
225 changed files with 31279 additions and 21401 deletions

47
CHANGES
View File

@ -7,6 +7,53 @@ contributors are listed. Note that Calamares does not have a historical
changelog -- this log starts with version 3.2.0. The release notes on the
website will have to do for older versions.
# 3.2.42 (unreleased) #
This release contains contributions from (alphabetically by first name):
- No external contributors yet
## Core ##
- No core changes yet
## Modules ##
- No module changes yet
# 3.2.41.1 (2021-08-05) #
This is a hotfix release for a crash in the *partition* module, reported on
KDE neon. #1746
# 3.2.41 (2021-07-31) #
This release contains contributions from (alphabetically by first name):
- Anke Boersma
- Camilo Higuita
## Core ##
- The (re)translation framework has been internally re-vamped to be
less resource-intensive and to work with all QObjects, not just
widgets. Consumers of the translations framework are expected to
set up the event filter on the top-level widget(s) manually. Since
Calamares and the Calamares-test-applications have been adjusted already,
no further action is needed.
## Modules ##
- When the *keyboard* module is activated, it no longer replaces
an explicit user choice (e.g. for a Belgian layout) by a guessed-for-
this-language layout (e.g. Danish if you're installing in Danish).
- Logic for handling installation lists has been moved around in the
*packages* module so that package managers can, in principle,
adjust how to handle critical and non-critical package lists.
- In the *partition* module, translation code has been simplified.
- The *usersq* module has had a fair bit of QML rewritten to make it easier
to customize the colors used by the module in a consistent way.
(Thanks Anke)
- *Welcome* now uses a translated message from the Config object,
increasing the sharing between widgets- and QML-modules.
# 3.2.40 (2021-07-14) #
This release contains contributions from (alphabetically by first name):

View File

@ -41,11 +41,11 @@
# TODO:3.3: Require CMake 3.12
cmake_minimum_required( VERSION 3.3 FATAL_ERROR )
project( CALAMARES
VERSION 3.2.40
VERSION 3.2.42
LANGUAGES C CXX
)
set( CALAMARES_VERSION_RC 0 ) # Set to 0 during release cycle, 1 during development
set( CALAMARES_VERSION_RC 1 ) # Set to 0 during release cycle, 1 during development
### OPTIONS
#
@ -132,14 +132,14 @@ set( CALAMARES_DESCRIPTION_SUMMARY
# NOTE: update these lines by running `txstats.py`, or for full automation
# `txstats.py -e`. See also
#
# Total 77 languages
set( _tx_complete ca lt pt_PT sq uk zh_TW )
set( _tx_good as az az_AZ be ca@valencia cs_CZ da de fi_FI fr fur
he hi hr it_IT ja ko ml nl pt_BR ru sk sv tg tr_TR vi zh_CN )
# Total 79 languages
set( _tx_complete az az_AZ ca fi_FI he hi hr ja lt sq sv uk zh_TW )
set( _tx_good as be ca@valencia cs_CZ da de fr fur it_IT ko ml nl
pt_BR pt_PT ru sk tg tr_TR vi zh_CN )
set( _tx_ok ar ast bg bn el en_GB es es_MX es_PR et eu fa gl hu id
is mr nb pl ro sl sr sr@latin th )
set( _tx_incomplete eo es_PE fr_CH gu id_ID ie kk kn lo lv mk ne
ne_NP ru_RU si te ur uz zh )
is mr nb pl ro sl sr sr@latin th zh_HK )
set( _tx_incomplete eo es_PE fr_CH gu id_ID ie kk kn ko_KR lo lv mk
ne ne_NP ru_RU si te ur uz zh )
### Required versions
#

View File

@ -126,6 +126,15 @@ function( calamares_add_plugin )
# create target name once for convenience
set( target "calamares_${PLUGIN_TYPE}_${PLUGIN_NAME}" )
# automatic library linkage
if(PLUGIN_TYPE STREQUAL "view" OR PLUGIN_TYPE STREQUAL "viewmodule")
list(APPEND PLUGIN_LINK_PRIVATE_LIBRARIES Calamares::calamaresui)
elseif(PLUGIN_TYPE STREQUAL "job")
list(APPEND PLUGIN_LINK_PRIVATE_LIBRARIES Calamares::calamares)
else()
message(FATAL_ERROR "Unknown plugin type ${PLUGIN_TYPE}")
endif()
# determine target type
if( NOT ${PLUGIN_SHARED_LIB} )
set( target_type "MODULE" )

View File

@ -36,7 +36,7 @@ function( calamares_add_test )
TEST_NAME
${TEST_NAME}
LINK_LIBRARIES
calamares
Calamares::calamares
${TEST_LIBRARIES}
Qt5::Core
Qt5::Test
@ -46,7 +46,7 @@ function( calamares_add_test )
# compiled, so that it can find test-files in that source dir.
target_compile_definitions( ${TEST_NAME} PRIVATE -DBUILD_AS_TEST="${CMAKE_CURRENT_SOURCE_DIR}" ${TEST_DEFINITIONS} )
if( TEST_GUI )
target_link_libraries( ${TEST_NAME} calamaresui Qt5::Gui )
target_link_libraries( ${TEST_NAME} Calamares::calamaresui Qt5::Gui )
endif()
if( TEST_RESOURCES )
calamares_autorcc( ${TEST_NAME} ${TEST_RESOURCES} )

View File

@ -13,7 +13,7 @@
# YAMLCPP_LIBRARY, where to find yaml-cpp
# YAMLCPP_INCLUDE_DIR, where to find yaml.h
# There is also one IMPORTED library target,
# yamlcpp
# yamlcpp::yamlcpp
#
# By default, the dynamic libraries of yaml-cpp will be found. To find the static ones instead,
# you must set the YAMLCPP_STATIC_LIBRARY variable to TRUE before calling find_package(YamlCpp ...).
@ -21,6 +21,10 @@
# If yaml-cpp is not installed in a standard path, you can use the YAMLCPP_DIR CMake variable
# to tell CMake where yaml-cpp is.
if(TARGET yamlcpp::yamlcpp)
return()
endif()
# attempt to find static library first if this is set
if(YAMLCPP_STATIC_LIBRARY)
set(YAMLCPP_STATIC libyaml-cpp.a)
@ -61,9 +65,9 @@ mark_as_advanced(YAMLCPP_INCLUDE_DIR YAMLCPP_LIBRARY)
# Add an imported target
if( YAMLCPP_LIBRARY )
add_library( yamlcpp UNKNOWN IMPORTED )
set_property( TARGET yamlcpp PROPERTY IMPORTED_LOCATION ${YAMLCPP_LIBRARY} )
add_library( yamlcpp::yamlcpp UNKNOWN IMPORTED )
set_property( TARGET yamlcpp::yamlcpp PROPERTY IMPORTED_LOCATION ${YAMLCPP_LIBRARY} )
if ( YAMLCPP_INCLUDE_DIR )
set_property( TARGET yamlcpp PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${YAMLCPP_INCLUDE_DIR} )
set_property( TARGET yamlcpp::yamlcpp PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${YAMLCPP_INCLUDE_DIR} )
endif()
endif()

View File

@ -27,6 +27,9 @@ if (NOT TARGET Calamares::calamares OR NOT TARGET Calamares::calamaresui)
message(FATAL_ERROR "Calamares found with missing CMake targets")
endif()
# Need various CMake files that are installed alongside this one.
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR})
### Dependencies
#
# The libraries can depend on a variety of Qt and KDE Frameworks
@ -60,6 +63,8 @@ if(kf5_required)
endif()
endif()
find_package(YAMLCPP REQUIRED)
### Legacy support
#
#
@ -70,8 +75,6 @@ set(Calamares_LIBRARIES Calamares::calamares)
### CMake support
#
#
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR})
include(CalamaresAddBrandingSubdirectory)
include(CalamaresAddLibrary)
include(CalamaresAddModuleSubdirectory)

View File

@ -4276,11 +4276,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4321,6 +4316,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4241,11 +4241,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4286,6 +4281,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4238,11 +4238,6 @@ Salida:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4283,6 +4278,11 @@ Salida:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -510,17 +510,17 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="32"/>
<source>Set filesystem label on %1.</source>
<translation type="unfinished"/>
<translation>Fayl sistemi yarlığını %1 üzərində qurun.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="39"/>
<source>Set filesystem label &lt;strong&gt;%1&lt;/strong&gt; to partition &lt;strong&gt;%2&lt;/strong&gt;.</source>
<translation type="unfinished"/>
<translation>&lt;strong&gt;%1&lt;/strong&gt; fayl sistemi yarlığını &lt;strong&gt;%2&lt;/strong&gt; bölməsinə qurun.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="70"/>
<source>The installer failed to update partition table on disk '%1'.</source>
<translation type="unfinished"/>
<translation>Quraşdırıcının '%1' diskindəki bölməni yeniləməsi baş tutmadı.</translation>
</message>
</context>
<context>
@ -896,7 +896,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/users/Config.cpp" line="548"/>
<source>OK!</source>
<translation type="unfinished"/>
<translation>OLDU!</translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="145"/>
@ -1012,12 +1012,12 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="231"/>
<source>Label for the filesystem</source>
<translation type="unfinished"/>
<translation>Fayl sitemi üçün yarlıq</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="241"/>
<source>FS Label:</source>
<translation type="unfinished"/>
<translation>FS yarlığı:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="65"/>
@ -1376,12 +1376,12 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="186"/>
<source>Label for the filesystem</source>
<translation type="unfinished"/>
<translation>Fayl sitemi üçün yarlıq</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="196"/>
<source>FS Label:</source>
<translation type="unfinished"/>
<translation>FS yarlığı:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="291"/>
@ -1889,7 +1889,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/libcalamares/locale/Tests.cpp" line="273"/>
<source>Quit</source>
<translation type="unfinished"/>
<translation>Çıxış</translation>
</message>
</context>
<context>
@ -2113,7 +2113,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/localeq/Offline.qml" line="41"/>
<source>Select your preferred Region, or use the default settings.</source>
<translation type="unfinished"/>
<translation>Üstünlük verdiyiniz Bölgənizi seçin ilkin ayarlardan istifadə edin.</translation>
</message>
<message>
<location filename="../src/modules/localeq/Offline.qml" line="98"/>
@ -2653,7 +2653,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="304"/>
<source>File System Label</source>
<translation type="unfinished"/>
<translation>Fayl sistemi yarlığı</translation>
</message>
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="306"/>
@ -4262,7 +4262,7 @@ Output:
<message>
<location filename="../src/modules/usersq/usersq.qml" line="118"/>
<source>root is not allowed as username.</source>
<translation type="unfinished"/>
<translation>kökə istifadəçi_adı kimi icazə verilmir.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="127"/>
@ -4279,15 +4279,10 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Əgər gizlədilməzsə komputer şəbəkədə bu adla görünəcək.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
<translation type="unfinished"/>
<translation>yerli hosta host_adı kimi icazə verilmir.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="183"/>
@ -4324,6 +4319,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation>Şifrə soruşmadan sistemə daxil olmaq</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation>Yalnız hərflərə, saylara, alt cizgisinə tire işarəsinə icazə verilir, ən az iki simvol.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -510,17 +510,17 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="32"/>
<source>Set filesystem label on %1.</source>
<translation type="unfinished"/>
<translation>Fayl sistemi yarlığını %1 üzərində qurun.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="39"/>
<source>Set filesystem label &lt;strong&gt;%1&lt;/strong&gt; to partition &lt;strong&gt;%2&lt;/strong&gt;.</source>
<translation type="unfinished"/>
<translation>&lt;strong&gt;%1&lt;/strong&gt; fayl sistemi yarlığını &lt;strong&gt;%2&lt;/strong&gt; bölməsinə qurun.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="70"/>
<source>The installer failed to update partition table on disk '%1'.</source>
<translation type="unfinished"/>
<translation>Quraşdırıcının '%1' diskindəki bölməni yeniləməsi baş tutmadı.</translation>
</message>
</context>
<context>
@ -896,7 +896,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/users/Config.cpp" line="548"/>
<source>OK!</source>
<translation type="unfinished"/>
<translation>OLDU!</translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="145"/>
@ -1012,12 +1012,12 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="231"/>
<source>Label for the filesystem</source>
<translation type="unfinished"/>
<translation>Fayl sitemi üçün yarlıq</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="241"/>
<source>FS Label:</source>
<translation type="unfinished"/>
<translation>FS yarlığı:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="65"/>
@ -1376,12 +1376,12 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="186"/>
<source>Label for the filesystem</source>
<translation type="unfinished"/>
<translation>Fayl sitemi üçün yarlıq</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="196"/>
<source>FS Label:</source>
<translation type="unfinished"/>
<translation>FS yarlığı:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="291"/>
@ -1889,7 +1889,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/libcalamares/locale/Tests.cpp" line="273"/>
<source>Quit</source>
<translation type="unfinished"/>
<translation>Çıxış</translation>
</message>
</context>
<context>
@ -2113,7 +2113,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/localeq/Offline.qml" line="41"/>
<source>Select your preferred Region, or use the default settings.</source>
<translation type="unfinished"/>
<translation>Üstünlük verdiyiniz Bölgənizi seçin ilkin ayarlardan istifadə edin.</translation>
</message>
<message>
<location filename="../src/modules/localeq/Offline.qml" line="98"/>
@ -2653,7 +2653,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="304"/>
<source>File System Label</source>
<translation type="unfinished"/>
<translation>Fayl sistemi yarlığı</translation>
</message>
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="306"/>
@ -4262,7 +4262,7 @@ Output:
<message>
<location filename="../src/modules/usersq/usersq.qml" line="118"/>
<source>root is not allowed as username.</source>
<translation type="unfinished"/>
<translation>kökə istifadəçi_adı kimi icazə verilmir.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="127"/>
@ -4279,15 +4279,10 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Əgər gizlədilməzsə komputer şəbəkədə bu adla görünəcək.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
<translation type="unfinished"/>
<translation>yerli hosta host_adı kimi icazə verilmir.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="183"/>
@ -4324,6 +4319,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation>Şifrə soruşmadan sistemə daxil olmaq</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation>Yalnız hərflərə, saylara, alt cizgisinə tire işarəsinə icazə verilir, ən az iki simvol.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4294,11 +4294,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Назва будзе выкарыстоўвацца для пазначэння кампютара ў сетцы.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4339,6 +4334,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation>Аўтаматычна ўваходзіць без уводу пароля</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4235,11 +4235,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4280,6 +4275,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -32,7 +32,7 @@
<message>
<location filename="../src/modules/partition/core/BootLoaderModel.cpp" line="59"/>
<source>Master Boot Record of %1</source>
<translation>1% </translation>
<translation>%1 </translation>
</message>
<message>
<location filename="../src/modules/partition/core/BootLoaderModel.cpp" line="92"/>
@ -217,7 +217,7 @@
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="224"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>ি িি 1% %2 </translation>
<translation>ি িি %1 %2 </translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="230"/>
@ -227,12 +227,12 @@
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="231"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation> ি 1% 2% </translation>
<translation> ি %1 %2 </translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="304"/>
<source>Boost.Python error in job "%1".</source>
<translation>. 1% ি</translation>
<translation>. %1 ি</translation>
</message>
</context>
<context>
@ -497,7 +497,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="369"/>
<source>%1 Installer</source>
<translation>1% </translation>
<translation>%1 </translation>
</message>
</context>
<context>
@ -4231,11 +4231,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4276,6 +4271,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4280,11 +4280,6 @@ La configuració pot continuar, però algunes característiques podrien estar in
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Aquest nom s'usarà si feu visible aquest ordinador per a altres en una xarxa.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation>Només es permeten lletres, números, guionets, guionets baixos i un mínim de dos caràcters.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4325,6 +4320,11 @@ La configuració pot continuar, però algunes característiques podrien estar in
<source>Log in automatically without asking for the password</source>
<translation>Entra automàticament sense demanar la contrasenya.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation>Només es permeten lletres, números, guionets, guionets baixos i un mínim de dos caràcters.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4274,11 +4274,6 @@ La configuració pot continuar, però és possible que algunes característiques
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Aquest nom s'usarà si feu visible aquest ordinador per a altres en una xarxa.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4319,6 +4314,11 @@ La configuració pot continuar, però és possible que algunes característiques
<source>Log in automatically without asking for the password</source>
<translation>Entra automàticament sense demanar la contrasenya.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4296,11 +4296,6 @@ Výstup:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Tento název se použije, pokud počítač zviditelníte ostatním v síti.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4341,6 +4336,11 @@ Výstup:
<source>Log in automatically without asking for the password</source>
<translation>Přihlaste se automaticky bez zadávání hesla</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4274,11 +4274,6 @@ setting
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Navnet bruges, hvis du gør computeren synlig for andre et netværk.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4319,6 +4314,11 @@ setting
<source>Log in automatically without asking for the password</source>
<translation>Log ind automatisk uden at spørge efter adgangskoden</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4280,11 +4280,6 @@ Ausgabe:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Dieser Name wird benutzt, wenn Sie den Computer im Netzwerk für andere sichtbar machen.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4325,6 +4320,11 @@ Ausgabe:
<source>Log in automatically without asking for the password</source>
<translation>Automatisch anmelden ohne Passwortabfrage</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4231,11 +4231,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4276,6 +4271,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4280,11 +4280,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>This name will be used if you make the computer visible to others on a network.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4325,6 +4320,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation>Log in automatically without asking for the password</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4234,11 +4234,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4279,6 +4274,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4235,11 +4235,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4280,6 +4275,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4235,11 +4235,6 @@ Salida:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4280,6 +4275,11 @@ Salida:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4237,11 +4237,6 @@ Salida
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4282,6 +4277,11 @@ Salida
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4230,11 +4230,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4275,6 +4270,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4230,11 +4230,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4275,6 +4270,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4234,11 +4234,6 @@ Väljund:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4279,6 +4274,11 @@ Väljund:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4233,11 +4233,6 @@ Irteera:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4278,6 +4273,11 @@ Irteera:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4233,11 +4233,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4278,6 +4273,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -510,12 +510,12 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.</translation>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="32"/>
<source>Set filesystem label on %1.</source>
<translation type="unfinished"/>
<translation>Valitse tiedostojärjestelmän nimi %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="39"/>
<source>Set filesystem label &lt;strong&gt;%1&lt;/strong&gt; to partition &lt;strong&gt;%2&lt;/strong&gt;.</source>
<translation type="unfinished"/>
<translation>Valitse tiedostojärjestelmän nimi &lt;strong&gt;%1&lt;/strong&gt; osioon &lt;strong&gt;%2&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="70"/>
@ -897,7 +897,7 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä.</tra
<message>
<location filename="../src/modules/users/Config.cpp" line="548"/>
<source>OK!</source>
<translation type="unfinished"/>
<translation>OK!</translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="145"/>
@ -1013,12 +1013,12 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä.</tra
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="231"/>
<source>Label for the filesystem</source>
<translation type="unfinished"/>
<translation>Tiedostojärjestelmän nimi</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="241"/>
<source>FS Label:</source>
<translation type="unfinished"/>
<translation>FS-nimi:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="65"/>
@ -1377,12 +1377,12 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä.</tra
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="186"/>
<source>Label for the filesystem</source>
<translation type="unfinished"/>
<translation>Tiedostojärjestelmän nimi</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="196"/>
<source>FS Label:</source>
<translation type="unfinished"/>
<translation>FS-nimi:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="291"/>
@ -1890,7 +1890,7 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä.</tra
<message>
<location filename="../src/libcalamares/locale/Tests.cpp" line="273"/>
<source>Quit</source>
<translation type="unfinished"/>
<translation>Sulje</translation>
</message>
</context>
<context>
@ -2114,7 +2114,7 @@ hiiren vieritystä skaalaamiseen.</translation>
<message>
<location filename="../src/modules/localeq/Offline.qml" line="41"/>
<source>Select your preferred Region, or use the default settings.</source>
<translation type="unfinished"/>
<translation>Valitse sinun asuinalue tai käytä oletusta.</translation>
</message>
<message>
<location filename="../src/modules/localeq/Offline.qml" line="98"/>
@ -2654,7 +2654,7 @@ hiiren vieritystä skaalaamiseen.</translation>
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="304"/>
<source>File System Label</source>
<translation type="unfinished"/>
<translation>Tiedostojärjestelmän nimi</translation>
</message>
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="306"/>
@ -4265,7 +4265,7 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä.</tra
<message>
<location filename="../src/modules/usersq/usersq.qml" line="118"/>
<source>root is not allowed as username.</source>
<translation type="unfinished"/>
<translation>root ei ole sallittu käyttäjän nimeksi.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="127"/>
@ -4282,15 +4282,10 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä.</tra
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Tätä nimeä käytetään, jos teet tietokoneen näkyväksi verkon muille käyttäjille.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
<translation type="unfinished"/>
<translation>localhost ei ole sallittu koneen nimeksi.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="183"/>
@ -4327,6 +4322,11 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä.</tra
<source>Log in automatically without asking for the password</source>
<translation>Kirjaudu automaattisesti ilman salasanaa</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation>Vain kirjaimet, numerot, alaviiva ja väliviiva ovat sallittuja, vähintään kaksi merkkiä.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -515,7 +515,7 @@ L'installateur se fermera et les changements seront perdus.</translation>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="39"/>
<source>Set filesystem label &lt;strong&gt;%1&lt;/strong&gt; to partition &lt;strong&gt;%2&lt;/strong&gt;.</source>
<translation type="unfinished"/>
<translation>Mettre le nom du système de fichier &lt;strong&gt;%1&lt;/strong&gt; à la partition &lt;strong&gt;%2&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="70"/>
@ -896,7 +896,7 @@ L'installateur se fermera et les changements seront perdus.</translation>
<message>
<location filename="../src/modules/users/Config.cpp" line="548"/>
<source>OK!</source>
<translation type="unfinished"/>
<translation>OK!</translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="145"/>
@ -1889,7 +1889,7 @@ L'installateur se fermera et les changements seront perdus.</translation>
<message>
<location filename="../src/libcalamares/locale/Tests.cpp" line="273"/>
<source>Quit</source>
<translation type="unfinished"/>
<translation>Quiter</translation>
</message>
</context>
<context>
@ -4262,7 +4262,7 @@ Sortie
<message>
<location filename="../src/modules/usersq/usersq.qml" line="118"/>
<source>root is not allowed as username.</source>
<translation type="unfinished"/>
<translation>root n'est pas autorisé en tant que nom d'utilisateur.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="127"/>
@ -4279,15 +4279,10 @@ Sortie
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Ce nom sera utilisé si vous rendez l'ordinateur visible aux autres sur un réseau.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
<translation type="unfinished"/>
<translation>localhost n'est pas autorisé en tant que nom d'utilisateur.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="183"/>
@ -4324,6 +4319,11 @@ Sortie
<source>Log in automatically without asking for the password</source>
<translation>Connectez-vous automatiquement sans demander le mot de passe</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation>Seuls les lettres, les chiffres, les underscores et les trait d'union sont autorisés et un minimum de deux caractères.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4230,11 +4230,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4275,6 +4270,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4274,11 +4274,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Si doprarà chest non se tu rindis visibil a altris chest computer suntune rêt.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4319,6 +4314,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation>Jentre in automatic cence domandâ la password</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4235,11 +4235,6 @@ Saída:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4280,6 +4275,11 @@ Saída:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4230,11 +4230,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4275,6 +4270,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -1432,7 +1432,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="196"/>
<source>Install %1 on &lt;strong&gt;new&lt;/strong&gt; %2 system partition with features &lt;em&gt;%3&lt;/em&gt;</source>
<translation type="unfinished"/>
<translation>התקנת %1 על מחיצת מערכת &lt;strong&gt;חדשה&lt;/strong&gt; מסוג %2 עם היכולות &lt;em&gt;%3&lt;/em&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="204"/>
@ -1442,12 +1442,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="213"/>
<source>Set up &lt;strong&gt;new&lt;/strong&gt; %2 partition with mount point &lt;strong&gt;%1&lt;/strong&gt; and features &lt;em&gt;%3&lt;/em&gt;.</source>
<translation type="unfinished"/>
<translation>הקמת מחיצת %2 &lt;strong&gt;חדשה&lt;/strong&gt; עם נקודת העיגון &lt;strong&gt;%1&lt;/strong&gt; והיכולות &lt;em&gt;%3&lt;/em&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="221"/>
<source>Set up &lt;strong&gt;new&lt;/strong&gt; %2 partition with mount point &lt;strong&gt;%1&lt;/strong&gt;%3.</source>
<translation type="unfinished"/>
<translation>הגדרת מחיצת מערכת &lt;strong&gt;חדשה&lt;/strong&gt; מסוג %2 עם נקודת העיגון &lt;strong&gt;%1&lt;/strong&gt; %3.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="235"/>
@ -1457,7 +1457,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="254"/>
<source>Set up %3 partition &lt;strong&gt;%1&lt;/strong&gt; with mount point &lt;strong&gt;%2&lt;/strong&gt; and features &lt;em&gt;%4&lt;/em&gt;.</source>
<translation type="unfinished"/>
<translation>הקמת מחיצת %3 בשם &lt;strong&gt;%1&lt;/strong&gt; עם נקודת העגינה &lt;strong&gt;%2&lt;/strong&gt; והיכולות &lt;em&gt;%4&lt;/em&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="263"/>
@ -4088,7 +4088,8 @@ Output:
<location filename="../src/modules/finishedq/finishedq.qml" line="43"/>
<source>%1 has been installed on your computer.&lt;br/&gt;
You may now restart into your new system, or continue using the Live environment.</source>
<translation type="unfinished"/>
<translation>%1 הותקן על המחשב שלך.&lt;br/&gt;
כעת ניתן לאתחל את המחשב אל תוך המערכת החדשה שלך, או להמשיך להשתמש בסביבה הניסיונית.</translation>
</message>
<message>
<location filename="../src/modules/finishedq/finishedq.qml" line="65"/>
@ -4301,11 +4302,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>השם הזה יהיה בשימוש אם המחשב הזה יהיה גלוי לשאר הרשת.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation>מותר להשתמש באותיות, ספרות, קווים תחתונים ומינוסים, שני תווים ומעלה.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4346,6 +4342,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation>להיכנס אוטומטית מבלי לבקש סיסמה</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation>מותר להשתמש באותיות, ספרות, קווים תחתונים ומינוסים, שני תווים ומעלה.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -510,17 +510,17 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="32"/>
<source>Set filesystem label on %1.</source>
<translation type="unfinished"/>
<translation>%1 ि </translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="39"/>
<source>Set filesystem label &lt;strong&gt;%1&lt;/strong&gt; to partition &lt;strong&gt;%2&lt;/strong&gt;.</source>
<translation type="unfinished"/>
<translation>&lt;strong&gt;%2&lt;/strong&gt; ि ि &lt;strong&gt;%1&lt;/strong&gt; </translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="70"/>
<source>The installer failed to update partition table on disk '%1'.</source>
<translation type="unfinished"/>
<translation> ि '%1' ि ि ि</translation>
</message>
</context>
<context>
@ -896,7 +896,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/users/Config.cpp" line="548"/>
<source>OK!</source>
<translation type="unfinished"/>
<translation> !</translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="145"/>
@ -1012,12 +1012,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="231"/>
<source>Label for the filesystem</source>
<translation type="unfinished"/>
<translation> ि </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="241"/>
<source>FS Label:</source>
<translation type="unfinished"/>
<translation> ि :</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="65"/>
@ -1376,12 +1376,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="186"/>
<source>Label for the filesystem</source>
<translation type="unfinished"/>
<translation> ि </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="196"/>
<source>FS Label:</source>
<translation type="unfinished"/>
<translation> ि :</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="291"/>
@ -1889,7 +1889,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/libcalamares/locale/Tests.cpp" line="273"/>
<source>Quit</source>
<translation type="unfinished"/>
<translation> </translation>
</message>
</context>
<context>
@ -2113,7 +2113,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/localeq/Offline.qml" line="41"/>
<source>Select your preferred Region, or use the default settings.</source>
<translation type="unfinished"/>
<translation> ि ि ि ि </translation>
</message>
<message>
<location filename="../src/modules/localeq/Offline.qml" line="98"/>
@ -2653,7 +2653,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="304"/>
<source>File System Label</source>
<translation type="unfinished"/>
<translation> ि </translation>
</message>
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="306"/>
@ -4263,7 +4263,7 @@ Output:
<message>
<location filename="../src/modules/usersq/usersq.qml" line="118"/>
<source>root is not allowed as username.</source>
<translation type="unfinished"/>
<translation> root </translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="127"/>
@ -4280,15 +4280,10 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>ि ि , ि </translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
<translation type="unfinished"/>
<translation> localhost </translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="183"/>
@ -4325,6 +4320,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation> ि </translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation> , , , </translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -264,9 +264,9 @@
<location filename="../src/libcalamares/modulesystem/RequirementsChecker.cpp" line="115"/>
<source>Waiting for %n module(s).</source>
<translation>
<numerusform>Čekam %1 modul(a).</numerusform>
<numerusform>Čekam %1 modul(a).</numerusform>
<numerusform>Čekam %1 modul(a).</numerusform>
<numerusform>Čekam %n modul(a).</numerusform>
<numerusform>Čekam %n modul(a).</numerusform>
<numerusform>Čekam %n modul(a).</numerusform>
</translation>
</message>
<message numerus="yes">
@ -512,12 +512,12 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="32"/>
<source>Set filesystem label on %1.</source>
<translation type="unfinished"/>
<translation>Postavi oznaku datotečnog sustava na %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="39"/>
<source>Set filesystem label &lt;strong&gt;%1&lt;/strong&gt; to partition &lt;strong&gt;%2&lt;/strong&gt;.</source>
<translation type="unfinished"/>
<translation>Postavi oznaku datotečnog sustava &lt;strong&gt;%1&lt;/strong&gt; na particiju &lt;strong&gt;%2&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="70"/>
@ -863,12 +863,12 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
<message>
<location filename="../src/modules/users/Config.cpp" line="230"/>
<source>Your username must start with a lowercase letter or underscore.</source>
<translation>Vaše korisničko ime mora započeti malim slovom ili podvlakom.</translation>
<translation>Vaše korisničko ime mora započeti malim slovom ili donjom crtom.</translation>
</message>
<message>
<location filename="../src/modules/users/Config.cpp" line="234"/>
<source>Only lowercase letters, numbers, underscore and hyphen are allowed.</source>
<translation>Dopuštena su samo mala slova, brojevi, podvlake i crtice.</translation>
<translation>Dopuštena su samo mala slova, brojevi, donja crta i crtica.</translation>
</message>
<message>
<location filename="../src/modules/users/Config.cpp" line="279"/>
@ -888,7 +888,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
<message>
<location filename="../src/modules/users/Config.cpp" line="295"/>
<source>Only letters, numbers, underscore and hyphen are allowed.</source>
<translation>Dopuštena su samo slova, brojevi, podvlake i crtice.</translation>
<translation>Dopuštena su samo slova, brojevi, donja crta i crtica.</translation>
</message>
<message>
<location filename="../src/modules/users/Config.cpp" line="534"/>
@ -898,7 +898,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
<message>
<location filename="../src/modules/users/Config.cpp" line="548"/>
<source>OK!</source>
<translation type="unfinished"/>
<translation>OK!</translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="145"/>
@ -1014,12 +1014,12 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="231"/>
<source>Label for the filesystem</source>
<translation type="unfinished"/>
<translation>Oznaka za datotečni sustav</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="241"/>
<source>FS Label:</source>
<translation type="unfinished"/>
<translation>Oznaka datotečnog sustava:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="65"/>
@ -1378,12 +1378,12 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="186"/>
<source>Label for the filesystem</source>
<translation type="unfinished"/>
<translation>Oznaka za datotečni sustav</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="196"/>
<source>FS Label:</source>
<translation type="unfinished"/>
<translation>Oznaka datotečnog sustava:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="291"/>
@ -1891,7 +1891,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
<message>
<location filename="../src/libcalamares/locale/Tests.cpp" line="273"/>
<source>Quit</source>
<translation type="unfinished"/>
<translation>izađi</translation>
</message>
</context>
<context>
@ -2115,7 +2115,7 @@ te korištenjem tipki +/- ili skrolanjem miša za zumiranje.</translation>
<message>
<location filename="../src/modules/localeq/Offline.qml" line="41"/>
<source>Select your preferred Region, or use the default settings.</source>
<translation type="unfinished"/>
<translation>Odaberite željenu regiju ili upotrijebite zadane postavke.</translation>
</message>
<message>
<location filename="../src/modules/localeq/Offline.qml" line="98"/>
@ -2664,7 +2664,7 @@ te korištenjem tipki +/- ili skrolanjem miša za zumiranje.</translation>
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="304"/>
<source>File System Label</source>
<translation type="unfinished"/>
<translation>Oznaka datotečnog sustava</translation>
</message>
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="306"/>
@ -4268,12 +4268,12 @@ Postavke regije utječu na format brojeva i datuma. Trenutne postavke su &lt;str
<message>
<location filename="../src/modules/usersq/usersq.qml" line="110"/>
<source>Only lowercase letters, numbers, underscore and hyphen are allowed.</source>
<translation>Dopuštena su samo mala slova, brojevi, podvlake i crtice.</translation>
<translation>Dopuštena su samo mala slova, brojevi, donja crta i crtica.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="118"/>
<source>root is not allowed as username.</source>
<translation type="unfinished"/>
<translation>root nije dozvoljeno korisničko ime.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="127"/>
@ -4290,15 +4290,10 @@ Postavke regije utječu na format brojeva i datuma. Trenutne postavke su &lt;str
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Ovo će se ime upotrebljavati ako računalo učinite vidljivim drugima na mreži.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
<translation type="unfinished"/>
<translation>localhost nije dozvoljeno ime računala.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="183"/>
@ -4335,6 +4330,11 @@ Postavke regije utječu na format brojeva i datuma. Trenutne postavke su &lt;str
<source>Log in automatically without asking for the password</source>
<translation>Automatska prijava bez traženja lozinke</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation>Dopuštena su samo slova, brojevi, donja crta i crtica i to kao najmanje dva znaka</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4238,11 +4238,6 @@ Calamares hiba %1.</translation>
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4283,6 +4278,11 @@ Calamares hiba %1.</translation>
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4237,11 +4237,6 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</translat
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4282,6 +4277,11 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</translat
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4219,11 +4219,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4264,6 +4259,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4230,11 +4230,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4275,6 +4270,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4231,11 +4231,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4276,6 +4271,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4255,11 +4255,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4300,6 +4295,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -508,12 +508,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="32"/>
<source>Set filesystem label on %1.</source>
<translation type="unfinished"/>
<translation> %1 </translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="39"/>
<source>Set filesystem label &lt;strong&gt;%1&lt;/strong&gt; to partition &lt;strong&gt;%2&lt;/strong&gt;.</source>
<translation type="unfinished"/>
<translation> &lt;strong&gt;%1&lt;/strong&gt; &lt;strong&gt;%2&lt;/strong&gt; </translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="70"/>
@ -894,7 +894,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/users/Config.cpp" line="548"/>
<source>OK!</source>
<translation type="unfinished"/>
<translation>OK!</translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="145"/>
@ -1011,12 +1011,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="231"/>
<source>Label for the filesystem</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="241"/>
<source>FS Label:</source>
<translation type="unfinished"/>
<translation>FSラベル:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="65"/>
@ -1375,12 +1375,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="186"/>
<source>Label for the filesystem</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="196"/>
<source>FS Label:</source>
<translation type="unfinished"/>
<translation>FSラベル:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="291"/>
@ -1427,47 +1427,47 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="196"/>
<source>Install %1 on &lt;strong&gt;new&lt;/strong&gt; %2 system partition with features &lt;em&gt;%3&lt;/em&gt;</source>
<translation>&lt;em&gt;%3&lt;/em&gt; &lt;strong&gt;&lt;/strong&gt; %2 %1 </translation>
<translation>&lt;strong&gt;&lt;/strong&gt; %2 ( &lt;em&gt;%3&lt;/em&gt;) %1 </translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="204"/>
<source>Install %1 on &lt;strong&gt;new&lt;/strong&gt; %2 system partition.</source>
<translation>&lt;strong&gt;&lt;/strong&gt; %2 %1 </translation>
<translation>&lt;strong&gt;&lt;/strong&gt; %2 %1 </translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="213"/>
<source>Set up &lt;strong&gt;new&lt;/strong&gt; %2 partition with mount point &lt;strong&gt;%1&lt;/strong&gt; and features &lt;em&gt;%3&lt;/em&gt;.</source>
<translation> &lt;strong&gt;%1&lt;/strong&gt; &lt;em&gt;%3&lt;/em&gt; &lt;strong&gt;&lt;/strong&gt; %2 </translation>
<translation>&lt;strong&gt;&lt;/strong&gt; %2 ( &lt;strong&gt;%1&lt;/strong&gt; &lt;em&gt;%3&lt;/em&gt;) </translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="221"/>
<source>Set up &lt;strong&gt;new&lt;/strong&gt; %2 partition with mount point &lt;strong&gt;%1&lt;/strong&gt;%3.</source>
<translation> &lt;strong&gt;%1&lt;/strong&gt; %3 &lt;strong&gt;&lt;/strong&gt; %2 </translation>
<translation>&lt;strong&gt;&lt;/strong&gt; %2 ( &lt;strong&gt;%1&lt;/strong&gt; %3) </translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="235"/>
<source>Install %2 on %3 system partition &lt;strong&gt;%1&lt;/strong&gt; with features &lt;em&gt;%4&lt;/em&gt;.</source>
<translation>&lt;em&gt;%4&lt;/em&gt; %3 &lt;strong&gt;%1&lt;/strong&gt; %2 </translation>
<translation>%3 &lt;strong&gt;%1&lt;/strong&gt; ( &lt;em&gt;%4&lt;/em&gt;) %2 </translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="254"/>
<source>Set up %3 partition &lt;strong&gt;%1&lt;/strong&gt; with mount point &lt;strong&gt;%2&lt;/strong&gt; and features &lt;em&gt;%4&lt;/em&gt;.</source>
<translation> &lt;strong&gt;%2&lt;/strong&gt; &lt;em&gt;%4&lt;/em&gt; %3 &lt;strong&gt;%1&lt;/strong&gt; </translation>
<translation> %3 &lt;strong&gt;%1&lt;/strong&gt; ( &lt;strong&gt;%2&lt;/strong&gt; &lt;em&gt;%4&lt;/em&gt;) </translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="263"/>
<source>Set up %3 partition &lt;strong&gt;%1&lt;/strong&gt; with mount point &lt;strong&gt;%2&lt;/strong&gt;%4.</source>
<translation> &lt;strong&gt;%2&lt;/strong&gt; %4 %3 &lt;strong&gt;%1&lt;/strong&gt; </translation>
<translation>%3 &lt;strong&gt;%1&lt;/strong&gt; ( &lt;strong&gt;%2&lt;/strong&gt; %4) </translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="244"/>
<source>Install %2 on %3 system partition &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>%3 &lt;strong&gt;%1&lt;/strong&gt; %2 </translation>
<translation>%3 &lt;strong&gt;%1&lt;/strong&gt; %2 </translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="278"/>
<source>Install boot loader 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>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="287"/>
@ -1888,7 +1888,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/libcalamares/locale/Tests.cpp" line="273"/>
<source>Quit</source>
<translation type="unfinished"/>
<translation></translation>
</message>
</context>
<context>
@ -2113,7 +2113,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/localeq/Offline.qml" line="41"/>
<source>Select your preferred Region, or use the default settings.</source>
<translation type="unfinished"/>
<translation>使</translation>
</message>
<message>
<location filename="../src/modules/localeq/Offline.qml" line="98"/>
@ -2644,7 +2644,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="304"/>
<source>File System Label</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="306"/>
@ -4254,7 +4254,7 @@ Output:
<message>
<location filename="../src/modules/usersq/usersq.qml" line="118"/>
<source>root is not allowed as username.</source>
<translation type="unfinished"/>
<translation>root </translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="127"/>
@ -4271,15 +4271,10 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>使</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
<translation type="unfinished"/>
<translation>localhost </translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="183"/>
@ -4316,6 +4311,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation></translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation>使 _ - 2</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4230,11 +4230,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4275,6 +4270,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4230,11 +4230,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4275,6 +4270,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -508,17 +508,17 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="32"/>
<source>Set filesystem label on %1.</source>
<translation type="unfinished"/>
<translation> %1 .</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="39"/>
<source>Set filesystem label &lt;strong&gt;%1&lt;/strong&gt; to partition &lt;strong&gt;%2&lt;/strong&gt;.</source>
<translation type="unfinished"/>
<translation>&lt;strong&gt;%1&lt;/strong&gt; &lt;strong&gt;%2&lt;/strong&gt; .</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="70"/>
<source>The installer failed to update partition table on disk '%1'.</source>
<translation type="unfinished"/>
<translation> '%1' .</translation>
</message>
</context>
<context>
@ -894,7 +894,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/users/Config.cpp" line="548"/>
<source>OK!</source>
<translation type="unfinished"/>
<translation>!</translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="145"/>
@ -1010,12 +1010,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="231"/>
<source>Label for the filesystem</source>
<translation type="unfinished"/>
<translation> </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="241"/>
<source>FS Label:</source>
<translation type="unfinished"/>
<translation>FS :</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="65"/>
@ -1374,12 +1374,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="186"/>
<source>Label for the filesystem</source>
<translation type="unfinished"/>
<translation> </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="196"/>
<source>FS Label:</source>
<translation type="unfinished"/>
<translation>FS :</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="291"/>
@ -1887,7 +1887,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/libcalamares/locale/Tests.cpp" line="273"/>
<source>Quit</source>
<translation type="unfinished"/>
<translation></translation>
</message>
</context>
<context>
@ -2111,7 +2111,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/localeq/Offline.qml" line="41"/>
<source>Select your preferred Region, or use the default settings.</source>
<translation type="unfinished"/>
<translation> , .</translation>
</message>
<message>
<location filename="../src/modules/localeq/Offline.qml" line="98"/>
@ -2642,7 +2642,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="304"/>
<source>File System Label</source>
<translation type="unfinished"/>
<translation> </translation>
</message>
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="306"/>
@ -4252,7 +4252,7 @@ Output:
<message>
<location filename="../src/modules/usersq/usersq.qml" line="118"/>
<source>root is not allowed as username.</source>
<translation type="unfinished"/>
<translation> .</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="127"/>
@ -4269,15 +4269,10 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation> .</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
<translation type="unfinished"/>
<translation>localhost는 .</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="183"/>
@ -4314,6 +4309,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation> </translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

4332
lang/calamares_ko_KR.ts Normal file

File diff suppressed because it is too large Load Diff

View File

@ -4219,11 +4219,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4264,6 +4259,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4302,11 +4302,6 @@ Išvestis:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Šis vardas bus naudojamas, jeigu padarysite savo kompiuterį matomą kitiems naudotojams tinkle.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation>Yra leidžiamos tik raidės, skaitmenys, pabraukimo brūkšniai ir brūkšneliai, mažiausiai du simboliai.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4347,6 +4342,11 @@ Išvestis:
<source>Log in automatically without asking for the password</source>
<translation>Prisijungti automatiškai, neklausiant slaptažodžio</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation>Yra leidžiamos tik raidės, skaitmenys, pabraukimo brūkšniai ir brūkšneliai, mažiausiai du simboliai.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4241,11 +4241,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4286,6 +4281,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4230,11 +4230,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4275,6 +4270,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4235,11 +4235,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4280,6 +4275,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4230,11 +4230,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4275,6 +4270,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4231,11 +4231,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4276,6 +4271,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4230,11 +4230,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4275,6 +4270,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4230,11 +4230,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4275,6 +4270,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4264,11 +4264,6 @@ De systeemstijdinstellingen beïnvloeden de cijfer- en datumsformaat. De huidige
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Deze naam zal worden gebruikt als u de computer zichtbaar maakt voor anderen op een netwerk.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4309,6 +4304,11 @@ De systeemstijdinstellingen beïnvloeden de cijfer- en datumsformaat. De huidige
<source>Log in automatically without asking for the password</source>
<translation>Automatisch aanmelden zonder wachtwoord te vragen</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4257,11 +4257,6 @@ i nie uruchomi się</translation>
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4302,6 +4297,11 @@ i nie uruchomi się</translation>
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4280,11 +4280,6 @@ Saída:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Este nome será usado se você fizer o computador ficar visível para outros numa rede.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4325,6 +4320,11 @@ Saída:
<source>Log in automatically without asking for the password</source>
<translation>Entrar automaticamente sem perguntar pela senha</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4280,11 +4280,6 @@ Saída de Dados:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Este nome será utilizado se tornar o computador visível a outros numa rede.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation>Apenas letras, números, sublinhado e hífen são permitidos, com um mínimo de dois caracteres.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4325,6 +4320,11 @@ Saída de Dados:
<source>Log in automatically without asking for the password</source>
<translation>Iniciar sessão automaticamente sem pedir a palavra-passe</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4248,11 +4248,6 @@ Output
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4293,6 +4288,11 @@ Output
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4258,11 +4258,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4303,6 +4298,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4252,11 +4252,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4297,6 +4292,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4230,11 +4230,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4275,6 +4270,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -787,12 +787,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<message>
<location filename="../src/modules/netinstall/Config.cpp" line="57"/>
<source>Network Installation. (Disabled: Internal error)</source>
<translation type="unfinished"/>
<translation>Sieťová inštalácia. (Zakázaná: vnútorná chyba)</translation>
</message>
<message>
<location filename="../src/modules/netinstall/Config.cpp" line="61"/>
<source>Network Installation. (Disabled: No package list)</source>
<translation type="unfinished"/>
<translation>Sieťová inštalácia. (Zakázaná: bez zoznamu balíkov)</translation>
</message>
<message>
<location filename="../src/modules/netinstall/Config.cpp" line="77"/>
@ -897,7 +897,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<message>
<location filename="../src/modules/users/Config.cpp" line="548"/>
<source>OK!</source>
<translation type="unfinished"/>
<translation>OK!</translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="145"/>
@ -912,12 +912,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<message>
<location filename="../src/modules/finished/Config.cpp" line="147"/>
<source>The setup of %1 did not complete successfully.</source>
<translation type="unfinished"/>
<translation>Inštalácia distribúcie %1 nebola úspešne dokončená.</translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="148"/>
<source>The installation of %1 did not complete successfully.</source>
<translation type="unfinished"/>
<translation>Inštalácia distribúcie %1 bola úspešne dokončená.</translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="152"/>
@ -1013,12 +1013,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="231"/>
<source>Label for the filesystem</source>
<translation type="unfinished"/>
<translation>Menovka systému súborov</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="241"/>
<source>FS Label:</source>
<translation type="unfinished"/>
<translation>Menovka SS:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="65"/>
@ -1051,12 +1051,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<message>
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="113"/>
<source>Create new %1MiB partition on %3 (%2) with entries %4.</source>
<translation type="unfinished"/>
<translation>Vytvorenie nového %1MiB oddielu na zariadení %3 (%2) so záznamami %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="121"/>
<source>Create new %1MiB partition on %3 (%2).</source>
<translation type="unfinished"/>
<translation>Vytvorenie nového %1MiB oddielu na zariadení %3 (%2).</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="128"/>
@ -1066,12 +1066,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<message>
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="145"/>
<source>Create new &lt;strong&gt;%1MiB&lt;/strong&gt; partition on &lt;strong&gt;%3&lt;/strong&gt; (%2) with entries &lt;em&gt;%4&lt;/em&gt;.</source>
<translation type="unfinished"/>
<translation>Vytvorenie nového &lt;strong&gt;%1MiB&lt;/strong&gt; oddielu na zariadení &lt;strong&gt;%3&lt;/strong&gt; (%2) so záznamami &lt;em&gt;%4&lt;/em&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="154"/>
<source>Create new &lt;strong&gt;%1MiB&lt;/strong&gt; partition on &lt;strong&gt;%3&lt;/strong&gt; (%2).</source>
<translation type="unfinished"/>
<translation>Vytvorenie nového &lt;strong&gt;%1MiB&lt;/strong&gt; oddielu na zariadení &lt;strong&gt;%3&lt;/strong&gt; (%2).</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="161"/>
@ -1377,12 +1377,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="186"/>
<source>Label for the filesystem</source>
<translation type="unfinished"/>
<translation>Menovka systému súborov</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="196"/>
<source>FS Label:</source>
<translation type="unfinished"/>
<translation>Menovka SS:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="291"/>
@ -1890,7 +1890,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<message>
<location filename="../src/libcalamares/locale/Tests.cpp" line="273"/>
<source>Quit</source>
<translation type="unfinished"/>
<translation>Ukončiť</translation>
</message>
</context>
<context>
@ -2113,7 +2113,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<message>
<location filename="../src/modules/localeq/Offline.qml" line="41"/>
<source>Select your preferred Region, or use the default settings.</source>
<translation type="unfinished"/>
<translation>Vyberte vami uprednostňovanú oblasť, alebo použite predvolené nastavenia.</translation>
</message>
<message>
<location filename="../src/modules/localeq/Offline.qml" line="98"/>
@ -2671,7 +2671,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="304"/>
<source>File System Label</source>
<translation type="unfinished"/>
<translation>Menovka systému súborov</translation>
</message>
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="306"/>
@ -4077,23 +4077,24 @@ Výstup:
<message>
<location filename="../src/modules/finishedq/finishedq.qml" line="36"/>
<source>Installation Completed</source>
<translation type="unfinished"/>
<translation>Inštalácia dokončená</translation>
</message>
<message>
<location filename="../src/modules/finishedq/finishedq.qml" line="43"/>
<source>%1 has been installed on your computer.&lt;br/&gt;
You may now restart into your new system, or continue using the Live environment.</source>
<translation type="unfinished"/>
<translation>Distribúcia %1 bola nainštalovaná do vášho počítača.&lt;br/&gt;
Teraz môžete reštartovať váš počítač a spustiť nový systém, alebo pokračovať v používaní živého prostredia.</translation>
</message>
<message>
<location filename="../src/modules/finishedq/finishedq.qml" line="65"/>
<source>Close Installer</source>
<translation type="unfinished"/>
<translation>Zavrieť inštalátor</translation>
</message>
<message>
<location filename="../src/modules/finishedq/finishedq.qml" line="71"/>
<source>Restart System</source>
<translation type="unfinished"/>
<translation>Reštartovať systém</translation>
</message>
<message>
<location filename="../src/modules/finishedq/finishedq.qml" line="89"/>
@ -4275,11 +4276,6 @@ Výstup:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Tento názov bude použitý, keď zviditeľníte počítač ostatným v sieti.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4320,6 +4316,11 @@ Výstup:
<source>Log in automatically without asking for the password</source>
<translation>Prihlásiť automaticky bez pýtania hesla</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4253,11 +4253,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4298,6 +4293,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4278,11 +4278,6 @@ Përfundim:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Ky emër do përdoret nëse e bëni kompjuterin dukshëm për tjerët një rrjet.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation>Lejohen vetëm shkronja, numra, nënvijë dhe vijë ndarëse. minimumi dy shenja.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4323,6 +4318,11 @@ Përfundim:
<source>Log in automatically without asking for the password</source>
<translation>Kryej hyrje vetvetiu, pa kërkuar fjalëkalimin.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation>Lejohen vetëm shkronja, numra, nënvijë dhe vijë ndarëse. minimumi dy shenja.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4242,11 +4242,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4287,6 +4282,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4242,11 +4242,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4287,6 +4282,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -509,12 +509,12 @@ Alla ändringar kommer att gå förlorade.</translation>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="32"/>
<source>Set filesystem label on %1.</source>
<translation type="unfinished"/>
<translation>Sätt filsystem etikett %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="39"/>
<source>Set filesystem label &lt;strong&gt;%1&lt;/strong&gt; to partition &lt;strong&gt;%2&lt;/strong&gt;.</source>
<translation type="unfinished"/>
<translation>Sätt filsystem etikett &lt;strong&gt;%1&lt;/strong&gt; på partition &lt;strong&gt;%2&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="70"/>
@ -895,7 +895,7 @@ Alla ändringar kommer att gå förlorade.</translation>
<message>
<location filename="../src/modules/users/Config.cpp" line="548"/>
<source>OK!</source>
<translation type="unfinished"/>
<translation>OK!</translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="145"/>
@ -1011,12 +1011,12 @@ Alla ändringar kommer att gå förlorade.</translation>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="231"/>
<source>Label for the filesystem</source>
<translation type="unfinished"/>
<translation>Etikett för filsystem</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="241"/>
<source>FS Label:</source>
<translation type="unfinished"/>
<translation>FS Etikett:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="65"/>
@ -1375,12 +1375,12 @@ Alla ändringar kommer att gå förlorade.</translation>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="186"/>
<source>Label for the filesystem</source>
<translation type="unfinished"/>
<translation>Etikett för filsystem</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="196"/>
<source>FS Label:</source>
<translation type="unfinished"/>
<translation>FS Etikett:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="291"/>
@ -1888,7 +1888,7 @@ Alla ändringar kommer att gå förlorade.</translation>
<message>
<location filename="../src/libcalamares/locale/Tests.cpp" line="273"/>
<source>Quit</source>
<translation type="unfinished"/>
<translation>Avsluta</translation>
</message>
</context>
<context>
@ -2113,7 +2113,7 @@ Sök på kartan genom att dra
<message>
<location filename="../src/modules/localeq/Offline.qml" line="41"/>
<source>Select your preferred Region, or use the default settings.</source>
<translation type="unfinished"/>
<translation>Välj din föredragna Region, eller använd standardinställningarna.</translation>
</message>
<message>
<location filename="../src/modules/localeq/Offline.qml" line="98"/>
@ -2653,7 +2653,7 @@ Sök på kartan genom att dra
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="304"/>
<source>File System Label</source>
<translation type="unfinished"/>
<translation>Filsystem etikett</translation>
</message>
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="306"/>
@ -4263,7 +4263,7 @@ Systems nationella inställningar påverkar nummer och datumformat. Den nuvarand
<message>
<location filename="../src/modules/usersq/usersq.qml" line="118"/>
<source>root is not allowed as username.</source>
<translation type="unfinished"/>
<translation>root är inte tillåtet som användarnamn.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="127"/>
@ -4280,15 +4280,10 @@ Systems nationella inställningar påverkar nummer och datumformat. Den nuvarand
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Detta namn kommer användas om du gör datorn synlig för andra i ett nätverk.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
<translation type="unfinished"/>
<translation>localhost är inte tillåtet som värdnamn.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="183"/>
@ -4325,6 +4320,11 @@ Systems nationella inställningar påverkar nummer och datumformat. Den nuvarand
<source>Log in automatically without asking for the password</source>
<translation>Logga in automatiskt utan att fråga efter ett lösenord.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation>Endast bokstäver, nummer, understreck och bindestreck är tillåtet, minst två tecken.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4232,11 +4232,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4277,6 +4272,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4274,11 +4274,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Ин ном истифода мешавад, агар шумо компютери худро барои дигарон дар шабака намоён кунед.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4319,6 +4314,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation>Ба таври худкор бе дархости ниҳонвожа ворид карда шавад</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -37,7 +37,7 @@
<message>
<location filename="../src/modules/partition/core/BootLoaderModel.cpp" line="92"/>
<source>Boot Partition</source>
<translation> Boot</translation>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/core/BootLoaderModel.cpp" line="99"/>
@ -60,7 +60,7 @@
<message>
<location filename="../src/libcalamaresui/viewpages/BlankViewStep.cpp" line="61"/>
<source>Blank Page</source>
<translation type="unfinished"/>
<translation></translation>
</message>
</context>
<context>
@ -94,7 +94,7 @@
<location filename="../src/calamares/DebugWindow.ui" line="68"/>
<location filename="../src/calamares/DebugWindow.ui" line="82"/>
<source>none</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/calamares/DebugWindow.ui" line="75"/>
@ -147,7 +147,7 @@
<message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/>
<source>Set up</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/libcalamaresui/viewpages/ExecutionViewStep.cpp" line="88"/>
@ -263,15 +263,15 @@
<message numerus="yes">
<location filename="../src/libcalamares/modulesystem/RequirementsChecker.cpp" line="115"/>
<source>Waiting for %n module(s).</source>
<translation type="unfinished">
<numerusform/>
<translation>
<numerusform> %n </numerusform>
</translation>
</message>
<message numerus="yes">
<location filename="../src/libcalamares/modulesystem/RequirementsChecker.cpp" line="116"/>
<source>(%n second(s))</source>
<translation type="unfinished">
<numerusform/>
<translation>
<numerusform>(%n )</numerusform>
</translation>
</message>
<message>
@ -361,7 +361,7 @@ Link copied to clipboard</source>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="327"/>
<source>Continue with installation?</source>
<translation type="unfinished"/>
<translation>?</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="329"/>
@ -376,7 +376,7 @@ Link copied to clipboard</source>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="335"/>
<source>&amp;Set up now</source>
<translation type="unfinished"/>
<translation>&amp;</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="335"/>
@ -391,12 +391,12 @@ Link copied to clipboard</source>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="393"/>
<source>&amp;Set up</source>
<translation type="unfinished"/>
<translation>&amp;</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="393"/>
<source>&amp;Install</source>
<translation type="unfinished"/>
<translation>&amp;</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="395"/>
@ -577,7 +577,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1115"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<translation type="unfinished"/>
<translation>&lt;strong&gt;&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1174"/>
@ -597,7 +597,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1325"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
<translation> ?&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1330"/>
@ -764,7 +764,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/locale/Config.cpp" line="387"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
<translation> %1</translation>
</message>
<message>
<location filename="../src/modules/netinstall/Config.cpp" line="53"/>
@ -789,7 +789,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/netinstall/Config.cpp" line="77"/>
<source>Package selection</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/netinstall/Config.cpp" line="59"/>
@ -799,12 +799,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/welcome/Config.cpp" line="50"/>
<source>This computer does not satisfy the minimum requirements for setting up %1.&lt;br/&gt;Setup cannot continue. &lt;a href="#details"&gt;Details...&lt;/a&gt;</source>
<translation type="unfinished"/>
<translation> %1&lt;br/&gt; &lt;a href="#details"&gt;...&lt;/a&gt;</translation>
</message>
<message>
<location filename="../src/modules/welcome/Config.cpp" line="54"/>
<source>This computer does not satisfy the minimum requirements for installing %1.&lt;br/&gt;Installation cannot continue. &lt;a href="#details"&gt;Details...&lt;/a&gt;</source>
<translation> %1.&lt;br/&gt; &lt;a href="#details"&gt;...&lt;/a&gt;</translation>
<translation> %1&lt;br/&gt; &lt;a href="#details"&gt;...&lt;/a&gt;</translation>
</message>
<message>
<location filename="../src/modules/welcome/Config.cpp" line="61"/>
@ -819,7 +819,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/welcome/Config.cpp" line="75"/>
<source>This program will ask you some questions and set up %2 on your computer.</source>
<translation> %2 </translation>
<translation> %2 </translation>
</message>
<message>
<location filename="../src/modules/welcome/Config.cpp" line="244"/>
@ -829,17 +829,17 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/welcome/Config.cpp" line="245"/>
<source>&lt;h1&gt;Welcome to %1 setup&lt;/h1&gt;</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt; %1&lt;/h1&gt;</translation>
</message>
<message>
<location filename="../src/modules/welcome/Config.cpp" line="250"/>
<source>&lt;h1&gt;Welcome to the Calamares installer for %1&lt;/h1&gt;</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt; Calamares %1&lt;/h1&gt;</translation>
</message>
<message>
<location filename="../src/modules/welcome/Config.cpp" line="251"/>
<source>&lt;h1&gt;Welcome to the %1 installer&lt;/h1&gt;</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt; %1&lt;/h1&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/Config.cpp" line="217"/>
@ -849,7 +849,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/users/Config.cpp" line="223"/>
<source>'%1' is not allowed as username.</source>
<translation type="unfinished"/>
<translation> '%1' </translation>
</message>
<message>
<location filename="../src/modules/users/Config.cpp" line="230"/>
@ -889,7 +889,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/users/Config.cpp" line="548"/>
<source>OK!</source>
<translation type="unfinished"/>
<translation>!</translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="145"/>
@ -934,12 +934,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/packagechooser/Config.cpp" line="85"/>
<source>Package Selection</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/packagechooser/Config.cpp" line="87"/>
<source>Please pick a product from the list. The selected product will be installed.</source>
<translation type="unfinished"/>
<translation> </translation>
</message>
</context>
<context>
@ -1115,17 +1115,17 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/jobs/CreatePartitionTableJob.cpp" line="39"/>
<source>Create new %1 partition table on %2.</source>
<translation type="unfinished"/>
<translation> %1 %2</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/CreatePartitionTableJob.cpp" line="47"/>
<source>Create new &lt;strong&gt;%1&lt;/strong&gt; partition table on &lt;strong&gt;%2&lt;/strong&gt; (%3).</source>
<translation type="unfinished"/>
<translation> &lt;strong&gt;%1&lt;/strong&gt; &lt;strong&gt;%2&lt;/strong&gt; (%3)</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/CreatePartitionTableJob.cpp" line="57"/>
<source>Creating new %1 partition table on %2.</source>
<translation type="unfinished"/>
<translation> %1 %2</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/CreatePartitionTableJob.cpp" line="67"/>
@ -1143,7 +1143,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/users/CreateUserJob.cpp" line="43"/>
<source>Create user &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/>
<translation> &lt;strong&gt;%1&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/CreateUserJob.cpp" line="126"/>
@ -1154,12 +1154,12 @@ The installer will quit and all changes will be lost.</source>
<location filename="../src/modules/users/CreateUserJob.cpp" line="50"/>
<location filename="../src/modules/users/CreateUserJob.cpp" line="143"/>
<source>Creating user %1</source>
<translation type="unfinished"/>
<translation> %1</translation>
</message>
<message>
<location filename="../src/modules/users/CreateUserJob.cpp" line="151"/>
<source>Configuring user %1</source>
<translation type="unfinished"/>
<translation> %1</translation>
</message>
<message>
<location filename="../src/modules/users/CreateUserJob.cpp" line="159"/>
@ -1222,17 +1222,17 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="31"/>
<source>Delete partition %1.</source>
<translation type="unfinished"/>
<translation> %1</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="38"/>
<source>Delete partition &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation type="unfinished"/>
<translation> &lt;strong&gt;%1&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="45"/>
<source>Deleting partition %1.</source>
<translation type="unfinished"/>
<translation> %1</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="56"/>
@ -1245,7 +1245,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="97"/>
<source>This device has a &lt;strong&gt;%1&lt;/strong&gt; partition table.</source>
<translation type="unfinished"/>
<translation> &lt;strong&gt;%1&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="104"/>
@ -1303,7 +1303,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/dracutlukscfg/DracutLuksCfgJob.cpp" line="138"/>
<source>Failed to open %1</source>
<translation type="unfinished"/>
<translation> %1</translation>
</message>
</context>
<context>
@ -1329,7 +1329,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="64"/>
<source>&amp;Keep</source>
<translation type="unfinished"/>
<translation>&amp;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="74"/>
@ -1494,7 +1494,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/finished/FinishedPage.cpp" line="84"/>
<source>&lt;h1&gt;All done.&lt;/h1&gt;&lt;br/&gt;%1 has been installed on your computer.&lt;br/&gt;You may now restart into your new system, or continue using the %2 Live environment.</source>
<translation>&lt;h1&gt;&lt;/h1&gt;&lt;br/&gt;%1 &lt;br/&gt; %2 Live environment </translation>
<translation>&lt;h1&gt;&lt;/h1&gt;&lt;br/&gt;%1 &lt;br/&gt; %2 (Live) </translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedPage.cpp" line="89"/>
@ -1581,7 +1581,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/welcome/checker/GeneralRequirements.cpp" line="178"/>
<source>The system is not plugged in to a power source.</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/welcome/checker/GeneralRequirements.cpp" line="185"/>
@ -1611,7 +1611,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/welcome/checker/GeneralRequirements.cpp" line="205"/>
<source>has a screen large enough to show the whole installer</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/welcome/checker/GeneralRequirements.cpp" line="208"/>
@ -1621,7 +1621,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/welcome/checker/GeneralRequirements.cpp" line="209"/>
<source>The screen is too small to display the installer.</source>
<translation type="unfinished"/>
<translation></translation>
</message>
</context>
<context>
@ -1629,7 +1629,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/hostinfo/HostInfoJob.cpp" line="42"/>
<source>Collecting information about your machine.</source>
<translation type="unfinished"/>
<translation></translation>
</message>
</context>
<context>
@ -1679,7 +1679,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/interactiveterminal/InteractiveTerminalPage.cpp" line="44"/>
<source>Konsole not installed</source>
<translation type="unfinished"/>
<translation> Konsole</translation>
</message>
<message>
<location filename="../src/modules/interactiveterminal/InteractiveTerminalPage.cpp" line="44"/>
@ -1721,7 +1721,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/locale/LCLocaleDialog.cpp" line="23"/>
<source>System locale setting</source>
<translation> locale </translation>
<translation></translation>
</message>
<message>
<location filename="../src/modules/locale/LCLocaleDialog.cpp" line="30"/>
@ -1736,7 +1736,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/locale/LCLocaleDialog.cpp" line="55"/>
<source>&amp;OK</source>
<translation type="unfinished"/>
<translation>&amp;O </translation>
</message>
</context>
<context>
@ -1832,7 +1832,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/license/LicenseWidget.cpp" line="163"/>
<source>File: %1</source>
<translation type="unfinished"/>
<translation>: %1</translation>
</message>
<message>
<location filename="../src/modules/license/LicenseWidget.cpp" line="186"/>
@ -1882,7 +1882,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/libcalamares/locale/Tests.cpp" line="273"/>
<source>Quit</source>
<translation type="unfinished"/>
<translation></translation>
</message>
</context>
<context>
@ -1952,7 +1952,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/localeq/Map.qml" line="243"/>
<source>Timezone: %1</source>
<translation type="unfinished"/>
<translation>: %1</translation>
</message>
<message>
<location filename="../src/modules/localeq/Map.qml" line="264"/>
@ -1967,7 +1967,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/netinstall/NetInstallViewStep.cpp" line="49"/>
<source>Package selection</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/netinstall/NetInstallViewStep.cpp" line="50"/>
@ -2007,52 +2007,52 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/netinstall/NetInstallViewStep.cpp" line="57"/>
<source>Login</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/netinstall/NetInstallViewStep.cpp" line="58"/>
<source>Desktop</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/netinstall/NetInstallViewStep.cpp" line="59"/>
<source>Applications</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/netinstall/NetInstallViewStep.cpp" line="60"/>
<source>Communication</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/netinstall/NetInstallViewStep.cpp" line="61"/>
<source>Development</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/netinstall/NetInstallViewStep.cpp" line="62"/>
<source>Office</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/netinstall/NetInstallViewStep.cpp" line="63"/>
<source>Multimedia</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/netinstall/NetInstallViewStep.cpp" line="64"/>
<source>Internet</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/netinstall/NetInstallViewStep.cpp" line="65"/>
<source>Theming</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/netinstall/NetInstallViewStep.cpp" line="66"/>
<source>Gaming</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/netinstall/NetInstallViewStep.cpp" line="67"/>
@ -2111,7 +2111,7 @@ The installer will quit and all changes will be lost.</source>
<location filename="../src/modules/localeq/Offline.qml" line="173"/>
<location filename="../src/modules/localeq/Offline.qml" line="217"/>
<source>Timezone: %1</source>
<translation type="unfinished"/>
<translation>: %1</translation>
</message>
<message>
<location filename="../src/modules/localeq/Offline.qml" line="115"/>
@ -2121,7 +2121,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/localeq/Offline.qml" line="186"/>
<source>Zones</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/localeq/Offline.qml" line="233"/>
@ -2405,7 +2405,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/packagechooser/page_package.ui" line="44"/>
<source>Product Name</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/packagechooser/page_package.ui" line="57"/>
@ -2415,17 +2415,17 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/packagechooser/page_package.ui" line="73"/>
<source>Long Product Description</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/packagechooser/PackageChooserPage.cpp" line="25"/>
<source>Package Selection</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/packagechooser/PackageChooserPage.cpp" line="26"/>
<source>Please pick a product from the list. The selected product will be installed.</source>
<translation type="unfinished"/>
<translation> </translation>
</message>
</context>
<context>
@ -2433,7 +2433,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/packagechooser/PackageChooserViewStep.cpp" line="51"/>
<source>Packages</source>
<translation type="unfinished"/>
<translation></translation>
</message>
</context>
<context>
@ -2477,7 +2477,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/users/page_usersetup.ui" line="40"/>
<source>What is your name?</source>
<translation>?</translation>
<translation>?</translation>
</message>
<message>
<location filename="../src/modules/users/page_usersetup.ui" line="55"/>
@ -2487,7 +2487,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/users/page_usersetup.ui" line="124"/>
<source>What name do you want to use to log in?</source>
<translation>?</translation>
<translation></translation>
</message>
<message>
<location filename="../src/modules/users/page_usersetup.ui" line="148"/>
@ -2497,7 +2497,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/users/page_usersetup.ui" line="223"/>
<source>What is the name of this computer?</source>
<translation>?</translation>
<translation>?</translation>
</message>
<message>
<location filename="../src/modules/users/page_usersetup.ui" line="247"/>
@ -2781,7 +2781,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="200"/>
<source>Disk &lt;strong&gt;%1&lt;/strong&gt; (%2)</source>
<translation type="unfinished"/>
<translation> &lt;strong&gt;%1&lt;/strong&gt; (%2)</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="226"/>
@ -3309,7 +3309,7 @@ Output:
<message>
<location filename="../src/modules/welcome/checker/ResultsListWidget.cpp" line="263"/>
<source>This computer does not satisfy the minimum requirements for setting up %1.&lt;br/&gt;Setup cannot continue. &lt;a href="#details"&gt;Details...&lt;/a&gt;</source>
<translation type="unfinished"/>
<translation> %1&lt;br/&gt; &lt;a href="#details"&gt;...&lt;/a&gt;</translation>
</message>
<message>
<location filename="../src/modules/welcome/checker/ResultsListWidget.cpp" line="267"/>
@ -3593,7 +3593,7 @@ Output:
<message>
<location filename="../src/modules/users/MiscJobs.cpp" line="33"/>
<source>Configure &lt;pre&gt;sudo&lt;/pre&gt; users.</source>
<translation type="unfinished"/>
<translation> &lt;pre&gt;sudo&lt;/pre&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/MiscJobs.cpp" line="55"/>
@ -3855,12 +3855,12 @@ Output:
<message>
<location filename="../src/modules/partition/gui/VolumeGroupBaseDialog.ui" line="86"/>
<source>Total Size:</source>
<translation type="unfinished"/>
<translation>:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/VolumeGroupBaseDialog.ui" line="106"/>
<source>Used Size:</source>
<translation type="unfinished"/>
<translation>:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/VolumeGroupBaseDialog.ui" line="126"/>
@ -3934,12 +3934,12 @@ Output:
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="216"/>
<source>&lt;h1&gt;Welcome to the Calamares setup program for %1.&lt;/h1&gt;</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt; Calamares %1&lt;/h1&gt;</translation>
</message>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="217"/>
<source>&lt;h1&gt;Welcome to %1 setup.&lt;/h1&gt;</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt; %1&lt;/h1&gt;</translation>
</message>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="222"/>
@ -3959,7 +3959,7 @@ Output:
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="235"/>
<source>About %1 setup</source>
<translation type="unfinished"/>
<translation> %1</translation>
</message>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="235"/>
@ -4009,7 +4009,7 @@ Output:
<message>
<location filename="../src/modules/welcomeq/about.qml" line="96"/>
<source>Back</source>
<translation type="unfinished"/>
<translation></translation>
</message>
</context>
<context>
@ -4025,7 +4025,7 @@ Output:
<message>
<location filename="../src/modules/finishedq/finishedq.qml" line="36"/>
<source>Installation Completed</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/finishedq/finishedq.qml" line="43"/>
@ -4036,12 +4036,12 @@ Output:
<message>
<location filename="../src/modules/finishedq/finishedq.qml" line="65"/>
<source>Close Installer</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/finishedq/finishedq.qml" line="71"/>
<source>Restart System</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/finishedq/finishedq.qml" line="89"/>
@ -4067,7 +4067,7 @@ Output:
<message>
<location filename="../src/modules/localeq/i18n.qml" line="158"/>
<source>Back</source>
<translation type="unfinished"/>
<translation></translation>
</message>
</context>
<context>
@ -4110,7 +4110,7 @@ Output:
<message>
<location filename="../src/modules/keyboardq/keyboardq.qml" line="386"/>
<source>Test your keyboard</source>
<translation type="unfinished"/>
<translation></translation>
</message>
</context>
<context>
@ -4118,7 +4118,7 @@ Output:
<message>
<location filename="../src/modules/localeq/localeq.qml" line="81"/>
<source>Change</source>
<translation type="unfinished"/>
<translation></translation>
</message>
</context>
<context>
@ -4160,7 +4160,7 @@ Output:
<message>
<location filename="../src/modules/welcomeq/release_notes.qml" line="76"/>
<source>Back</source>
<translation type="unfinished"/>
<translation></translation>
</message>
</context>
<context>
@ -4173,7 +4173,7 @@ Output:
<message>
<location filename="../src/modules/usersq/usersq.qml" line="49"/>
<source>What is your name?</source>
<translation>?</translation>
<translation>?</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="56"/>
@ -4183,7 +4183,7 @@ Output:
<message>
<location filename="../src/modules/usersq/usersq.qml" line="71"/>
<source>What name do you want to use to log in?</source>
<translation>?</translation>
<translation></translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="78"/>
@ -4208,7 +4208,7 @@ Output:
<message>
<location filename="../src/modules/usersq/usersq.qml" line="127"/>
<source>What is the name of this computer?</source>
<translation>?</translation>
<translation>?</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="133"/>
@ -4220,11 +4220,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4265,6 +4260,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4287,11 +4287,6 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.</t
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Bilgisayarı üzerinde herkese görünür yaparsanız bu ad kullanılacaktır.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4332,6 +4327,11 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.</t
<source>Log in automatically without asking for the password</source>
<translation>Parola sormadan otomatik olarak oturum ın</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4302,11 +4302,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Цю назву буде використано, якщо ви зробите комп'ютер видимим іншим у мережі.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation>Можна використовувати лише латинські літери, цифри, символи підкреслювання та дефіси; не менше двох символів.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4347,6 +4342,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation>Входити автоматично без пароля</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation>Можна використовувати лише латинські літери, цифри, символи підкреслювання та дефіси; не менше двох символів.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4230,11 +4230,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4275,6 +4270,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4219,11 +4219,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4264,6 +4259,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4262,11 +4262,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>Tên này sẽ hiển thị khi bạn kết nối vào một mạng.</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4307,6 +4302,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation>Tự đng đăng nhập không hỏi mật khẩu</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -4219,11 +4219,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4264,6 +4259,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -110,12 +110,12 @@
<message>
<location filename="../src/calamares/DebugWindow.ui" line="115"/>
<source>Reloads the stylesheet from the branding directory.</source>
<translation type="unfinished"/>
<translation>Branding目录重新载入样式表</translation>
</message>
<message>
<location filename="../src/calamares/DebugWindow.ui" line="141"/>
<source>Uploads the session log to the configured pastebin.</source>
<translation type="unfinished"/>
<translation>pastebin网站</translation>
</message>
<message>
<location filename="../src/calamares/DebugWindow.ui" line="144"/>
@ -337,7 +337,11 @@
%1
Link copied to clipboard</source>
<translation type="unfinished"/>
<translation>
%1
</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="206"/>
@ -505,7 +509,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="32"/>
<source>Set filesystem label on %1.</source>
<translation type="unfinished"/>
<translation>%1</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="39"/>
@ -781,12 +785,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/netinstall/Config.cpp" line="57"/>
<source>Network Installation. (Disabled: Internal error)</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/netinstall/Config.cpp" line="61"/>
<source>Network Installation. (Disabled: No package list)</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/netinstall/Config.cpp" line="77"/>
@ -893,7 +897,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/users/Config.cpp" line="548"/>
<source>OK!</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="145"/>
@ -908,12 +912,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/finished/Config.cpp" line="147"/>
<source>The setup of %1 did not complete successfully.</source>
<translation type="unfinished"/>
<translation>%1</translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="148"/>
<source>The installation of %1 did not complete successfully.</source>
<translation type="unfinished"/>
<translation>%1</translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="152"/>
@ -1009,12 +1013,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="231"/>
<source>Label for the filesystem</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="241"/>
<source>FS Label:</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="65"/>
@ -1374,12 +1378,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="186"/>
<source>Label for the filesystem</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="196"/>
<source>FS Label:</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="291"/>
@ -1887,7 +1891,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/libcalamares/locale/Tests.cpp" line="273"/>
<source>Quit</source>
<translation type="unfinished"/>
<translation>退</translation>
</message>
</context>
<context>
@ -2111,7 +2115,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/localeq/Offline.qml" line="41"/>
<source>Select your preferred Region, or use the default settings.</source>
<translation type="unfinished"/>
<translation>使</translation>
</message>
<message>
<location filename="../src/modules/localeq/Offline.qml" line="98"/>
@ -2642,7 +2646,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="304"/>
<source>File System Label</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="306"/>
@ -4255,7 +4259,7 @@ Output:
<message>
<location filename="../src/modules/usersq/usersq.qml" line="118"/>
<source>root is not allowed as username.</source>
<translation type="unfinished"/>
<translation>root</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="127"/>
@ -4272,15 +4276,10 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>使</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
<translation type="unfinished"/>
<translation>localhost不能为用户名</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="183"/>
@ -4317,6 +4316,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation></translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

4332
lang/calamares_zh_HK.ts Normal file

File diff suppressed because it is too large Load Diff

View File

@ -4269,11 +4269,6 @@ Output:
<source>This name will be used if you make the computer visible to others on a network.</source>
<translation>使</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letter, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation></translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="174"/>
<source>localhost is not allowed as hostname.</source>
@ -4314,6 +4309,11 @@ Output:
<source>Log in automatically without asking for the password</source>
<translation></translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="166"/>
<source>Only letters, numbers, underscore and hyphen are allowed, minimal of two characters.</source>
<translation></translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="264"/>
<source>Reuse user password as root password</source>

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-07-12 14:14+0200\n"
"POT-Creation-Date: 2021-07-14 12:55+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -18,296 +18,42 @@ msgstr ""
"Language: \n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "Install bootloader."
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr "Bootloader installation error"
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "Cannot write KDM configuration file"
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "KDM config file {!s} does not exist"
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "Cannot write LXDM configuration file"
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "LXDM config file {!s} does not exist"
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "Cannot write LightDM configuration file"
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "LightDM config file {!s} does not exist"
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "Cannot configure LightDM"
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "No LightDM greeter installed."
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "Cannot write SLIM configuration file"
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "SLIM config file {!s} does not exist"
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr "No display managers selected for the displaymanager module."
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "Display manager configuration was incomplete"
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr "Creating initramfs with dracut."
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr "Failed to run dracut on the target"
#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50
msgid "The exit code was {}"
msgstr "The exit code was {}"
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "Dummy python job."
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "Dummy python step {}"
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr "Writing fstab."
#: src/modules/fstab/main.py:355 src/modules/fstab/main.py:361
#: src/modules/fstab/main.py:388 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:135
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/mount/main.py:144
#: src/modules/networkcfg/main.py:39 src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
msgid "Configuration Error"
msgstr "Configuration Error"
#: src/modules/fstab/main.py:356 src/modules/initcpiocfg/main.py:198
#: src/modules/initramfscfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/mount/main.py:145
#: src/modules/openrcdmcryptcfg/main.py:73 src/modules/rawfs/main.py:165
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "No partitions are defined for <pre>{!s}</pre> to use."
#: src/modules/fstab/main.py:362 src/modules/initcpiocfg/main.py:202
#: src/modules/initramfscfg/main.py:90 src/modules/localecfg/main.py:136
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/networkcfg/main.py:40 src/modules/openrcdmcryptcfg/main.py:77
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr "No root mount point is given for <pre>{!s}</pre> to use."
#: src/modules/fstab/main.py:389
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."
#: src/modules/grubcfg/main.py:28
msgid "Configure GRUB."
msgstr "Configure GRUB."
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "Setting hardware clock."
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr "Configuring mkinitcpio."
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr "Configuring initramfs."
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr "Configuring locales."
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr "Configuring encrypted swap."
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr "Creating initramfs with mkinitfs."
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr "Failed to run mkinitfs on the target"
#: src/modules/mount/main.py:30
msgid "Mounting partitions."
msgstr "Mounting partitions."
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr "Saving network configuration."
#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/rawfs/main.py:164
#: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/fstab/main.py:355
#: src/modules/fstab/main.py:361 src/modules/fstab/main.py:388
#: src/modules/localecfg/main.py:135 src/modules/networkcfg/main.py:39
msgid "Configuration Error"
msgstr "Configuration Error"
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr "Configuring OpenRC dmcrypt service."
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "Install packages."
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "Processing packages (%(count)d / %(total)d)"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "Installing one package."
msgstr[1] "Installing %(num)d packages."
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Removing one package."
msgstr[1] "Removing %(num)d packages."
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr "Package Manager error"
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
#: src/modules/packages/main.py:629
msgid ""
"The package manager could make changes to the installed system. The command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
"The package manager could make changes to the installed system. The command "
"<pre>{!s}</pre> returned error code {!s}."
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr "Configure Plymouth theme"
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr "Installing data."
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr "Configure OpenRC services"
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr "Cannot add service {name!s} to run-level {level!s}."
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr "Cannot remove service {name!s} from run-level {level!s}."
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
#: src/modules/services-openrc/main.py:93
#: src/modules/services-systemd/main.py:59
msgid "Cannot modify service"
msgstr "Cannot modify service"
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "Target runlevel does not exist"
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "Target service does not exist"
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/rawfs/main.py:165
#: src/modules/initramfscfg/main.py:86 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/fstab/main.py:356
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "No partitions are defined for <pre>{!s}</pre> to use."
#: src/modules/services-systemd/main.py:26
msgid "Configure systemd services"
msgstr "Configure systemd services"
#: src/modules/services-systemd/main.py:59
#: src/modules/services-openrc/main.py:93
msgid "Cannot modify service"
msgstr "Cannot modify service"
#: src/modules/services-systemd/main.py:60
msgid ""
"<code>systemctl {arg!s}</code> call in chroot returned error code {num!s}."
@ -403,3 +149,259 @@ msgstr ""
#: src/modules/unpackfs/main.py:479
msgid "The destination \"{}\" in the target system is not a directory"
msgstr "The destination \"{}\" in the target system is not a directory"
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "Cannot write KDM configuration file"
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "KDM config file {!s} does not exist"
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "Cannot write LXDM configuration file"
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "LXDM config file {!s} does not exist"
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "Cannot write LightDM configuration file"
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "LightDM config file {!s} does not exist"
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "Cannot configure LightDM"
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "No LightDM greeter installed."
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "Cannot write SLIM configuration file"
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "SLIM config file {!s} does not exist"
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr "No display managers selected for the displaymanager module."
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "Display manager configuration was incomplete"
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr "Configuring mkinitcpio."
#: src/modules/initcpiocfg/main.py:202
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/initramfscfg/main.py:90 src/modules/openrcdmcryptcfg/main.py:77
#: src/modules/fstab/main.py:362 src/modules/localecfg/main.py:136
#: src/modules/networkcfg/main.py:40
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr "No root mount point is given for <pre>{!s}</pre> to use."
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr "Configuring encrypted swap."
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr "Installing data."
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr "Configure OpenRC services"
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr "Cannot add service {name!s} to run-level {level!s}."
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr "Cannot remove service {name!s} from run-level {level!s}."
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "Target runlevel does not exist"
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "Target service does not exist"
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr "Configure Plymouth theme"
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "Install packages."
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "Processing packages (%(count)d / %(total)d)"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "Installing one package."
msgstr[1] "Installing %(num)d packages."
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Removing one package."
msgstr[1] "Removing %(num)d packages."
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr "Package Manager error"
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
#: src/modules/packages/main.py:629
msgid ""
"The package manager could not make changes to the installed system. The "
"command <pre>{!s}</pre> returned error code {!s}."
msgstr ""
"The package manager could not make changes to the installed system. The "
"command <pre>{!s}</pre> returned error code {!s}."
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "Install bootloader."
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr "Bootloader installation error"
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "Setting hardware clock."
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr "Creating initramfs with mkinitfs."
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr "Failed to run mkinitfs on the target"
#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50
msgid "The exit code was {}"
msgstr "The exit code was {}"
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr "Creating initramfs with dracut."
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr "Failed to run dracut on the target"
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr "Configuring initramfs."
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr "Configuring OpenRC dmcrypt service."
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr "Writing fstab."
#: src/modules/fstab/main.py:389
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."
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "Dummy python job."
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "Dummy python step {}"
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr "Configuring locales."
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr "Saving network configuration."

View File

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-07-12 14:14+0200\n"
"POT-Creation-Date: 2021-07-14 12:55+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: aboodilankaboot, 2019\n"
"Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n"
@ -22,287 +22,42 @@ msgstr ""
"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "تثبيت محمل الإقلاع"
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "فشلت كتابة ملف ضبط KDM."
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "ملف ضبط KDM {!s} غير موجود"
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "فشلت كتابة ملف ضبط LXDM."
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "ملف ضبط LXDM {!s} غير موجود"
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "فشلت كتابة ملف ضبط LightDM."
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "ملف ضبط LightDM {!s} غير موجود"
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "فشل ضبط LightDM"
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "لم يتم تصيب LightDM"
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "فشلت كتابة ملف ضبط SLIM."
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "ملف ضبط SLIM {!s} غير موجود"
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr ""
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "إعداد مدير العرض لم يكتمل"
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr ""
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr ""
#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50
msgid "The exit code was {}"
msgstr "كود الخروج كان {}"
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "عملية بايثون دميه"
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "عملية دميه خطوه بايثون {}"
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr ""
#: src/modules/fstab/main.py:355 src/modules/fstab/main.py:361
#: src/modules/fstab/main.py:388 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:135
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/mount/main.py:144
#: src/modules/networkcfg/main.py:39 src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
msgid "Configuration Error"
msgstr "خطأ في الضبط"
#: src/modules/fstab/main.py:356 src/modules/initcpiocfg/main.py:198
#: src/modules/initramfscfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/mount/main.py:145
#: src/modules/openrcdmcryptcfg/main.py:73 src/modules/rawfs/main.py:165
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/fstab/main.py:362 src/modules/initcpiocfg/main.py:202
#: src/modules/initramfscfg/main.py:90 src/modules/localecfg/main.py:136
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/networkcfg/main.py:40 src/modules/openrcdmcryptcfg/main.py:77
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/grubcfg/main.py:28
msgid "Configure GRUB."
msgstr ""
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "جاري إعداد ساعة الهاردوير"
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr ""
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr ""
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr ""
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr ""
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr ""
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr ""
#: src/modules/mount/main.py:30
msgid "Mounting partitions."
msgstr "جاري تركيب الأقسام"
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr "جاري حفظ الإعدادات"
#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/rawfs/main.py:164
#: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/fstab/main.py:355
#: src/modules/fstab/main.py:361 src/modules/fstab/main.py:388
#: src/modules/localecfg/main.py:135 src/modules/networkcfg/main.py:39
msgid "Configuration Error"
msgstr "خطأ في الضبط"
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr ""
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "تثبيت الحزم"
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "جاري تحميل الحزم (%(count)d/%(total)d)"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
msgstr[4] ""
msgstr[5] ""
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
msgstr[4] ""
msgstr[5] ""
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could make changes to the installed system. The command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr ""
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr ""
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr ""
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:93
#: src/modules/services-systemd/main.py:59
msgid "Cannot modify service"
msgstr "لا يمكن تعديل الخدمة"
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "الـ runlevel الهدف غير موجود"
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "الخدمة الهدف غير موجودة"
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/rawfs/main.py:165
#: src/modules/initramfscfg/main.py:86 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/fstab/main.py:356
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/services-systemd/main.py:26
msgid "Configure systemd services"
msgstr "تعديل خدمات systemd"
#: src/modules/services-systemd/main.py:59
#: src/modules/services-openrc/main.py:93
msgid "Cannot modify service"
msgstr "لا يمكن تعديل الخدمة"
#: src/modules/services-systemd/main.py:60
msgid ""
"<code>systemctl {arg!s}</code> call in chroot returned error code {num!s}."
@ -393,3 +148,250 @@ msgstr ""
#: src/modules/unpackfs/main.py:479
msgid "The destination \"{}\" in the target system is not a directory"
msgstr ""
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "فشلت كتابة ملف ضبط KDM."
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "ملف ضبط KDM {!s} غير موجود"
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "فشلت كتابة ملف ضبط LXDM."
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "ملف ضبط LXDM {!s} غير موجود"
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "فشلت كتابة ملف ضبط LightDM."
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "ملف ضبط LightDM {!s} غير موجود"
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "فشل ضبط LightDM"
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "لم يتم تصيب LightDM"
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "فشلت كتابة ملف ضبط SLIM."
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "ملف ضبط SLIM {!s} غير موجود"
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr ""
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "إعداد مدير العرض لم يكتمل"
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr ""
#: src/modules/initcpiocfg/main.py:202
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/initramfscfg/main.py:90 src/modules/openrcdmcryptcfg/main.py:77
#: src/modules/fstab/main.py:362 src/modules/localecfg/main.py:136
#: src/modules/networkcfg/main.py:40
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr ""
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr ""
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr ""
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "الـ runlevel الهدف غير موجود"
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "الخدمة الهدف غير موجودة"
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr ""
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "تثبيت الحزم"
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "جاري تحميل الحزم (%(count)d/%(total)d)"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
msgstr[4] ""
msgstr[5] ""
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
msgstr[4] ""
msgstr[5] ""
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could not make changes to the installed system. The "
"command <pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "تثبيت محمل الإقلاع"
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "جاري إعداد ساعة الهاردوير"
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr ""
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr ""
#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50
msgid "The exit code was {}"
msgstr "كود الخروج كان {}"
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr ""
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr ""
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr ""
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr ""
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr ""
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "عملية بايثون دميه"
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "عملية دميه خطوه بايثون {}"
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr ""
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr "جاري حفظ الإعدادات"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-07-12 14:14+0200\n"
"POT-Creation-Date: 2021-07-14 12:55+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Deep Jyoti Choudhury <deep.choudhury@libresoft.in>, 2020\n"
"Language-Team: Assamese (https://www.transifex.com/calamares/teams/20061/as/)\n"
@ -21,282 +21,42 @@ msgstr ""
"Language: as\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "বুতলোডাৰ ইন্স্তল কৰক।"
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "KDM কনফিগাৰেচন ফাইলত লিখিব নোৱাৰি"
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "KDM কনফিগ্ ফাইল {!s} উপস্থিত নাই"
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "LXDM কনফিগাৰেচন ফাইলত লিখিব নোৱাৰি"
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "LXDM কনফিগ্ ফাইল {!s} উপস্থিত নাই"
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "LightDM কনফিগাৰেচন ফাইলত লিখিব নোৱাৰি"
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "LightDM কনফিগ্ ফাইল {!s} উপস্থিত নাই"
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "LightDM কনফিগাৰ কৰিব নোৱাৰি"
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "কোনো LightDM স্ৱাগতকৰ্তা ইন্স্তল নাই।"
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "SLIM কনফিগাৰেচন ফাইলত লিখিব নোৱাৰি"
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "SLIM কনফিগ্ ফাইল {!s} উপস্থিত নাই"
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr "displaymanager মডিউলৰ বাবে কোনো ডিস্প্লে প্ৰবন্ধক নাই।"
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "ডিস্প্লে প্ৰবন্ধক কন্ফিগাৰেচন অসমাপ্ত"
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr "dracutৰ সৈতে initramfs বনাই আছে।"
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr "গন্তব্য স্থানত dracut চলোৱাত বিফল হ'ল"
#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50
msgid "The exit code was {}"
msgstr "এক্সিড্ কোড্ আছিল {}"
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "ডামী Pythonৰ কায্য"
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "ডামী Pythonৰ পদক্ষেপ {}"
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr "fstab লিখি আছে।"
#: src/modules/fstab/main.py:355 src/modules/fstab/main.py:361
#: src/modules/fstab/main.py:388 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:135
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/mount/main.py:144
#: src/modules/networkcfg/main.py:39 src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
msgid "Configuration Error"
msgstr "কনফিগাৰেচন ত্ৰুটি"
#: src/modules/fstab/main.py:356 src/modules/initcpiocfg/main.py:198
#: src/modules/initramfscfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/mount/main.py:145
#: src/modules/openrcdmcryptcfg/main.py:73 src/modules/rawfs/main.py:165
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "<pre>{!s}</pre>ৰ ব্যৱহাৰৰ বাবে কোনো বিভাজনৰ বৰ্ণনা দিয়া হোৱা নাই।"
#: src/modules/fstab/main.py:362 src/modules/initcpiocfg/main.py:202
#: src/modules/initramfscfg/main.py:90 src/modules/localecfg/main.py:136
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/networkcfg/main.py:40 src/modules/openrcdmcryptcfg/main.py:77
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr "ব্যৱহাৰৰ বাবে <pre>{!s}</pre>ৰ কোনো মাউন্ট্ পাইন্ট্ দিয়া হোৱা নাই।"
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/grubcfg/main.py:28
msgid "Configure GRUB."
msgstr "GRUB কনফিগাৰ কৰক।"
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "হাৰ্ডৱেৰৰ ঘড়ী চেত্ কৰি আছে।"
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr "mkinitcpio কনফিগাৰ কৰি আছে।"
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr "initramfs কন্ফিগাৰ কৰি আছে।"
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr "স্থানীয়বোৰ কন্ফিগাৰ কৰি আছে।"
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr "এন্ক্ৰিপ্টেড স্ৱেপ কন্ফিগাৰ কৰি আছে।"
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr ""
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr ""
#: src/modules/mount/main.py:30
msgid "Mounting partitions."
msgstr "বিভাজন মাউন্ট্ কৰা।"
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr "নেটৱৰ্ক কন্ফিগাৰ জমা কৰি আছে।"
#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/rawfs/main.py:164
#: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/fstab/main.py:355
#: src/modules/fstab/main.py:361 src/modules/fstab/main.py:388
#: src/modules/localecfg/main.py:135 src/modules/networkcfg/main.py:39
msgid "Configuration Error"
msgstr "কনফিগাৰেচন ত্ৰুটি"
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr "OpenRC dmcrypt সেৱা কন্ফিগাৰ কৰি আছে।"
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "পেকেজ ইন্স্তল কৰক।"
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "(%(count)d / %(total)d) পেকেজবোৰ সংশোধন কৰি আছে"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "Installing one package."
msgstr[1] "%(num)d পেকেজবোৰ ইনস্তল হৈ আছে।"
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Removing one package."
msgstr[1] "%(num)d পেকেজবোৰ আতৰোৱা হৈ আছে।"
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could make changes to the installed system. The command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr "Plymouth theme কন্ফিগাৰ কৰি আছে।​"
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr "ডাটা ইন্স্তল কৰি আছে।"
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr "OpenRC সেৱা সমুহ কনফিগাৰ কৰক"
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr "ৰাণ-লেভেল {level!s}ত সেৱা {name!s} যোগ কৰিব নোৱাৰি।"
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr "ৰাণ-লেভেল {level!s}ৰ পৰা সেৱা {name!s} আতৰাব নোৱাৰি।"
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
"ৰান-লেভেল {level!s}ত সেৱা {name!s}ৰ বাবে অজ্ঞাত সেৱা কাৰ্য্য "
"<code>{arg!s}</code> ।"
#: src/modules/services-openrc/main.py:93
#: src/modules/services-systemd/main.py:59
msgid "Cannot modify service"
msgstr "সেৱা সমুহৰ সংশোধন কৰিব নোৱাৰি"
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr "chrootত <code>rc-update {arg!s}</code> call ক্ৰুটি কোড {num!s}।"
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "গন্তব্য ৰাণলেভেল উপস্থিত নাই।"
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"{level!s} ৰাণলেভেলৰ বাবে পথ হ'ল <code>{path!s}</code> যিটো উপস্থিত নাই।"
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "গন্তব্য সেৱা উপস্থিত নাই।"
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr "{name!s}ৰ বাবে পথ হ'ল <code>{path!s}</code> যিটো উপস্থিত নাই।"
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/rawfs/main.py:165
#: src/modules/initramfscfg/main.py:86 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/fstab/main.py:356
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "<pre>{!s}</pre>ৰ ব্যৱহাৰৰ বাবে কোনো বিভাজনৰ বৰ্ণনা দিয়া হোৱা নাই।"
#: src/modules/services-systemd/main.py:26
msgid "Configure systemd services"
msgstr "systemd সেৱা সমুহ কনফিগাৰ কৰক"
#: src/modules/services-systemd/main.py:59
#: src/modules/services-openrc/main.py:93
msgid "Cannot modify service"
msgstr "সেৱা সমুহৰ সংশোধন কৰিব নোৱাৰি"
#: src/modules/services-systemd/main.py:60
msgid ""
"<code>systemctl {arg!s}</code> call in chroot returned error code {num!s}."
@ -391,3 +151,245 @@ msgstr ""
#: src/modules/unpackfs/main.py:479
msgid "The destination \"{}\" in the target system is not a directory"
msgstr "লক্ষ্যৰ চিছটেম গন্তব্য স্থান \"{}\" এটা ডিৰেক্টৰী নহয়"
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "KDM কনফিগাৰেচন ফাইলত লিখিব নোৱাৰি"
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "KDM কনফিগ্ ফাইল {!s} উপস্থিত নাই"
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "LXDM কনফিগাৰেচন ফাইলত লিখিব নোৱাৰি"
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "LXDM কনফিগ্ ফাইল {!s} উপস্থিত নাই"
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "LightDM কনফিগাৰেচন ফাইলত লিখিব নোৱাৰি"
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "LightDM কনফিগ্ ফাইল {!s} উপস্থিত নাই"
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "LightDM কনফিগাৰ কৰিব নোৱাৰি"
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "কোনো LightDM স্ৱাগতকৰ্তা ইন্স্তল নাই।"
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "SLIM কনফিগাৰেচন ফাইলত লিখিব নোৱাৰি"
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "SLIM কনফিগ্ ফাইল {!s} উপস্থিত নাই"
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr "displaymanager মডিউলৰ বাবে কোনো ডিস্প্লে প্ৰবন্ধক নাই।"
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "ডিস্প্লে প্ৰবন্ধক কন্ফিগাৰেচন অসমাপ্ত"
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr "mkinitcpio কনফিগাৰ কৰি আছে।"
#: src/modules/initcpiocfg/main.py:202
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/initramfscfg/main.py:90 src/modules/openrcdmcryptcfg/main.py:77
#: src/modules/fstab/main.py:362 src/modules/localecfg/main.py:136
#: src/modules/networkcfg/main.py:40
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr "ব্যৱহাৰৰ বাবে <pre>{!s}</pre>ৰ কোনো মাউন্ট্ পাইন্ট্ দিয়া হোৱা নাই।"
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr "এন্ক্ৰিপ্টেড স্ৱেপ কন্ফিগাৰ কৰি আছে।"
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr "ডাটা ইন্স্তল কৰি আছে।"
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr "OpenRC সেৱা সমুহ কনফিগাৰ কৰক"
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr "ৰাণ-লেভেল {level!s}ত সেৱা {name!s} যোগ কৰিব নোৱাৰি।"
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr "ৰাণ-লেভেল {level!s}ৰ পৰা সেৱা {name!s} আতৰাব নোৱাৰি।"
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
"ৰান-লেভেল {level!s}ত সেৱা {name!s}ৰ বাবে অজ্ঞাত সেৱা কাৰ্য্য "
"<code>{arg!s}</code> ।"
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr "chrootত <code>rc-update {arg!s}</code> call ক্ৰুটি কোড {num!s}।"
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "গন্তব্য ৰাণলেভেল উপস্থিত নাই।"
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"{level!s} ৰাণলেভেলৰ বাবে পথ হ'ল <code>{path!s}</code> যিটো উপস্থিত নাই।"
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "গন্তব্য সেৱা উপস্থিত নাই।"
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr "{name!s}ৰ বাবে পথ হ'ল <code>{path!s}</code> যিটো উপস্থিত নাই।"
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr "Plymouth theme কন্ফিগাৰ কৰি আছে।​"
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "পেকেজ ইন্স্তল কৰক।"
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "(%(count)d / %(total)d) পেকেজবোৰ সংশোধন কৰি আছে"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "Installing one package."
msgstr[1] "%(num)d পেকেজবোৰ ইনস্তল হৈ আছে।"
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Removing one package."
msgstr[1] "%(num)d পেকেজবোৰ আতৰোৱা হৈ আছে।"
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could not make changes to the installed system. The "
"command <pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "বুতলোডাৰ ইন্স্তল কৰক।"
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "হাৰ্ডৱেৰৰ ঘড়ী চেত্ কৰি আছে।"
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr ""
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr ""
#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50
msgid "The exit code was {}"
msgstr "এক্সিড্ কোড্ আছিল {}"
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr "dracutৰ সৈতে initramfs বনাই আছে।"
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr "গন্তব্য স্থানত dracut চলোৱাত বিফল হ'ল"
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr "initramfs কন্ফিগাৰ কৰি আছে।"
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr "OpenRC dmcrypt সেৱা কন্ফিগাৰ কৰি আছে।"
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr "fstab লিখি আছে।"
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "ডামী Pythonৰ কায্য"
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "ডামী Pythonৰ পদক্ষেপ {}"
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr "স্থানীয়বোৰ কন্ফিগাৰ কৰি আছে।"
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr "নেটৱৰ্ক কন্ফিগাৰ জমা কৰি আছে।"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-07-12 14:14+0200\n"
"POT-Creation-Date: 2021-07-14 12:55+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: enolp <enolp@softastur.org>, 2020\n"
"Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n"
@ -21,280 +21,42 @@ msgstr ""
"Language: ast\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "Instalando'l xestor d'arrinque."
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "Nun pue escribise'l ficheru de configuración de KDM"
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "Nun esiste'l ficheru de configuración de KDM {!s}"
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "Nun pue escribise'l ficheru de configuración de LXDM"
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "Nun esiste'l ficheru de configuración de LXDM {!s}"
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "Nun pue escribise'l ficheru de configuración de LightDM"
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "Nun esiste'l ficheru de configuración de LightDM {!s}"
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "Nun pue configurase LightDM"
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "Nun s'instaló nengún saludador de LightDM."
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "Nun pue escribise'l ficheru de configuración de SLIM"
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "Nun esiste'l ficheru de configuración de SLIM {!s}"
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr "Nun s'esbillaron xestores de pantalles pal módulu displaymanager."
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "La configuración del xestor de pantalles nun se completó"
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr ""
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr "Fallu al executar dracut nel destín"
#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50
msgid "The exit code was {}"
msgstr "El códigu de salida foi {}"
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "Trabayu maniquín en Python."
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "Pasu maniquín {} en Python"
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr ""
#: src/modules/fstab/main.py:355 src/modules/fstab/main.py:361
#: src/modules/fstab/main.py:388 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:135
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/mount/main.py:144
#: src/modules/networkcfg/main.py:39 src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
msgid "Configuration Error"
msgstr ""
#: src/modules/fstab/main.py:356 src/modules/initcpiocfg/main.py:198
#: src/modules/initramfscfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/mount/main.py:145
#: src/modules/openrcdmcryptcfg/main.py:73 src/modules/rawfs/main.py:165
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/fstab/main.py:362 src/modules/initcpiocfg/main.py:202
#: src/modules/initramfscfg/main.py:90 src/modules/localecfg/main.py:136
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/networkcfg/main.py:40 src/modules/openrcdmcryptcfg/main.py:77
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/grubcfg/main.py:28
msgid "Configure GRUB."
msgstr ""
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "Configurando'l reló de hardware."
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr "Configurando mkinitcpio."
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr ""
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr "Configurando locales."
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr "Configurando l'intercambéu cifráu."
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr ""
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr ""
#: src/modules/mount/main.py:30
msgid "Mounting partitions."
msgstr ""
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/rawfs/main.py:164
#: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/fstab/main.py:355
#: src/modules/fstab/main.py:361 src/modules/fstab/main.py:388
#: src/modules/localecfg/main.py:135 src/modules/networkcfg/main.py:39
msgid "Configuration Error"
msgstr ""
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr "Configurando'l serviciu dmcrypt d'OpenRC."
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "Instalación de paquetes."
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "Procesando paquetes (%(count)d / %(total)d)"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "Instalando un paquete."
msgstr[1] "Instalando %(num)d paquetes."
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Desaniciando un paquete."
msgstr[1] "Desaniciando %(num)d paquetes."
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could make changes to the installed system. The command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr ""
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr "Instalando datos."
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr ""
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr "Nun pue amestase'l serviciu {name!s} al nivel d'execución {level!s}."
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr ""
"Nun pue desaniciase'l serviciu {name!s} del nivel d'execución {level!s}."
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:93
#: src/modules/services-systemd/main.py:59
msgid "Cannot modify service"
msgstr "Nun pue modificase'l serviciu"
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "El nivel d'execución de destín nun esiste"
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "El serviciu de destín nun esiste"
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/rawfs/main.py:165
#: src/modules/initramfscfg/main.py:86 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/fstab/main.py:356
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/services-systemd/main.py:26
msgid "Configure systemd services"
msgstr ""
#: src/modules/services-systemd/main.py:59
#: src/modules/services-openrc/main.py:93
msgid "Cannot modify service"
msgstr "Nun pue modificase'l serviciu"
#: src/modules/services-systemd/main.py:60
msgid ""
"<code>systemctl {arg!s}</code> call in chroot returned error code {num!s}."
@ -388,3 +150,243 @@ msgstr ""
#: src/modules/unpackfs/main.py:479
msgid "The destination \"{}\" in the target system is not a directory"
msgstr "El destín «{}» nel sistema de destín nun ye un direutoriu"
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "Nun pue escribise'l ficheru de configuración de KDM"
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "Nun esiste'l ficheru de configuración de KDM {!s}"
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "Nun pue escribise'l ficheru de configuración de LXDM"
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "Nun esiste'l ficheru de configuración de LXDM {!s}"
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "Nun pue escribise'l ficheru de configuración de LightDM"
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "Nun esiste'l ficheru de configuración de LightDM {!s}"
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "Nun pue configurase LightDM"
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "Nun s'instaló nengún saludador de LightDM."
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "Nun pue escribise'l ficheru de configuración de SLIM"
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "Nun esiste'l ficheru de configuración de SLIM {!s}"
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr "Nun s'esbillaron xestores de pantalles pal módulu displaymanager."
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "La configuración del xestor de pantalles nun se completó"
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr "Configurando mkinitcpio."
#: src/modules/initcpiocfg/main.py:202
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/initramfscfg/main.py:90 src/modules/openrcdmcryptcfg/main.py:77
#: src/modules/fstab/main.py:362 src/modules/localecfg/main.py:136
#: src/modules/networkcfg/main.py:40
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr "Configurando l'intercambéu cifráu."
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr "Instalando datos."
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr ""
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr "Nun pue amestase'l serviciu {name!s} al nivel d'execución {level!s}."
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr ""
"Nun pue desaniciase'l serviciu {name!s} del nivel d'execución {level!s}."
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "El nivel d'execución de destín nun esiste"
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "El serviciu de destín nun esiste"
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr ""
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "Instalación de paquetes."
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "Procesando paquetes (%(count)d / %(total)d)"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "Instalando un paquete."
msgstr[1] "Instalando %(num)d paquetes."
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Desaniciando un paquete."
msgstr[1] "Desaniciando %(num)d paquetes."
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could not make changes to the installed system. The "
"command <pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "Instalando'l xestor d'arrinque."
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "Configurando'l reló de hardware."
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr ""
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr ""
#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50
msgid "The exit code was {}"
msgstr "El códigu de salida foi {}"
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr ""
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr "Fallu al executar dracut nel destín"
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr ""
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr "Configurando'l serviciu dmcrypt d'OpenRC."
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr ""
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "Trabayu maniquín en Python."
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "Pasu maniquín {} en Python"
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr "Configurando locales."
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr ""

View File

@ -4,16 +4,16 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# xxmn77 <xxmn77@gmail.com>, 2020
# Xəyyam Qocayev <xxmn77@gmail.com>, 2021
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-07-12 14:14+0200\n"
"POT-Creation-Date: 2021-07-14 12:55+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: xxmn77 <xxmn77@gmail.com>, 2020\n"
"Last-Translator: Xəyyam Qocayev <xxmn77@gmail.com>, 2021\n"
"Language-Team: Azerbaijani (https://www.transifex.com/calamares/teams/20061/az/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -21,287 +21,42 @@ msgstr ""
"Language: az\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "Önyükləyici qurulur."
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "KDM tənzimləmə faylı yazıla bilmir"
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "KDM tənzimləmə faylı {!s} mövcud deyil"
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "LXDM tənzimləmə faylı yazıla bilmir"
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "LXDM tənzimləmə faylı {!s} mövcud deyil"
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "LightDM tənzimləmə faylı yazıla bilmir"
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "LightDM tənzimləmə faylı {!s} mövcud deyil"
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "LightDM tənzimlənə bilmir"
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "LightDM qarşılama quraşdırılmayıb."
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "SLİM tənzimləmə faylı yazıla bilmir"
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "SLİM tənzimləmə faylı {!s} mövcud deyil"
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr "displaymanager modulu üçün ekran menecerləri seçilməyib."
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
"Ekran menecerləri siyahısı həm qlobal yaddaşda, həm də displaymanager.conf-"
"da boşdur və ya təyin olunmamışdır."
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "Ekran meneceri tənzimləmələri başa çatmadı"
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr "Dracut ilə initramfs yaratmaq."
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr "Hədəfdə dracut başladılmadı"
#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50
msgid "The exit code was {}"
msgstr "Çıxış kodu {} idi"
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "Dummy python işi."
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "{} Dummy python addımı"
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr "fstab yazılır."
#: src/modules/fstab/main.py:355 src/modules/fstab/main.py:361
#: src/modules/fstab/main.py:388 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:135
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/mount/main.py:144
#: src/modules/networkcfg/main.py:39 src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
msgid "Configuration Error"
msgstr "Tənzimləmə xətası"
#: src/modules/fstab/main.py:356 src/modules/initcpiocfg/main.py:198
#: src/modules/initramfscfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/mount/main.py:145
#: src/modules/openrcdmcryptcfg/main.py:73 src/modules/rawfs/main.py:165
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "<pre>{!s}</pre> istifadə etmək üçün bölmələr təyin edilməyib"
#: src/modules/fstab/main.py:362 src/modules/initcpiocfg/main.py:202
#: src/modules/initramfscfg/main.py:90 src/modules/localecfg/main.py:136
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/networkcfg/main.py:40 src/modules/openrcdmcryptcfg/main.py:77
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr ""
"<pre>{!s}</pre> istifadə etmək üçün kök qoşulma nöqtəsi təyin edilməyib."
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/grubcfg/main.py:28
msgid "Configure GRUB."
msgstr "GRUB tənzimləmələri"
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "Aparat saatını ayarlamaq."
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr "mkinitcpio tənzimlənir."
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr "initramfs tənzimlənir."
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr "Lokallaşma tənzimlənir."
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr "Çifrələnmiş mübadilə sahəsi - swap tənzimlənir."
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr "mkinitfs ilə initramfs yaradılır"
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr "Hədəfdə mkinitfs başlatmaq baş tutmadı"
#: src/modules/mount/main.py:30
msgid "Mounting partitions."
msgstr "Disk bölmələri qoşulur."
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr "Şəbəkə ayarları saxlanılır."
#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/rawfs/main.py:164
#: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/fstab/main.py:355
#: src/modules/fstab/main.py:361 src/modules/fstab/main.py:388
#: src/modules/localecfg/main.py:135 src/modules/networkcfg/main.py:39
msgid "Configuration Error"
msgstr "Tənzimləmə xətası"
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr "OpenRC dmcrypt xidməti tənzimlənir."
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "Paketləri quraşdırmaq."
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "(%(count)d / %(total)d) paketləri işlənir"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "Bir paket quraşdırılır."
msgstr[1] "%(num)d paket quraşdırılır."
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Bir paket silinir"
msgstr[1] "%(num)d paket silinir."
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could make changes to the installed system. The command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr "Plymouth mövzusu tənzimlənməsi"
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr "Quraşdırılma tarixi."
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr "OpenRC xidmətlərini tənzimləmək"
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr "{name!s} xidməti {level!s} işləmə səviyyəsinə əlavə edilə bilmir."
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr "{name!s} xidməti {level!s} iş səviyyəsindən silinə bilmir."
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
"{level!s} işləmə səviyyəsindəki {name!s} xidməti üçün naməlum "
"<code>{arg!s}</code> xidmət fəaliyyəti."
#: src/modules/services-openrc/main.py:93
#: src/modules/services-systemd/main.py:59
msgid "Cannot modify service"
msgstr "Xidmətdə dəyişiklik etmək mümkün olmadı"
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
"<code>rc-update {arg!s}</code> chroot-da çağırışına {num!s} xəta kodu ilə "
"cavab verildi."
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "Hədəf işləmə səviyyəsi mövcud deyil"
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"{level!s} işləmə səviyyəsi üçün <code>{path!s}</code> yolu mövcud deyil."
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "Hədəf xidməti mövcud deyil"
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr "{name!s} üçün <code>{path!s}</code> yolu mövcud deyil."
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/rawfs/main.py:165
#: src/modules/initramfscfg/main.py:86 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/fstab/main.py:356
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "<pre>{!s}</pre> istifadə etmək üçün bölmələr təyin edilməyib"
#: src/modules/services-systemd/main.py:26
msgid "Configure systemd services"
msgstr "Systemd xidmətini tənzimləmək"
#: src/modules/services-systemd/main.py:59
#: src/modules/services-openrc/main.py:93
msgid "Cannot modify service"
msgstr "Xidmətdə dəyişiklik etmək mümkün olmadı"
#: src/modules/services-systemd/main.py:60
msgid ""
"<code>systemctl {arg!s}</code> call in chroot returned error code {num!s}."
@ -401,3 +156,260 @@ msgstr ""
#: src/modules/unpackfs/main.py:479
msgid "The destination \"{}\" in the target system is not a directory"
msgstr "Hədəf sistemində təyin edilən \"{}\", qovluq deyil"
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "KDM tənzimləmə faylı yazıla bilmir"
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "KDM tənzimləmə faylı {!s} mövcud deyil"
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "LXDM tənzimləmə faylı yazıla bilmir"
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "LXDM tənzimləmə faylı {!s} mövcud deyil"
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "LightDM tənzimləmə faylı yazıla bilmir"
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "LightDM tənzimləmə faylı {!s} mövcud deyil"
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "LightDM tənzimlənə bilmir"
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "LightDM qarşılama quraşdırılmayıb."
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "SLİM tənzimləmə faylı yazıla bilmir"
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "SLİM tənzimləmə faylı {!s} mövcud deyil"
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr "displaymanager modulu üçün ekran menecerləri seçilməyib."
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
"Ekran menecerləri siyahısı həm qlobal yaddaşda, həm də displaymanager.conf-"
"da boşdur və ya təyin olunmamışdır."
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "Ekran meneceri tənzimləmələri başa çatmadı"
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr "mkinitcpio tənzimlənir."
#: src/modules/initcpiocfg/main.py:202
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/initramfscfg/main.py:90 src/modules/openrcdmcryptcfg/main.py:77
#: src/modules/fstab/main.py:362 src/modules/localecfg/main.py:136
#: src/modules/networkcfg/main.py:40
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr ""
"<pre>{!s}</pre> istifadə etmək üçün kök qoşulma nöqtəsi təyin edilməyib."
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr "Çifrələnmiş mübadilə sahəsi - swap tənzimlənir."
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr "Quraşdırılma tarixi."
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr "OpenRC xidmətlərini tənzimləmək"
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr "{name!s} xidməti {level!s} işləmə səviyyəsinə əlavə edilə bilmir."
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr "{name!s} xidməti {level!s} iş səviyyəsindən silinə bilmir."
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
"{level!s} işləmə səviyyəsindəki {name!s} xidməti üçün naməlum "
"<code>{arg!s}</code> xidmət fəaliyyəti."
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
"<code>rc-update {arg!s}</code> chroot-da çağırışına {num!s} xəta kodu ilə "
"cavab verildi."
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "Hədəf işləmə səviyyəsi mövcud deyil"
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"{level!s} işləmə səviyyəsi üçün <code>{path!s}</code> yolu mövcud deyil."
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "Hədəf xidməti mövcud deyil"
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr "{name!s} üçün <code>{path!s}</code> yolu mövcud deyil."
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr "Plymouth mövzusu tənzimlənməsi"
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "Paketləri quraşdırmaq."
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "(%(count)d / %(total)d) paketləri işlənir"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "Bir paket quraşdırılır."
msgstr[1] "%(num)d paket quraşdırılır."
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Bir paket silinir"
msgstr[1] "%(num)d paket silinir."
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr "Paket meneceri xətası"
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
"Bu paket meneceri yenilənmələri hazırlaya bilmədi. <pre>{!s}</pre> əmri xəta"
" kodu {!s} ilə cavab verdi."
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
"Paket meneceri sistemi yeniləyə bimədi. <pre>{!s}</pre> əmri xəta kodu {!s} "
"ilə cavab verdi."
#: src/modules/packages/main.py:629
msgid ""
"The package manager could not make changes to the installed system. The "
"command <pre>{!s}</pre> returned error code {!s}."
msgstr ""
"Paket meneceri dəyişiklikləri sistemə tətbiq edə bilmədi. <pre>{!s}</pre> "
"əmri xəta kodu {!s} ilə cavab verdi."
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "Önyükləyici qurulur."
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr "Önyükləyicinin quraşdırılmasında xəta"
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
"Önyükləyici quraşdırıla bilmədi. Quraşdırma əmri <pre>{!s}</pre>, xəta kodu "
"{!s} ilə cavab verdi."
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "Aparat saatını ayarlamaq."
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr "mkinitfs ilə initramfs yaradılır"
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr "Hədəfdə mkinitfs başlatmaq baş tutmadı"
#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50
msgid "The exit code was {}"
msgstr "Çıxış kodu {} idi"
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr "Dracut ilə initramfs yaratmaq."
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr "Hədəfdə dracut başladılmadı"
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr "initramfs tənzimlənir."
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr "OpenRC dmcrypt xidməti tənzimlənir."
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr "fstab yazılır."
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
"İstifadə etmək üçün, <pre>{!s}</pre> tənzimləməsi, <pre>{!s}</pre> üçün "
"göstərilməyib."
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "Dummy python işi."
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "{} Dummy python addımı"
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr "Lokallaşma tənzimlənir."
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr "Şəbəkə ayarları saxlanılır."

View File

@ -4,16 +4,16 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# xxmn77 <xxmn77@gmail.com>, 2020
# Xəyyam Qocayev <xxmn77@gmail.com>, 2021
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-07-12 14:14+0200\n"
"POT-Creation-Date: 2021-07-14 12:55+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: xxmn77 <xxmn77@gmail.com>, 2020\n"
"Last-Translator: Xəyyam Qocayev <xxmn77@gmail.com>, 2021\n"
"Language-Team: Azerbaijani (Azerbaijan) (https://www.transifex.com/calamares/teams/20061/az_AZ/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -21,287 +21,42 @@ msgstr ""
"Language: az_AZ\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "Önyükləyici qurulur."
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "KDM tənzimləmə faylı yazıla bilmir"
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "KDM tənzimləmə faylı {!s} mövcud deyil"
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "LXDM tənzimləmə faylı yazıla bilmir"
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "LXDM tənzimləmə faylı {!s} mövcud deyil"
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "LightDM tənzimləmə faylı yazıla bilmir"
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "LightDM tənzimləmə faylı {!s} mövcud deyil"
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "LightDM tənzimlənə bilmir"
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "LightDM qarşılama quraşdırılmayıb."
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "SLİM tənzimləmə faylı yazıla bilmir"
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "SLİM tənzimləmə faylı {!s} mövcud deyil"
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr "displaymanager modulu üçün ekran menecerləri seçilməyib."
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
"Ekran menecerləri siyahısı həm qlobal yaddaşda, həm də displaymanager.conf-"
"da boşdur və ya təyin olunmamışdır."
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "Ekran meneceri tənzimləmələri başa çatmadı"
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr "Dracut ilə initramfs yaratmaq."
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr "Hədəfdə dracut başladılmadı"
#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50
msgid "The exit code was {}"
msgstr "Çıxış kodu {} idi"
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "Dummy python işi."
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "{} Dummy python addımı"
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr "fstab yazılır."
#: src/modules/fstab/main.py:355 src/modules/fstab/main.py:361
#: src/modules/fstab/main.py:388 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:135
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/mount/main.py:144
#: src/modules/networkcfg/main.py:39 src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
msgid "Configuration Error"
msgstr "Tənzimləmə xətası"
#: src/modules/fstab/main.py:356 src/modules/initcpiocfg/main.py:198
#: src/modules/initramfscfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/mount/main.py:145
#: src/modules/openrcdmcryptcfg/main.py:73 src/modules/rawfs/main.py:165
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "<pre>{!s}</pre> istifadə etmək üçün bölmələr təyin edilməyib"
#: src/modules/fstab/main.py:362 src/modules/initcpiocfg/main.py:202
#: src/modules/initramfscfg/main.py:90 src/modules/localecfg/main.py:136
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/networkcfg/main.py:40 src/modules/openrcdmcryptcfg/main.py:77
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr ""
"<pre>{!s}</pre> istifadə etmək üçün kök qoşulma nöqtəsi təyin edilməyib."
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/grubcfg/main.py:28
msgid "Configure GRUB."
msgstr "GRUB tənzimləmələri"
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "Aparat saatını ayarlamaq."
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr "mkinitcpio tənzimlənir."
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr "initramfs tənzimlənir."
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr "Lokallaşma tənzimlənir."
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr "Çifrələnmiş mübadilə sahəsi - swap tənzimlənir."
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr "mkinitfs ilə initramfs yaradılır"
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr "Hədəfdə mkinitfs başlatmaq baş tutmadı"
#: src/modules/mount/main.py:30
msgid "Mounting partitions."
msgstr "Disk bölmələri qoşulur."
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr "Şəbəkə ayarları saxlanılır."
#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/rawfs/main.py:164
#: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/fstab/main.py:355
#: src/modules/fstab/main.py:361 src/modules/fstab/main.py:388
#: src/modules/localecfg/main.py:135 src/modules/networkcfg/main.py:39
msgid "Configuration Error"
msgstr "Tənzimləmə xətası"
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr "OpenRC dmcrypt xidməti tənzimlənir."
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "Paketləri quraşdırmaq."
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "(%(count)d / %(total)d) paketləri işlənir"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "Bir paket quraşdırılır."
msgstr[1] "%(num)d paket quraşdırılır."
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Bir paket silinir"
msgstr[1] "%(num)d paket silinir."
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could make changes to the installed system. The command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr "Plymouth mövzusu tənzimlənməsi"
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr "Quraşdırılma tarixi."
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr "OpenRC xidmətlərini tənzimləmək"
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr "{name!s} xidməti {level!s} işləmə səviyyəsinə əlavə edilə bilmir."
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr "{name!s} xidməti {level!s} iş səviyyəsindən silinə bilmir."
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
"{level!s} işləmə səviyyəsindəki {name!s} xidməti üçün naməlum "
"<code>{arg!s}</code> xidmət fəaliyyəti."
#: src/modules/services-openrc/main.py:93
#: src/modules/services-systemd/main.py:59
msgid "Cannot modify service"
msgstr "Xidmətdə dəyişiklik etmək mümkün olmadı"
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
"<code>rc-update {arg!s}</code> chroot-da çağırışına {num!s} xəta kodu ilə "
"cavab verildi."
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "Hədəf işləmə səviyyəsi mövcud deyil"
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"{level!s} işləmə səviyyəsi üçün <code>{path!s}</code> yolu mövcud deyil."
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "Hədəf xidməti mövcud deyil"
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr "{name!s} üçün <code>{path!s}</code> yolu mövcud deyil."
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/rawfs/main.py:165
#: src/modules/initramfscfg/main.py:86 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/fstab/main.py:356
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "<pre>{!s}</pre> istifadə etmək üçün bölmələr təyin edilməyib"
#: src/modules/services-systemd/main.py:26
msgid "Configure systemd services"
msgstr "Systemd xidmətini tənzimləmək"
#: src/modules/services-systemd/main.py:59
#: src/modules/services-openrc/main.py:93
msgid "Cannot modify service"
msgstr "Xidmətdə dəyişiklik etmək mümkün olmadı"
#: src/modules/services-systemd/main.py:60
msgid ""
"<code>systemctl {arg!s}</code> call in chroot returned error code {num!s}."
@ -401,3 +156,260 @@ msgstr ""
#: src/modules/unpackfs/main.py:479
msgid "The destination \"{}\" in the target system is not a directory"
msgstr "Hədəf sistemində təyin edilən \"{}\", qovluq deyil"
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "KDM tənzimləmə faylı yazıla bilmir"
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "KDM tənzimləmə faylı {!s} mövcud deyil"
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "LXDM tənzimləmə faylı yazıla bilmir"
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "LXDM tənzimləmə faylı {!s} mövcud deyil"
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "LightDM tənzimləmə faylı yazıla bilmir"
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "LightDM tənzimləmə faylı {!s} mövcud deyil"
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "LightDM tənzimlənə bilmir"
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "LightDM qarşılama quraşdırılmayıb."
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "SLİM tənzimləmə faylı yazıla bilmir"
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "SLİM tənzimləmə faylı {!s} mövcud deyil"
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr "displaymanager modulu üçün ekran menecerləri seçilməyib."
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
"Ekran menecerləri siyahısı həm qlobal yaddaşda, həm də displaymanager.conf-"
"da boşdur və ya təyin olunmamışdır."
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "Ekran meneceri tənzimləmələri başa çatmadı"
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr "mkinitcpio tənzimlənir."
#: src/modules/initcpiocfg/main.py:202
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/initramfscfg/main.py:90 src/modules/openrcdmcryptcfg/main.py:77
#: src/modules/fstab/main.py:362 src/modules/localecfg/main.py:136
#: src/modules/networkcfg/main.py:40
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr ""
"<pre>{!s}</pre> istifadə etmək üçün kök qoşulma nöqtəsi təyin edilməyib."
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr "Çifrələnmiş mübadilə sahəsi - swap tənzimlənir."
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr "Quraşdırılma tarixi."
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr "OpenRC xidmətlərini tənzimləmək"
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr "{name!s} xidməti {level!s} işləmə səviyyəsinə əlavə edilə bilmir."
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr "{name!s} xidməti {level!s} iş səviyyəsindən silinə bilmir."
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
"{level!s} işləmə səviyyəsindəki {name!s} xidməti üçün naməlum "
"<code>{arg!s}</code> xidmət fəaliyyəti."
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
"<code>rc-update {arg!s}</code> chroot-da çağırışına {num!s} xəta kodu ilə "
"cavab verildi."
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "Hədəf işləmə səviyyəsi mövcud deyil"
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"{level!s} işləmə səviyyəsi üçün <code>{path!s}</code> yolu mövcud deyil."
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "Hədəf xidməti mövcud deyil"
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr "{name!s} üçün <code>{path!s}</code> yolu mövcud deyil."
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr "Plymouth mövzusu tənzimlənməsi"
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "Paketləri quraşdırmaq."
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "(%(count)d / %(total)d) paketləri işlənir"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "Bir paket quraşdırılır."
msgstr[1] "%(num)d paket quraşdırılır."
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Bir paket silinir"
msgstr[1] "%(num)d paket silinir."
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr "Paket meneceri xətası"
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
"Bu paket meneceri yenilənmələri hazırlaya bilmədi. <pre>{!s}</pre> əmri xəta"
" kodu {!s} ilə cavab verdi."
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
"Paket meneceri sistemi yeniləyə bimədi. <pre>{!s}</pre> əmri xəta kodu {!s} "
"ilə cavab verdi."
#: src/modules/packages/main.py:629
msgid ""
"The package manager could not make changes to the installed system. The "
"command <pre>{!s}</pre> returned error code {!s}."
msgstr ""
"Paket meneceri dəyişiklikləri sistemə tətbiq edə bilmədi. <pre>{!s}</pre> "
"əmri xəta kodu {!s} ilə cavab verdi."
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "Önyükləyici qurulur."
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr "Önyükləyicinin quraşdırılmasında xəta"
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
"Önyükləyici quraşdırıla bilmədi. Quraşdırma əmri <pre>{!s}</pre>, xəta kodu "
"{!s} ilə cavab verdi."
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "Aparat saatını ayarlamaq."
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr "mkinitfs ilə initramfs yaradılır"
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr "Hədəfdə mkinitfs başlatmaq baş tutmadı"
#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50
msgid "The exit code was {}"
msgstr "Çıxış kodu {} idi"
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr "Dracut ilə initramfs yaratmaq."
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr "Hədəfdə dracut başladılmadı"
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr "initramfs tənzimlənir."
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr "OpenRC dmcrypt xidməti tənzimlənir."
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr "fstab yazılır."
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
"İstifadə etmək üçün, <pre>{!s}</pre> tənzimləməsi, <pre>{!s}</pre> üçün "
"göstərilməyib."
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "Dummy python işi."
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "{} Dummy python addımı"
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr "Lokallaşma tənzimlənir."
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr "Şəbəkə ayarları saxlanılır."

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-07-12 14:14+0200\n"
"POT-Creation-Date: 2021-07-14 12:55+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Źmicier Turok <nashtlumach@gmail.com>, 2020\n"
"Language-Team: Belarusian (https://www.transifex.com/calamares/teams/20061/be/)\n"
@ -21,288 +21,42 @@ msgstr ""
"Language: be\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "Усталяваць загрузчык."
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "Немагчыма запісаць файл канфігурацыі KDM"
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "Файл канфігурацыі KDM {!s} не існуе"
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "Немагчыма запісаць файл канфігурацыі LXDM"
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "Файл канфігурацыі LXDM {!s} не існуе"
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "Немагчыма запісаць файл канфігурацыі LightDM"
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "Файл канфігурацыі LightDM {!s} не існуе"
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "Немагчыма наладзіць LightDM"
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "LightDM greeter не ўсталяваны."
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "Немагчыма запісаць файл канфігурацыі SLIM"
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "Файл канфігурацыі SLIM {!s} не існуе"
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr "У модулі дысплейных кіраўнікоў нічога не абрана."
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
"Спіс дысплейных кіраўнікоў пусты альбо не вызначаны ў both globalstorage і "
"displaymanager.conf."
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "Наладка дысплейнага кіраўніка не завершаная."
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr "Стварэнне initramfs з dracut."
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr "Не атрымалася запусціць dracut у пункце прызначэння"
#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50
msgid "The exit code was {}"
msgstr "Код выхаду {}"
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "Задача Dummy python."
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "Крок Dummy python {}"
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr "Запіс fstab."
#: src/modules/fstab/main.py:355 src/modules/fstab/main.py:361
#: src/modules/fstab/main.py:388 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:135
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/mount/main.py:144
#: src/modules/networkcfg/main.py:39 src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
msgid "Configuration Error"
msgstr "Памылка канфігурацыі"
#: src/modules/fstab/main.py:356 src/modules/initcpiocfg/main.py:198
#: src/modules/initramfscfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/mount/main.py:145
#: src/modules/openrcdmcryptcfg/main.py:73 src/modules/rawfs/main.py:165
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "Раздзелы для <pre>{!s}</pre> не вызначаныя."
#: src/modules/fstab/main.py:362 src/modules/initcpiocfg/main.py:202
#: src/modules/initramfscfg/main.py:90 src/modules/localecfg/main.py:136
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/networkcfg/main.py:40 src/modules/openrcdmcryptcfg/main.py:77
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr "Каранёвы пункт мантавання для<pre>{!s}</pre> не пададзены."
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/grubcfg/main.py:28
msgid "Configure GRUB."
msgstr "Наладзіць GRUB."
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "Наладка апаратнага гадзінніка."
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr "Наладка mkinitcpio."
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr "Наладка initramfs."
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr "Наладка лакаляў."
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr "Наладка зашыфраванага swap."
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr "Стварэнне initramfs праз mkinitfs."
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr "Не атрымалася запусціць mkinitfs у пункце прызначэння"
#: src/modules/mount/main.py:30
msgid "Mounting partitions."
msgstr "Мантаванне раздзелаў."
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr "Захаванне сеткавай канфігурацыі."
#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/rawfs/main.py:164
#: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/fstab/main.py:355
#: src/modules/fstab/main.py:361 src/modules/fstab/main.py:388
#: src/modules/localecfg/main.py:135 src/modules/networkcfg/main.py:39
msgid "Configuration Error"
msgstr "Памылка канфігурацыі"
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr "Наладка OpenRC dmcrypt."
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "Усталяваць пакункі."
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "Апрацоўка пакункаў (%(count)d / %(total)d)"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "Усталёўка аднаго пакунка."
msgstr[1] "Усталёўка %(num)d пакункаў."
msgstr[2] "Усталёўка %(num)d пакункаў."
msgstr[3] "Усталёўка%(num)d пакункаў."
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Выдаленне аднаго пакунка."
msgstr[1] "Выдаленне %(num)d пакункаў."
msgstr[2] "Выдаленне %(num)d пакункаў."
msgstr[3] "Выдаленне %(num)d пакункаў."
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could make changes to the installed system. The command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr "Наладзіць тэму Plymouth"
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr "Усталёўка даных."
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr "Наладзіць службы OpenRC"
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr "Не атрымалася дадаць службу {name!s} на ўзровень запуску {level!s}."
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr "Не атрымалася выдаліць службу {name!s} з узроўню запуску {level!s}."
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
"Невядомае дзеянне <code>{arg!s}</code> для службы {name!s} на ўзроўні "
"запуску {level!s}."
#: src/modules/services-openrc/main.py:93
#: src/modules/services-systemd/main.py:59
msgid "Cannot modify service"
msgstr "Немагчыма наладзіць службу"
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
"<code>rc-update {arg!s}</code> пад chroot вярнуўся з кодам памылкі {num!s}."
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "Мэтавы ўзровень запуску не існуе"
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr "Шлях <code>{path!s}</code> да ўзроўня запуску {level!s} не існуе."
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "Мэтавая служба не існуе"
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr "Шлях <code>{path!s}</code> да службы {level!s} не існуе."
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/rawfs/main.py:165
#: src/modules/initramfscfg/main.py:86 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/fstab/main.py:356
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "Раздзелы для <pre>{!s}</pre> не вызначаныя."
#: src/modules/services-systemd/main.py:26
msgid "Configure systemd services"
msgstr "Наладзіць службы systemd"
#: src/modules/services-systemd/main.py:59
#: src/modules/services-openrc/main.py:93
msgid "Cannot modify service"
msgstr "Немагчыма наладзіць службу"
#: src/modules/services-systemd/main.py:60
msgid ""
"<code>systemctl {arg!s}</code> call in chroot returned error code {num!s}."
@ -397,3 +151,251 @@ msgstr ""
#: src/modules/unpackfs/main.py:479
msgid "The destination \"{}\" in the target system is not a directory"
msgstr "Пункт прызначэння \"{}\" у мэтавай сістэме не з’яўляецца каталогам"
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "Немагчыма запісаць файл канфігурацыі KDM"
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "Файл канфігурацыі KDM {!s} не існуе"
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "Немагчыма запісаць файл канфігурацыі LXDM"
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "Файл канфігурацыі LXDM {!s} не існуе"
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "Немагчыма запісаць файл канфігурацыі LightDM"
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "Файл канфігурацыі LightDM {!s} не існуе"
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "Немагчыма наладзіць LightDM"
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "LightDM greeter не ўсталяваны."
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "Немагчыма запісаць файл канфігурацыі SLIM"
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "Файл канфігурацыі SLIM {!s} не існуе"
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr "У модулі дысплейных кіраўнікоў нічога не абрана."
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
"Спіс дысплейных кіраўнікоў пусты альбо не вызначаны ў both globalstorage і "
"displaymanager.conf."
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "Наладка дысплейнага кіраўніка не завершаная."
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr "Наладка mkinitcpio."
#: src/modules/initcpiocfg/main.py:202
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/initramfscfg/main.py:90 src/modules/openrcdmcryptcfg/main.py:77
#: src/modules/fstab/main.py:362 src/modules/localecfg/main.py:136
#: src/modules/networkcfg/main.py:40
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr "Каранёвы пункт мантавання для<pre>{!s}</pre> не пададзены."
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr "Наладка зашыфраванага swap."
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr "Усталёўка даных."
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr "Наладзіць службы OpenRC"
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr "Не атрымалася дадаць службу {name!s} на ўзровень запуску {level!s}."
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr "Не атрымалася выдаліць службу {name!s} з узроўню запуску {level!s}."
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
"Невядомае дзеянне <code>{arg!s}</code> для службы {name!s} на ўзроўні "
"запуску {level!s}."
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
"<code>rc-update {arg!s}</code> пад chroot вярнуўся з кодам памылкі {num!s}."
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "Мэтавы ўзровень запуску не існуе"
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr "Шлях <code>{path!s}</code> да ўзроўня запуску {level!s} не існуе."
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "Мэтавая служба не існуе"
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr "Шлях <code>{path!s}</code> да службы {level!s} не існуе."
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr "Наладзіць тэму Plymouth"
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "Усталяваць пакункі."
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "Апрацоўка пакункаў (%(count)d / %(total)d)"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "Усталёўка аднаго пакунка."
msgstr[1] "Усталёўка %(num)d пакункаў."
msgstr[2] "Усталёўка %(num)d пакункаў."
msgstr[3] "Усталёўка%(num)d пакункаў."
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Выдаленне аднаго пакунка."
msgstr[1] "Выдаленне %(num)d пакункаў."
msgstr[2] "Выдаленне %(num)d пакункаў."
msgstr[3] "Выдаленне %(num)d пакункаў."
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could not make changes to the installed system. The "
"command <pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "Усталяваць загрузчык."
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "Наладка апаратнага гадзінніка."
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr "Стварэнне initramfs праз mkinitfs."
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr "Не атрымалася запусціць mkinitfs у пункце прызначэння"
#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50
msgid "The exit code was {}"
msgstr "Код выхаду {}"
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr "Стварэнне initramfs з dracut."
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr "Не атрымалася запусціць dracut у пункце прызначэння"
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr "Наладка initramfs."
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr "Наладка OpenRC dmcrypt."
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr "Запіс fstab."
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "Задача Dummy python."
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "Крок Dummy python {}"
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr "Наладка лакаляў."
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr "Захаванне сеткавай канфігурацыі."

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-07-12 14:14+0200\n"
"POT-Creation-Date: 2021-07-14 12:55+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Georgi Georgiev (Жоро) <g.georgiev.shumen@gmail.com>, 2020\n"
"Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n"
@ -21,279 +21,42 @@ msgstr ""
"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr ""
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr ""
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr ""
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr ""
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr ""
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr ""
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr ""
#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50
msgid "The exit code was {}"
msgstr ""
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "Фиктивна задача на python."
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "Фиктивна стъпка на python {}"
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr ""
#: src/modules/fstab/main.py:355 src/modules/fstab/main.py:361
#: src/modules/fstab/main.py:388 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:135
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/mount/main.py:144
#: src/modules/networkcfg/main.py:39 src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
msgid "Configuration Error"
msgstr ""
#: src/modules/fstab/main.py:356 src/modules/initcpiocfg/main.py:198
#: src/modules/initramfscfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/mount/main.py:145
#: src/modules/openrcdmcryptcfg/main.py:73 src/modules/rawfs/main.py:165
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/fstab/main.py:362 src/modules/initcpiocfg/main.py:202
#: src/modules/initramfscfg/main.py:90 src/modules/localecfg/main.py:136
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/networkcfg/main.py:40 src/modules/openrcdmcryptcfg/main.py:77
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/grubcfg/main.py:28
msgid "Configure GRUB."
msgstr ""
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr ""
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr ""
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr ""
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr ""
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr ""
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr ""
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr ""
#: src/modules/mount/main.py:30
msgid "Mounting partitions."
msgstr ""
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/rawfs/main.py:164
#: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/fstab/main.py:355
#: src/modules/fstab/main.py:361 src/modules/fstab/main.py:388
#: src/modules/localecfg/main.py:135 src/modules/networkcfg/main.py:39
msgid "Configuration Error"
msgstr ""
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr ""
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "Инсталирай пакетите."
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "Обработване на пакетите (%(count)d / %(total)d)"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "Инсталиране на един пакет."
msgstr[1] "Инсталиране на %(num)d пакети."
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Премахване на един пакет."
msgstr[1] "Премахване на %(num)d пакети."
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could make changes to the installed system. The command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr ""
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr ""
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr ""
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:93
#: src/modules/services-systemd/main.py:59
msgid "Cannot modify service"
msgstr ""
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr ""
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr ""
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/rawfs/main.py:165
#: src/modules/initramfscfg/main.py:86 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/fstab/main.py:356
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/services-systemd/main.py:26
msgid "Configure systemd services"
msgstr ""
#: src/modules/services-systemd/main.py:59
#: src/modules/services-openrc/main.py:93
msgid "Cannot modify service"
msgstr ""
#: src/modules/services-systemd/main.py:60
msgid ""
"<code>systemctl {arg!s}</code> call in chroot returned error code {num!s}."
@ -384,3 +147,242 @@ msgstr ""
#: src/modules/unpackfs/main.py:479
msgid "The destination \"{}\" in the target system is not a directory"
msgstr ""
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr ""
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr ""
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr ""
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr ""
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr ""
#: src/modules/initcpiocfg/main.py:202
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/initramfscfg/main.py:90 src/modules/openrcdmcryptcfg/main.py:77
#: src/modules/fstab/main.py:362 src/modules/localecfg/main.py:136
#: src/modules/networkcfg/main.py:40
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr ""
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr ""
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr ""
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr ""
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr ""
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr ""
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "Инсталирай пакетите."
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "Обработване на пакетите (%(count)d / %(total)d)"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "Инсталиране на един пакет."
msgstr[1] "Инсталиране на %(num)d пакети."
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Премахване на един пакет."
msgstr[1] "Премахване на %(num)d пакети."
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could not make changes to the installed system. The "
"command <pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr ""
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr ""
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr ""
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr ""
#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50
msgid "The exit code was {}"
msgstr ""
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr ""
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr ""
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr ""
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr ""
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr ""
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "Фиктивна задача на python."
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "Фиктивна стъпка на python {}"
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr ""
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr ""

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-07-12 14:14+0200\n"
"POT-Creation-Date: 2021-07-14 12:55+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: 508a8b0ef95404aa3dc5178f0ccada5e_017b8a4 <d0ef5d977ab7abf012ef53891f8ca2b5_900530>, 2020\n"
"Language-Team: Bengali (https://www.transifex.com/calamares/teams/20061/bn/)\n"
@ -21,279 +21,42 @@ msgstr ""
"Language: bn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr ""
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr ""
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr ""
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr ""
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr ""
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr ""
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr ""
#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50
msgid "The exit code was {}"
msgstr ""
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr ""
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr ""
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr ""
#: src/modules/fstab/main.py:355 src/modules/fstab/main.py:361
#: src/modules/fstab/main.py:388 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:135
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/mount/main.py:144
#: src/modules/networkcfg/main.py:39 src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
msgid "Configuration Error"
msgstr "কনফিগারেশন ত্রুটি"
#: src/modules/fstab/main.py:356 src/modules/initcpiocfg/main.py:198
#: src/modules/initramfscfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/mount/main.py:145
#: src/modules/openrcdmcryptcfg/main.py:73 src/modules/rawfs/main.py:165
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "কোন পার্টিশন নির্দিষ্ট করা হয়নি<pre>{!এস}</pre> ব্যবহার করার জন্য।"
#: src/modules/fstab/main.py:362 src/modules/initcpiocfg/main.py:202
#: src/modules/initramfscfg/main.py:90 src/modules/localecfg/main.py:136
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/networkcfg/main.py:40 src/modules/openrcdmcryptcfg/main.py:77
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/grubcfg/main.py:28
msgid "Configure GRUB."
msgstr "কনফিগার করুন জিআরইউবি।"
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr ""
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr ""
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr ""
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr ""
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr ""
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr ""
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr ""
#: src/modules/mount/main.py:30
msgid "Mounting partitions."
msgstr "মাউন্ট করছে পার্টিশনগুলো।"
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr ""
#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/rawfs/main.py:164
#: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/fstab/main.py:355
#: src/modules/fstab/main.py:361 src/modules/fstab/main.py:388
#: src/modules/localecfg/main.py:135 src/modules/networkcfg/main.py:39
msgid "Configuration Error"
msgstr "কনফিগারেশন ত্রুটি"
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr ""
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr ""
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr ""
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] ""
msgstr[1] ""
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] ""
msgstr[1] ""
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could make changes to the installed system. The command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr ""
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr ""
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr ""
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:93
#: src/modules/services-systemd/main.py:59
msgid "Cannot modify service"
msgstr "সেবা পরিবর্তন করতে পারে না"
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr ""
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr ""
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/rawfs/main.py:165
#: src/modules/initramfscfg/main.py:86 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/fstab/main.py:356
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "কোন পার্টিশন নির্দিষ্ট করা হয়নি<pre>{!এস}</pre> ব্যবহার করার জন্য।"
#: src/modules/services-systemd/main.py:26
msgid "Configure systemd services"
msgstr "কনফিগার করুন সিস্টেমডি সেবাগুলি"
#: src/modules/services-systemd/main.py:59
#: src/modules/services-openrc/main.py:93
msgid "Cannot modify service"
msgstr "সেবা পরিবর্তন করতে পারে না"
#: src/modules/services-systemd/main.py:60
msgid ""
"<code>systemctl {arg!s}</code> call in chroot returned error code {num!s}."
@ -385,3 +148,242 @@ msgstr ""
#: src/modules/unpackfs/main.py:479
msgid "The destination \"{}\" in the target system is not a directory"
msgstr ""
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr ""
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr ""
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr ""
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr ""
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr ""
#: src/modules/initcpiocfg/main.py:202
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/initramfscfg/main.py:90 src/modules/openrcdmcryptcfg/main.py:77
#: src/modules/fstab/main.py:362 src/modules/localecfg/main.py:136
#: src/modules/networkcfg/main.py:40
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr ""
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr ""
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr ""
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr ""
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr ""
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr ""
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr ""
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr ""
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] ""
msgstr[1] ""
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] ""
msgstr[1] ""
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could not make changes to the installed system. The "
"command <pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr ""
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr ""
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr ""
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr ""
#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50
msgid "The exit code was {}"
msgstr ""
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr ""
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr ""
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr ""
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr ""
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr ""
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr ""
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr ""
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr ""
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr ""

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-07-12 14:14+0200\n"
"POT-Creation-Date: 2021-07-14 12:55+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Davidmp <medipas@gmail.com>, 2021\n"
"Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n"
@ -21,300 +21,42 @@ msgstr ""
"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "S'instal·la el carregador d'arrencada."
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr "Error d'instal·lació del carregador d'arrencada"
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
"No s'ha pogut instal·lar el carregador d'arrencada. L'ordre d'instal·lació "
"<pre>{!s}</pre>ha retornat el codi d'error {!s}."
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "No es pot escriure el fitxer de configuració del KDM."
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "El fitxer de configuració del KDM {!s} no existeix."
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "No es pot escriure el fitxer de configuració de l'LXDM."
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "El fitxer de configuració de l'LXDM {!s} no existeix."
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "No es pot escriure el fitxer de configuració del LightDM."
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "El fitxer de configuració del LightDM {!s} no existeix."
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "No es pot configurar el LightDM."
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "No hi ha benvinguda instal·lada per al LightDM."
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "No es pot escriure el fitxer de configuració de l'SLIM."
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "El fitxer de configuració de l'SLIM {!s} no existeix."
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr ""
"No hi ha cap gestor de pantalla seleccionat per al mòdul displaymanager."
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
"La llista de gestors de pantalla és buida o no definida ni a globalstorage "
"ni a displaymanager.conf."
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "La configuració del gestor de pantalla no era completa."
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr "Es creen initramfs amb dracut."
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr "Ha fallat executar dracut a la destinació."
#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50
msgid "The exit code was {}"
msgstr "El codi de sortida ha estat {}"
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "Tasca de python fictícia."
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "Pas de python fitctici {}"
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr "S'escriu fstab."
#: src/modules/fstab/main.py:355 src/modules/fstab/main.py:361
#: src/modules/fstab/main.py:388 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:135
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/mount/main.py:144
#: src/modules/networkcfg/main.py:39 src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
msgid "Configuration Error"
msgstr "Error de configuració"
#: src/modules/fstab/main.py:356 src/modules/initcpiocfg/main.py:198
#: src/modules/initramfscfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/mount/main.py:145
#: src/modules/openrcdmcryptcfg/main.py:73 src/modules/rawfs/main.py:165
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "No s'han definit particions perquè les usi <pre>{!s}</pre>."
#: src/modules/fstab/main.py:362 src/modules/initcpiocfg/main.py:202
#: src/modules/initramfscfg/main.py:90 src/modules/localecfg/main.py:136
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/networkcfg/main.py:40 src/modules/openrcdmcryptcfg/main.py:77
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr ""
"No s'ha proporcionat el punt de muntatge perquè l'usi <pre>{!s}</pre>."
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
"No hi ha cap configuració de <pre>{!s}</pre> perquè la usi <pre>{!s}</pre>."
#: src/modules/grubcfg/main.py:28
msgid "Configure GRUB."
msgstr "Configura el GRUB."
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "S'estableix el rellotge del maquinari."
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr "Es configura mkinitcpio."
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr "Es configuren initramfs."
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr "Es configuren les llengües."
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr "Es configura l'intercanvi encriptat."
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr "Es creen initramfs amb mkinitfs."
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr "Ha fallat executar mkinitfs a la destinació."
#: src/modules/mount/main.py:30
msgid "Mounting partitions."
msgstr "Es munten les particions."
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr "Es desa la configuració de la xarxa."
#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/rawfs/main.py:164
#: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/fstab/main.py:355
#: src/modules/fstab/main.py:361 src/modules/fstab/main.py:388
#: src/modules/localecfg/main.py:135 src/modules/networkcfg/main.py:39
msgid "Configuration Error"
msgstr "Error de configuració"
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr "Es configura el sevei OpenRC dmcrypt."
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "Instal·la els paquets."
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "Es processen paquets (%(count)d / %(total)d)"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "S'instal·la un paquet."
msgstr[1] "S'instal·len %(num)d paquets."
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Se suprimeix un paquet."
msgstr[1] "Se suprimeixen %(num)d paquets."
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr "Error del gestor de paquets"
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
"El gestor de paquets no ha pogut preparar les actualitzacions. "
"L'ordre<pre>{!s}</pre> ha retornat el codi d'error {!s}."
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
"El gestor de paquets no ha pogut actualitzar el sistema. L'ordre "
"<pre>{!s}</pre> ha retornat el codi d'error {!s}."
#: src/modules/packages/main.py:629
msgid ""
"The package manager could make changes to the installed system. The command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
"El gestor de paquets podria fer canvis al sistema instal·lat. L'ordre "
"<pre>{!s}</pre> ha retornat el codi d'error {!s}."
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr "Configura el tema del Plymouth"
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr "S'instal·len dades."
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr "Configura els serveis d'OpenRC"
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr "No es pot afegir el servei {name!s} al nivell d'execució {level!s}."
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr ""
"No es pot suprimir el servei {name!s} del nivell d'execució {level!s}."
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
"Servei - acció desconeguda <code>{arg!s}</code> per al servei {name!s} al "
"nivell d'execució {level!s}."
#: src/modules/services-openrc/main.py:93
#: src/modules/services-systemd/main.py:59
msgid "Cannot modify service"
msgstr "No es pot modificar el servei."
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
"La crida de <code>rc-update {arg!s}</code> a chroot ha retornat el codi "
"d'error {num!s}."
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "El nivell d'execució de destinació no existeix."
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"El camí per al nivell d'execució {level!s} és <code>{path!s}</code>, però no"
" existeix."
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "El servei de destinació no existeix."
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"El camí per al servei {name!s} és <code>{path!s}</code>, però no existeix."
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/rawfs/main.py:165
#: src/modules/initramfscfg/main.py:86 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/fstab/main.py:356
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "No s'han definit particions perquè les usi <pre>{!s}</pre>."
#: src/modules/services-systemd/main.py:26
msgid "Configure systemd services"
msgstr "Configura els serveis de systemd"
#: src/modules/services-systemd/main.py:59
#: src/modules/services-openrc/main.py:93
msgid "Cannot modify service"
msgstr "No es pot modificar el servei."
#: src/modules/services-systemd/main.py:60
msgid ""
"<code>systemctl {arg!s}</code> call in chroot returned error code {num!s}."
@ -411,3 +153,263 @@ msgstr ""
#: src/modules/unpackfs/main.py:479
msgid "The destination \"{}\" in the target system is not a directory"
msgstr "La destinació \"{}\" al sistema de destinació no és un directori."
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "No es pot escriure el fitxer de configuració del KDM."
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "El fitxer de configuració del KDM {!s} no existeix."
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "No es pot escriure el fitxer de configuració de l'LXDM."
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "El fitxer de configuració de l'LXDM {!s} no existeix."
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "No es pot escriure el fitxer de configuració del LightDM."
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "El fitxer de configuració del LightDM {!s} no existeix."
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "No es pot configurar el LightDM."
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "No hi ha benvinguda instal·lada per al LightDM."
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "No es pot escriure el fitxer de configuració de l'SLIM."
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "El fitxer de configuració de l'SLIM {!s} no existeix."
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr ""
"No hi ha cap gestor de pantalla seleccionat per al mòdul displaymanager."
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
"La llista de gestors de pantalla és buida o no definida ni a globalstorage "
"ni a displaymanager.conf."
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "La configuració del gestor de pantalla no era completa."
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr "Es configura mkinitcpio."
#: src/modules/initcpiocfg/main.py:202
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/initramfscfg/main.py:90 src/modules/openrcdmcryptcfg/main.py:77
#: src/modules/fstab/main.py:362 src/modules/localecfg/main.py:136
#: src/modules/networkcfg/main.py:40
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr ""
"No s'ha proporcionat el punt de muntatge perquè l'usi <pre>{!s}</pre>."
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr "Es configura l'intercanvi encriptat."
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr "S'instal·len dades."
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr "Configura els serveis d'OpenRC"
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr "No es pot afegir el servei {name!s} al nivell d'execució {level!s}."
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr ""
"No es pot suprimir el servei {name!s} del nivell d'execució {level!s}."
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
"Servei - acció desconeguda <code>{arg!s}</code> per al servei {name!s} al "
"nivell d'execució {level!s}."
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
"La crida de <code>rc-update {arg!s}</code> a chroot ha retornat el codi "
"d'error {num!s}."
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "El nivell d'execució de destinació no existeix."
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"El camí per al nivell d'execució {level!s} és <code>{path!s}</code>, però no"
" existeix."
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "El servei de destinació no existeix."
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"El camí per al servei {name!s} és <code>{path!s}</code>, però no existeix."
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr "Configura el tema del Plymouth"
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "Instal·la els paquets."
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "Es processen paquets (%(count)d / %(total)d)"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "S'instal·la un paquet."
msgstr[1] "S'instal·len %(num)d paquets."
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Se suprimeix un paquet."
msgstr[1] "Se suprimeixen %(num)d paquets."
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr "Error del gestor de paquets"
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
"El gestor de paquets no ha pogut preparar les actualitzacions. "
"L'ordre<pre>{!s}</pre> ha retornat el codi d'error {!s}."
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
"El gestor de paquets no ha pogut actualitzar el sistema. L'ordre "
"<pre>{!s}</pre> ha retornat el codi d'error {!s}."
#: src/modules/packages/main.py:629
msgid ""
"The package manager could not make changes to the installed system. The "
"command <pre>{!s}</pre> returned error code {!s}."
msgstr ""
"El gestor de paquets no ha pogut fer canvis al sistema instal·lat. L'ordre "
"<pre>{!s}</pre> ha retornat el codi d'error {!s}."
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "S'instal·la el carregador d'arrencada."
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr "Error d'instal·lació del carregador d'arrencada"
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
"No s'ha pogut instal·lar el carregador d'arrencada. L'ordre d'instal·lació "
"<pre>{!s}</pre>ha retornat el codi d'error {!s}."
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "S'estableix el rellotge del maquinari."
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr "Es creen initramfs amb mkinitfs."
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr "Ha fallat executar mkinitfs a la destinació."
#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50
msgid "The exit code was {}"
msgstr "El codi de sortida ha estat {}"
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr "Es creen initramfs amb dracut."
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr "Ha fallat executar dracut a la destinació."
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr "Es configuren initramfs."
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr "Es configura el sevei OpenRC dmcrypt."
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr "S'escriu fstab."
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
"No hi ha cap configuració de <pre>{!s}</pre> perquè la usi <pre>{!s}</pre>."
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "Tasca de python fictícia."
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "Pas de python fitctici {}"
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr "Es configuren les llengües."
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr "Es desa la configuració de la xarxa."

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-07-12 14:14+0200\n"
"POT-Creation-Date: 2021-07-14 12:55+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Raul <raurodse@gmail.com>, 2021\n"
"Language-Team: Catalan (Valencian) (https://www.transifex.com/calamares/teams/20061/ca@valencia/)\n"
@ -21,291 +21,42 @@ msgstr ""
"Language: ca@valencia\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "Instal·la el carregador d'arrancada."
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "No es pot escriure el fitxer de configuració del KDM."
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "El fitxer de configuració del KDM {!s} no existeix."
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "No es pot escriure el fitxer de configuració de l'LXDM."
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "El fitxer de configuració de l'LXDM {!s} no existeix."
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "No es pot escriure el fitxer de configuració del LightDM."
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "El fitxer de configuració del LightDM {!s} no existeix."
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "No es pot configurar el LightDM."
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "No hi ha benvinguda instal·lada per al LightDM."
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "No es pot escriure el fitxer de configuració de l'SLIM."
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "El fitxer de configuració de l'SLIM {!s} no existeix."
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr ""
"No hi ha cap gestor de pantalla seleccionat per al mòdul displaymanager."
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
"La llista de gestors de pantalla està buida o no està definida ni en "
"globalstorage ni en displaymanager.conf."
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "La configuració del gestor de pantalla no era completa."
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr "Creació dinitramfs amb dracut."
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr "No sha pogut executar dracut en la destinació."
#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50
msgid "The exit code was {}"
msgstr "El codi d'eixida ha estat {}"
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "Tasca de python de proves."
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "Pas de python de proves {}"
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr "Escriptura dfstab."
#: src/modules/fstab/main.py:355 src/modules/fstab/main.py:361
#: src/modules/fstab/main.py:388 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:135
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/mount/main.py:144
#: src/modules/networkcfg/main.py:39 src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
msgid "Configuration Error"
msgstr "S'ha produït un error en la configuració."
#: src/modules/fstab/main.py:356 src/modules/initcpiocfg/main.py:198
#: src/modules/initramfscfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/mount/main.py:145
#: src/modules/openrcdmcryptcfg/main.py:73 src/modules/rawfs/main.py:165
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "No s'han definit particions perquè les use <pre>{!s}</pre>."
#: src/modules/fstab/main.py:362 src/modules/initcpiocfg/main.py:202
#: src/modules/initramfscfg/main.py:90 src/modules/localecfg/main.py:136
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/networkcfg/main.py:40 src/modules/openrcdmcryptcfg/main.py:77
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr ""
"No s'ha proporcionat el punt de muntatge perquè l'use <pre>{!s}</pre>."
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/grubcfg/main.py:28
msgid "Configure GRUB."
msgstr "Configura el GRUB"
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "Configuració del rellotge del maquinari."
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr "S'està configurant mkinitcpio."
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr "Es configuren initramfs."
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr "Configuració didioma."
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr "Sestà configurant l'intercanvi encriptat."
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr "Creació dinitramfs amb mkinitfs."
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr "No sha pogut executar mkinitfs en la destinació."
#: src/modules/mount/main.py:30
msgid "Mounting partitions."
msgstr "S'estan muntant les particions."
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr "S'està guardant la configuració de la xarxa."
#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/rawfs/main.py:164
#: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/fstab/main.py:355
#: src/modules/fstab/main.py:361 src/modules/fstab/main.py:388
#: src/modules/localecfg/main.py:135 src/modules/networkcfg/main.py:39
msgid "Configuration Error"
msgstr "S'ha produït un error en la configuració."
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr "Configuració del servei OpenRC dmcrypt."
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "Instal·la els paquets."
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "S'estan processant els paquets (%(count)d / %(total)d)"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "S'està instal·lant un paquet."
msgstr[1] "S'està instal·lant %(num)d paquets."
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Sestà eliminant un paquet."
msgstr[1] "Sestà eliminant %(num)d paquets."
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could make changes to the installed system. The command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr "Configura el tema del Plymouth"
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr "S'estan instal·lant les dades."
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr "Configura els serveis d'OpenRC"
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr "No es pot afegir el servei {name!s} al nivell d'execució {level!s}."
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr ""
"No es pot suprimir el servei {name!s} del nivell d'execució {level!s}."
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
"Servei - acció desconeguda <code>{arg!s}</code> per al servei {name!s} al "
"nivell d'execució {level!s}."
#: src/modules/services-openrc/main.py:93
#: src/modules/services-systemd/main.py:59
msgid "Cannot modify service"
msgstr "No es pot modificar el servei."
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
"La crida de <code>rc-update {arg!s}</code> a chroot ha retornat el codi "
"d'error {num!s}."
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "El nivell d'execució de destinació no existeix."
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"El camí per al nivell d'execució {level!s} és <code>{path!s}</code>, però no"
" existeix."
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "El servei de destinació no existeix."
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"El camí per al servei {name!s} és <code>{path!s}</code>, però no existeix."
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/rawfs/main.py:165
#: src/modules/initramfscfg/main.py:86 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/fstab/main.py:356
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "No s'han definit particions perquè les use <pre>{!s}</pre>."
#: src/modules/services-systemd/main.py:26
msgid "Configure systemd services"
msgstr "Configura els serveis de systemd"
#: src/modules/services-systemd/main.py:59
#: src/modules/services-openrc/main.py:93
msgid "Cannot modify service"
msgstr "No es pot modificar el servei."
#: src/modules/services-systemd/main.py:60
msgid ""
"<code>systemctl {arg!s}</code> call in chroot returned error code {num!s}."
@ -404,3 +155,254 @@ msgstr ""
#: src/modules/unpackfs/main.py:479
msgid "The destination \"{}\" in the target system is not a directory"
msgstr "La destinació \"{}\" en el sistema de destinació no és un directori."
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "No es pot escriure el fitxer de configuració del KDM."
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "El fitxer de configuració del KDM {!s} no existeix."
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "No es pot escriure el fitxer de configuració de l'LXDM."
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "El fitxer de configuració de l'LXDM {!s} no existeix."
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "No es pot escriure el fitxer de configuració del LightDM."
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "El fitxer de configuració del LightDM {!s} no existeix."
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "No es pot configurar el LightDM."
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "No hi ha benvinguda instal·lada per al LightDM."
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "No es pot escriure el fitxer de configuració de l'SLIM."
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "El fitxer de configuració de l'SLIM {!s} no existeix."
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr ""
"No hi ha cap gestor de pantalla seleccionat per al mòdul displaymanager."
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
"La llista de gestors de pantalla està buida o no està definida ni en "
"globalstorage ni en displaymanager.conf."
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "La configuració del gestor de pantalla no era completa."
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr "S'està configurant mkinitcpio."
#: src/modules/initcpiocfg/main.py:202
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/initramfscfg/main.py:90 src/modules/openrcdmcryptcfg/main.py:77
#: src/modules/fstab/main.py:362 src/modules/localecfg/main.py:136
#: src/modules/networkcfg/main.py:40
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr ""
"No s'ha proporcionat el punt de muntatge perquè l'use <pre>{!s}</pre>."
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr "Sestà configurant l'intercanvi encriptat."
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr "S'estan instal·lant les dades."
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr "Configura els serveis d'OpenRC"
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr "No es pot afegir el servei {name!s} al nivell d'execució {level!s}."
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr ""
"No es pot suprimir el servei {name!s} del nivell d'execució {level!s}."
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
"Servei - acció desconeguda <code>{arg!s}</code> per al servei {name!s} al "
"nivell d'execució {level!s}."
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
"La crida de <code>rc-update {arg!s}</code> a chroot ha retornat el codi "
"d'error {num!s}."
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "El nivell d'execució de destinació no existeix."
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"El camí per al nivell d'execució {level!s} és <code>{path!s}</code>, però no"
" existeix."
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "El servei de destinació no existeix."
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"El camí per al servei {name!s} és <code>{path!s}</code>, però no existeix."
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr "Configura el tema del Plymouth"
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "Instal·la els paquets."
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "S'estan processant els paquets (%(count)d / %(total)d)"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "S'està instal·lant un paquet."
msgstr[1] "S'està instal·lant %(num)d paquets."
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Sestà eliminant un paquet."
msgstr[1] "Sestà eliminant %(num)d paquets."
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could not make changes to the installed system. The "
"command <pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "Instal·la el carregador d'arrancada."
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "Configuració del rellotge del maquinari."
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr "Creació dinitramfs amb mkinitfs."
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr "No sha pogut executar mkinitfs en la destinació."
#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50
msgid "The exit code was {}"
msgstr "El codi d'eixida ha estat {}"
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr "Creació dinitramfs amb dracut."
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr "No sha pogut executar dracut en la destinació."
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr "Es configuren initramfs."
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr "Configuració del servei OpenRC dmcrypt."
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr "Escriptura dfstab."
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "Tasca de python de proves."
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "Pas de python de proves {}"
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr "Configuració didioma."
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr "S'està guardant la configuració de la xarxa."

View File

@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-07-12 14:14+0200\n"
"POT-Creation-Date: 2021-07-14 12:55+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2020\n"
"Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n"
@ -23,294 +23,42 @@ msgstr ""
"Language: cs_CZ\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "Instalace zavaděče systému."
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "Nedaří se zapsat soubor s nastaveními pro KDM"
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "Soubor s nastaveními pro KDM {!s} neexistuje"
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "Nedaří se zapsat soubor s nastaveními pro LXDM"
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "Soubor s nastaveními pro LXDM {!s} neexistuje"
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "Nedaří se zapsat soubor s nastaveními pro LightDM"
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "Soubor s nastaveními pro LightDM {!s} neexistuje"
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "Nedaří se nastavit LightDM"
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "Není nainstalovaný žádný LightDM přivítač"
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "Nedaří se zapsat soubor s nastaveními pro SLIM"
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "Soubor s nastaveními pro SLIM {!s} neexistuje"
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr "Pro modul správce sezení nejsou vybrány žádní správci sezení."
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
"Seznam správců displejů je prázdný nebo není definován v jak "
"bothglobalstorage, tak v displaymanager.conf."
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "Nastavení správce displeje nebylo úplné"
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr "Vytváření initramfs s dracut."
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr "Na cíli se nepodařilo spustit dracut"
#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50
msgid "The exit code was {}"
msgstr "Návratový kód byl {}"
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "Testovací úloha python."
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "Testovací krok {} python."
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr "Zapisování fstab."
#: src/modules/fstab/main.py:355 src/modules/fstab/main.py:361
#: src/modules/fstab/main.py:388 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:135
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/mount/main.py:144
#: src/modules/networkcfg/main.py:39 src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
msgid "Configuration Error"
msgstr "Chyba nastavení"
#: src/modules/fstab/main.py:356 src/modules/initcpiocfg/main.py:198
#: src/modules/initramfscfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/mount/main.py:145
#: src/modules/openrcdmcryptcfg/main.py:73 src/modules/rawfs/main.py:165
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "Pro <pre>{!s}</pre> nejsou zadány žádné oddíly."
#: src/modules/fstab/main.py:362 src/modules/initcpiocfg/main.py:202
#: src/modules/initramfscfg/main.py:90 src/modules/localecfg/main.py:136
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/networkcfg/main.py:40 src/modules/openrcdmcryptcfg/main.py:77
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr "Pro <pre>{!s}</pre> není zadán žádný přípojný bod."
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/grubcfg/main.py:28
msgid "Configure GRUB."
msgstr "Nastavování zavaděče GRUB."
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "Nastavování hardwarových hodin."
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr "Nastavování mkinitcpio."
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr "Nastavování initramfs."
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr "Nastavování místních a jazykových nastavení."
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr "Nastavování šifrovaného prostoru pro odkládání stránek paměti."
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr "Vytváření initramfs s mkinitfs."
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr "Na cíli se nepodařilo spustit mkinitfs"
#: src/modules/mount/main.py:30
msgid "Mounting partitions."
msgstr "Připojování oddílů."
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr "Ukládání nastavení sítě."
#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/rawfs/main.py:164
#: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/fstab/main.py:355
#: src/modules/fstab/main.py:361 src/modules/fstab/main.py:388
#: src/modules/localecfg/main.py:135 src/modules/networkcfg/main.py:39
msgid "Configuration Error"
msgstr "Chyba nastavení"
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr "Nastavování služby OpenRC dmcrypt."
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "Instalovat balíčky."
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "Zpracovávání balíčků (%(count)d / %(total)d)"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "Je instalován jeden balíček."
msgstr[1] "Jsou instalovány %(num)d balíčky."
msgstr[2] "Je instalováno %(num)d balíčků."
msgstr[3] "Je instalováno %(num)d balíčků."
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Odebírá se jeden balíček."
msgstr[1] "Odebírají se %(num)d balíčky."
msgstr[2] "Odebírá se %(num)d balíčků."
msgstr[3] "Odebírá se %(num)d balíčků."
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could make changes to the installed system. The command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr "Nastavit téma vzhledu pro Plymouth"
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr "Instalace dat."
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr "Nastavit OpenRC služby"
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr ""
"Nedaří se přidat službu {name!s} do úrovně chodu (runlevel) {level!s}."
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr ""
"Nedaří se odebrat službu {name!s} z úrovně chodu (runlevel) {level!s}."
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
"Neznámá akce služby <code>{arg!s}</code> pro službu {name!s} v úrovni chodu "
"(runlevel) {level!s}."
#: src/modules/services-openrc/main.py:93
#: src/modules/services-systemd/main.py:59
msgid "Cannot modify service"
msgstr "Službu se nedaří upravit"
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
"<code>rc-update {arg!s}</code> volání v chroot vrátilo kód chyby {num!s}."
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "Cílová úroveň chodu (runlevel) neexistuje"
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"Popis umístění pro úroveň chodu (runlevel) {level!s} je "
"<code>{path!s}</code>, keterá neexistuje."
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "Cílová služba neexistuje"
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"Popis umístění pro službu {name!s} je <code>{path!s}</code>, která "
"neexistuje."
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/rawfs/main.py:165
#: src/modules/initramfscfg/main.py:86 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/fstab/main.py:356
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "Pro <pre>{!s}</pre> nejsou zadány žádné oddíly."
#: src/modules/services-systemd/main.py:26
msgid "Configure systemd services"
msgstr "Nastavit služby systemd"
#: src/modules/services-systemd/main.py:59
#: src/modules/services-openrc/main.py:93
msgid "Cannot modify service"
msgstr "Službu se nedaří upravit"
#: src/modules/services-systemd/main.py:60
msgid ""
"<code>systemctl {arg!s}</code> call in chroot returned error code {num!s}."
@ -408,3 +156,257 @@ msgstr ""
#: src/modules/unpackfs/main.py:479
msgid "The destination \"{}\" in the target system is not a directory"
msgstr "Cíl „{}“ v cílovém systému není složka"
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "Nedaří se zapsat soubor s nastaveními pro KDM"
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "Soubor s nastaveními pro KDM {!s} neexistuje"
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "Nedaří se zapsat soubor s nastaveními pro LXDM"
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "Soubor s nastaveními pro LXDM {!s} neexistuje"
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "Nedaří se zapsat soubor s nastaveními pro LightDM"
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "Soubor s nastaveními pro LightDM {!s} neexistuje"
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "Nedaří se nastavit LightDM"
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "Není nainstalovaný žádný LightDM přivítač"
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "Nedaří se zapsat soubor s nastaveními pro SLIM"
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "Soubor s nastaveními pro SLIM {!s} neexistuje"
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr "Pro modul správce sezení nejsou vybrány žádní správci sezení."
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
"Seznam správců displejů je prázdný nebo není definován v jak "
"bothglobalstorage, tak v displaymanager.conf."
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "Nastavení správce displeje nebylo úplné"
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr "Nastavování mkinitcpio."
#: src/modules/initcpiocfg/main.py:202
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/initramfscfg/main.py:90 src/modules/openrcdmcryptcfg/main.py:77
#: src/modules/fstab/main.py:362 src/modules/localecfg/main.py:136
#: src/modules/networkcfg/main.py:40
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr "Pro <pre>{!s}</pre> není zadán žádný přípojný bod."
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr "Nastavování šifrovaného prostoru pro odkládání stránek paměti."
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr "Instalace dat."
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr "Nastavit OpenRC služby"
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr ""
"Nedaří se přidat službu {name!s} do úrovně chodu (runlevel) {level!s}."
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr ""
"Nedaří se odebrat službu {name!s} z úrovně chodu (runlevel) {level!s}."
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
"Neznámá akce služby <code>{arg!s}</code> pro službu {name!s} v úrovni chodu "
"(runlevel) {level!s}."
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
"<code>rc-update {arg!s}</code> volání v chroot vrátilo kód chyby {num!s}."
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "Cílová úroveň chodu (runlevel) neexistuje"
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"Popis umístění pro úroveň chodu (runlevel) {level!s} je "
"<code>{path!s}</code>, keterá neexistuje."
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "Cílová služba neexistuje"
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"Popis umístění pro službu {name!s} je <code>{path!s}</code>, která "
"neexistuje."
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr "Nastavit téma vzhledu pro Plymouth"
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "Instalovat balíčky."
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "Zpracovávání balíčků (%(count)d / %(total)d)"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "Je instalován jeden balíček."
msgstr[1] "Jsou instalovány %(num)d balíčky."
msgstr[2] "Je instalováno %(num)d balíčků."
msgstr[3] "Je instalováno %(num)d balíčků."
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Odebírá se jeden balíček."
msgstr[1] "Odebírají se %(num)d balíčky."
msgstr[2] "Odebírá se %(num)d balíčků."
msgstr[3] "Odebírá se %(num)d balíčků."
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could not make changes to the installed system. The "
"command <pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "Instalace zavaděče systému."
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "Nastavování hardwarových hodin."
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr "Vytváření initramfs s mkinitfs."
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr "Na cíli se nepodařilo spustit mkinitfs"
#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50
msgid "The exit code was {}"
msgstr "Návratový kód byl {}"
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr "Vytváření initramfs s dracut."
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr "Na cíli se nepodařilo spustit dracut"
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr "Nastavování initramfs."
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr "Nastavování služby OpenRC dmcrypt."
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr "Zapisování fstab."
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "Testovací úloha python."
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "Testovací krok {} python."
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr "Nastavování místních a jazykových nastavení."
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr "Ukládání nastavení sítě."

View File

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-07-12 14:14+0200\n"
"POT-Creation-Date: 2021-07-14 12:55+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: scootergrisen, 2020\n"
"Language-Team: Danish (https://www.transifex.com/calamares/teams/20061/da/)\n"
@ -22,289 +22,42 @@ msgstr ""
"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "Installér bootloader."
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "Kan ikke skrive KDM-konfigurationsfil"
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "KDM-konfigurationsfil {!s} findes ikke"
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "Kan ikke skrive LXDM-konfigurationsfil"
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "LXDM-konfigurationsfil {!s} findes ikke"
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "Kan ikke skrive LightDM-konfigurationsfil"
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "LightDM-konfigurationsfil {!s} findes ikke"
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "Kan ikke konfigurere LightDM"
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "Der er ikke installeret nogen LightDM greeter."
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "Kan ikke skrive SLIM-konfigurationsfil"
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "SLIM-konfigurationsfil {!s} findes ikke"
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr ""
"Der er ikke valgt nogen displayhåndteringer til displayhåndtering-modulet."
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
"Displayhåndteringerlisten er tom eller udefineret i både globalstorage og "
"displaymanager.conf."
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "Displayhåndtering-konfiguration er ikke komplet"
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr "Opretter initramfs med dracut."
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr "Kunne ikke køre dracut på målet"
#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50
msgid "The exit code was {}"
msgstr "Afslutningskoden var {}"
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "Dummy python-job."
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "Dummy python-trin {}"
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr "Skriver fstab."
#: src/modules/fstab/main.py:355 src/modules/fstab/main.py:361
#: src/modules/fstab/main.py:388 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:135
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/mount/main.py:144
#: src/modules/networkcfg/main.py:39 src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
msgid "Configuration Error"
msgstr "Fejl ved konfiguration"
#: src/modules/fstab/main.py:356 src/modules/initcpiocfg/main.py:198
#: src/modules/initramfscfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/mount/main.py:145
#: src/modules/openrcdmcryptcfg/main.py:73 src/modules/rawfs/main.py:165
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "Der er ikke angivet nogle partitioner som <pre>{!s}</pre> kan bruge."
#: src/modules/fstab/main.py:362 src/modules/initcpiocfg/main.py:202
#: src/modules/initramfscfg/main.py:90 src/modules/localecfg/main.py:136
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/networkcfg/main.py:40 src/modules/openrcdmcryptcfg/main.py:77
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr ""
"Der er ikke angivet noget rodmonteringspunkt som <pre>{!s}</pre> kan bruge."
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/grubcfg/main.py:28
msgid "Configure GRUB."
msgstr "Konfigurer GRUB."
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "Indstiller hardwareur."
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr "Konfigurerer mkinitcpio."
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr "Konfigurerer initramfs."
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr "Konfigurerer lokaliteter."
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr "Konfigurerer krypteret swap."
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr "Opretter initramfs med mkinitfs."
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr "Kunne ikke køre mkinitfs på målet"
#: src/modules/mount/main.py:30
msgid "Mounting partitions."
msgstr "Monterer partitioner."
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr "Gemmer netværkskonfiguration."
#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/rawfs/main.py:164
#: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/fstab/main.py:355
#: src/modules/fstab/main.py:361 src/modules/fstab/main.py:388
#: src/modules/localecfg/main.py:135 src/modules/networkcfg/main.py:39
msgid "Configuration Error"
msgstr "Fejl ved konfiguration"
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr "Konfigurerer OpenRC dmcrypt-tjeneste."
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "Installér pakker."
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "Forarbejder pakker (%(count)d / %(total)d)"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "Installerer én pakke."
msgstr[1] "Installerer %(num)d pakker."
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Fjerner én pakke."
msgstr[1] "Fjerner %(num)d pakker."
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could make changes to the installed system. The command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr "Konfigurer Plymouth-tema"
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr "Installerer data."
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr "Konfigurer OpenRC-tjenester"
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr "Kan ikke tilføje tjenesten {name!s} til kørselsniveauet {level!s}."
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr "Kan ikke fjerne tjenesten {name!s} fra kørselsniveauet {level!s}."
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
"Ukendt tjenestehandling <code>{arg!s}</code> til tjenesten {name!s} i "
"kørselsniveauet {level!s}."
#: src/modules/services-openrc/main.py:93
#: src/modules/services-systemd/main.py:59
msgid "Cannot modify service"
msgstr "Kan ikke redigere tjeneste"
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
"<code>rc-update {arg!s}</code>-kald i chroot returnerede fejlkoden {num!s}."
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "Målkørselsniveau findes ikke"
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"Stien til kørselsniveauet {level!s} er <code>{path!s}</code>, som ikke "
"findes."
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "Måltjenesten findes ikke"
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"Stien til tjenesten {name!s} er <code>{path!s}</code>, som ikke findes."
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/rawfs/main.py:165
#: src/modules/initramfscfg/main.py:86 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/fstab/main.py:356
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "Der er ikke angivet nogle partitioner som <pre>{!s}</pre> kan bruge."
#: src/modules/services-systemd/main.py:26
msgid "Configure systemd services"
msgstr "Konfigurer systemd-tjenester"
#: src/modules/services-systemd/main.py:59
#: src/modules/services-openrc/main.py:93
msgid "Cannot modify service"
msgstr "Kan ikke redigere tjeneste"
#: src/modules/services-systemd/main.py:60
msgid ""
"<code>systemctl {arg!s}</code> call in chroot returned error code {num!s}."
@ -400,3 +153,252 @@ msgstr ""
#: src/modules/unpackfs/main.py:479
msgid "The destination \"{}\" in the target system is not a directory"
msgstr "Destinationen \"{}\" i målsystemet er ikke en mappe"
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "Kan ikke skrive KDM-konfigurationsfil"
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "KDM-konfigurationsfil {!s} findes ikke"
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "Kan ikke skrive LXDM-konfigurationsfil"
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "LXDM-konfigurationsfil {!s} findes ikke"
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "Kan ikke skrive LightDM-konfigurationsfil"
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "LightDM-konfigurationsfil {!s} findes ikke"
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "Kan ikke konfigurere LightDM"
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "Der er ikke installeret nogen LightDM greeter."
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "Kan ikke skrive SLIM-konfigurationsfil"
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "SLIM-konfigurationsfil {!s} findes ikke"
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr ""
"Der er ikke valgt nogen displayhåndteringer til displayhåndtering-modulet."
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
"Displayhåndteringerlisten er tom eller udefineret i både globalstorage og "
"displaymanager.conf."
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "Displayhåndtering-konfiguration er ikke komplet"
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr "Konfigurerer mkinitcpio."
#: src/modules/initcpiocfg/main.py:202
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/initramfscfg/main.py:90 src/modules/openrcdmcryptcfg/main.py:77
#: src/modules/fstab/main.py:362 src/modules/localecfg/main.py:136
#: src/modules/networkcfg/main.py:40
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr ""
"Der er ikke angivet noget rodmonteringspunkt som <pre>{!s}</pre> kan bruge."
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr "Konfigurerer krypteret swap."
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr "Installerer data."
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr "Konfigurer OpenRC-tjenester"
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr "Kan ikke tilføje tjenesten {name!s} til kørselsniveauet {level!s}."
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr "Kan ikke fjerne tjenesten {name!s} fra kørselsniveauet {level!s}."
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
"Ukendt tjenestehandling <code>{arg!s}</code> til tjenesten {name!s} i "
"kørselsniveauet {level!s}."
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
"<code>rc-update {arg!s}</code>-kald i chroot returnerede fejlkoden {num!s}."
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "Målkørselsniveau findes ikke"
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"Stien til kørselsniveauet {level!s} er <code>{path!s}</code>, som ikke "
"findes."
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "Måltjenesten findes ikke"
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"Stien til tjenesten {name!s} er <code>{path!s}</code>, som ikke findes."
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr "Konfigurer Plymouth-tema"
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "Installér pakker."
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "Forarbejder pakker (%(count)d / %(total)d)"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "Installerer én pakke."
msgstr[1] "Installerer %(num)d pakker."
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Fjerner én pakke."
msgstr[1] "Fjerner %(num)d pakker."
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could not make changes to the installed system. The "
"command <pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "Installér bootloader."
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "Indstiller hardwareur."
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr "Opretter initramfs med mkinitfs."
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr "Kunne ikke køre mkinitfs på målet"
#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50
msgid "The exit code was {}"
msgstr "Afslutningskoden var {}"
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr "Opretter initramfs med dracut."
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr "Kunne ikke køre dracut på målet"
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr "Konfigurerer initramfs."
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr "Konfigurerer OpenRC dmcrypt-tjeneste."
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr "Skriver fstab."
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "Dummy python-job."
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "Dummy python-trin {}"
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr "Konfigurerer lokaliteter."
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr "Gemmer netværkskonfiguration."

View File

@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-07-12 14:14+0200\n"
"POT-Creation-Date: 2021-07-14 12:55+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Andreas Eitel <github-aneitel@online.de>, 2020\n"
"Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n"
@ -23,291 +23,42 @@ msgstr ""
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "Installiere Bootloader."
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "Schreiben der KDM-Konfigurationsdatei nicht möglich"
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "KDM-Konfigurationsdatei {!s} existiert nicht"
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "Schreiben der LXDM-Konfigurationsdatei nicht möglich"
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "LXDM-Konfigurationsdatei {!s} existiert nicht"
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "Schreiben der LightDM-Konfigurationsdatei nicht möglich"
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "LightDM-Konfigurationsdatei {!s} existiert nicht"
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "Konfiguration von LightDM ist nicht möglich"
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "Keine Benutzeroberfläche für LightDM installiert."
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "Schreiben der SLIM-Konfigurationsdatei nicht möglich"
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "SLIM-Konfigurationsdatei {!s} existiert nicht"
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr "Keine Displaymanager für das Displaymanager-Modul ausgewählt."
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
"Die Liste der Displaymanager ist leer oder weder in globalstorage noch in "
"displaymanager.conf definiert."
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "Die Konfiguration des Displaymanager war unvollständig."
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr "Erstelle initramfs mit dracut."
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr "Ausführen von dracut auf dem Ziel schlug fehl"
#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50
msgid "The exit code was {}"
msgstr "Der Exit-Code war {}"
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "Dummy Python-Job"
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "Dummy Python-Schritt {}"
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr "Schreibe fstab."
#: src/modules/fstab/main.py:355 src/modules/fstab/main.py:361
#: src/modules/fstab/main.py:388 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:135
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/mount/main.py:144
#: src/modules/networkcfg/main.py:39 src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
msgid "Configuration Error"
msgstr "Konfigurationsfehler"
#: src/modules/fstab/main.py:356 src/modules/initcpiocfg/main.py:198
#: src/modules/initramfscfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/mount/main.py:145
#: src/modules/openrcdmcryptcfg/main.py:73 src/modules/rawfs/main.py:165
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "Für <pre>{!s}</pre> sind keine zu verwendenden Partitionen definiert."
#: src/modules/fstab/main.py:362 src/modules/initcpiocfg/main.py:202
#: src/modules/initramfscfg/main.py:90 src/modules/localecfg/main.py:136
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/networkcfg/main.py:40 src/modules/openrcdmcryptcfg/main.py:77
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr ""
"Für <pre>{!s}</pre> wurde kein Einhängepunkt für die Root-Partition "
"angegeben."
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/grubcfg/main.py:28
msgid "Configure GRUB."
msgstr "GRUB konfigurieren."
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "Einstellen der Hardware-Uhr."
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr "Konfiguriere mkinitcpio. "
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr "Konfiguriere initramfs."
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr "Konfiguriere Lokalisierungen."
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr "Konfiguriere verschlüsselten Auslagerungsspeicher."
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr "Erstelle initramfs mit mkinitfs."
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr "Ausführung von mkinitfs auf dem Ziel fehlgeschlagen."
#: src/modules/mount/main.py:30
msgid "Mounting partitions."
msgstr "Hänge Partitionen ein."
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr "Speichere Netzwerkkonfiguration."
#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/rawfs/main.py:164
#: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/fstab/main.py:355
#: src/modules/fstab/main.py:361 src/modules/fstab/main.py:388
#: src/modules/localecfg/main.py:135 src/modules/networkcfg/main.py:39
msgid "Configuration Error"
msgstr "Konfigurationsfehler"
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr "Konfiguriere den dmcrypt-Dienst von OpenRC."
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "Pakete installieren "
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "Verarbeite Pakete (%(count)d / %(total)d)"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "Installiere ein Paket"
msgstr[1] "Installiere %(num)d Pakete."
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Entferne ein Paket"
msgstr[1] "Entferne %(num)d Pakete."
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could make changes to the installed system. The command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr "Konfiguriere Plymouth-Thema"
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr "Installiere Daten."
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr "Konfiguriere OpenRC-Dienste"
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr "Kann den Dienst {name!s} nicht zu Runlevel {level!s} hinzufügen."
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr "Kann den Dienst {name!s} nicht aus Runlevel {level!s} entfernen."
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
"Unbekannte Aktion <code>{arg!s}</code> für Dienst {name!s} in Runlevel "
"{level!s}."
#: src/modules/services-openrc/main.py:93
#: src/modules/services-systemd/main.py:59
msgid "Cannot modify service"
msgstr "Der Dienst kann nicht geändert werden."
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
"<code>rc-update {arg!s}</code> Aufruf in chroot lieferte Fehlercode {num!s} "
"zurück."
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "Vorgesehenes Runlevel existiert nicht"
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"Der Pfad für Runlevel {level!s} ist <code>{path!s}</code>, welcher nicht "
"existiert."
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "Der vorgesehene Dienst existiert nicht"
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"Der Pfad für den Dienst {name!s} is <code>{path!s}</code>, welcher nicht "
"existiert."
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/rawfs/main.py:165
#: src/modules/initramfscfg/main.py:86 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/fstab/main.py:356
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "Für <pre>{!s}</pre> sind keine zu verwendenden Partitionen definiert."
#: src/modules/services-systemd/main.py:26
msgid "Configure systemd services"
msgstr "Konfiguriere systemd-Dienste"
#: src/modules/services-systemd/main.py:59
#: src/modules/services-openrc/main.py:93
msgid "Cannot modify service"
msgstr "Der Dienst kann nicht geändert werden."
#: src/modules/services-systemd/main.py:60
msgid ""
"<code>systemctl {arg!s}</code> call in chroot returned error code {num!s}."
@ -407,3 +158,254 @@ msgstr ""
#: src/modules/unpackfs/main.py:479
msgid "The destination \"{}\" in the target system is not a directory"
msgstr "Das Ziel \"{}\" im Zielsystem ist kein Verzeichnis"
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr "Schreiben der KDM-Konfigurationsdatei nicht möglich"
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr "KDM-Konfigurationsdatei {!s} existiert nicht"
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr "Schreiben der LXDM-Konfigurationsdatei nicht möglich"
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr "LXDM-Konfigurationsdatei {!s} existiert nicht"
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr "Schreiben der LightDM-Konfigurationsdatei nicht möglich"
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr "LightDM-Konfigurationsdatei {!s} existiert nicht"
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr "Konfiguration von LightDM ist nicht möglich"
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr "Keine Benutzeroberfläche für LightDM installiert."
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr "Schreiben der SLIM-Konfigurationsdatei nicht möglich"
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr "SLIM-Konfigurationsdatei {!s} existiert nicht"
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr "Keine Displaymanager für das Displaymanager-Modul ausgewählt."
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
"Die Liste der Displaymanager ist leer oder weder in globalstorage noch in "
"displaymanager.conf definiert."
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr "Die Konfiguration des Displaymanager war unvollständig."
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr "Konfiguriere mkinitcpio. "
#: src/modules/initcpiocfg/main.py:202
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/initramfscfg/main.py:90 src/modules/openrcdmcryptcfg/main.py:77
#: src/modules/fstab/main.py:362 src/modules/localecfg/main.py:136
#: src/modules/networkcfg/main.py:40
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr ""
"Für <pre>{!s}</pre> wurde kein Einhängepunkt für die Root-Partition "
"angegeben."
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr "Konfiguriere verschlüsselten Auslagerungsspeicher."
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr "Installiere Daten."
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr "Konfiguriere OpenRC-Dienste"
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr "Kann den Dienst {name!s} nicht zu Runlevel {level!s} hinzufügen."
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr "Kann den Dienst {name!s} nicht aus Runlevel {level!s} entfernen."
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
"Unbekannte Aktion <code>{arg!s}</code> für Dienst {name!s} in Runlevel "
"{level!s}."
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
"<code>rc-update {arg!s}</code> Aufruf in chroot lieferte Fehlercode {num!s} "
"zurück."
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr "Vorgesehenes Runlevel existiert nicht"
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"Der Pfad für Runlevel {level!s} ist <code>{path!s}</code>, welcher nicht "
"existiert."
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr "Der vorgesehene Dienst existiert nicht"
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
"Der Pfad für den Dienst {name!s} is <code>{path!s}</code>, welcher nicht "
"existiert."
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr "Konfiguriere Plymouth-Thema"
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "Pakete installieren "
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr "Verarbeite Pakete (%(count)d / %(total)d)"
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "Installiere ein Paket"
msgstr[1] "Installiere %(num)d Pakete."
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "Entferne ein Paket"
msgstr[1] "Entferne %(num)d Pakete."
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could not make changes to the installed system. The "
"command <pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr "Installiere Bootloader."
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr "Einstellen der Hardware-Uhr."
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr "Erstelle initramfs mit mkinitfs."
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr "Ausführung von mkinitfs auf dem Ziel fehlgeschlagen."
#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50
msgid "The exit code was {}"
msgstr "Der Exit-Code war {}"
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr "Erstelle initramfs mit dracut."
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr "Ausführen von dracut auf dem Ziel schlug fehl"
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr "Konfiguriere initramfs."
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr "Konfiguriere den dmcrypt-Dienst von OpenRC."
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr "Schreibe fstab."
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr "Dummy Python-Job"
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr "Dummy Python-Schritt {}"
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr "Konfiguriere Lokalisierungen."
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr "Speichere Netzwerkkonfiguration."

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-07-12 14:14+0200\n"
"POT-Creation-Date: 2021-07-14 12:55+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>, 2017\n"
"Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n"
@ -21,279 +21,42 @@ msgstr ""
"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr ""
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr ""
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr ""
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr ""
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr ""
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr ""
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr ""
#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50
msgid "The exit code was {}"
msgstr ""
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr ""
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr ""
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr ""
#: src/modules/fstab/main.py:355 src/modules/fstab/main.py:361
#: src/modules/fstab/main.py:388 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:135
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/mount/main.py:144
#: src/modules/networkcfg/main.py:39 src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
msgid "Configuration Error"
msgstr ""
#: src/modules/fstab/main.py:356 src/modules/initcpiocfg/main.py:198
#: src/modules/initramfscfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/mount/main.py:145
#: src/modules/openrcdmcryptcfg/main.py:73 src/modules/rawfs/main.py:165
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/fstab/main.py:362 src/modules/initcpiocfg/main.py:202
#: src/modules/initramfscfg/main.py:90 src/modules/localecfg/main.py:136
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/networkcfg/main.py:40 src/modules/openrcdmcryptcfg/main.py:77
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/grubcfg/main.py:28
msgid "Configure GRUB."
msgstr ""
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr ""
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr ""
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr ""
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr ""
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr ""
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr ""
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr ""
#: src/modules/mount/main.py:30
msgid "Mounting partitions."
msgstr ""
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197
#: src/modules/initcpiocfg/main.py:201
#: src/modules/luksopenswaphookcfg/main.py:86
#: src/modules/luksopenswaphookcfg/main.py:90 src/modules/rawfs/main.py:164
#: src/modules/initramfscfg/main.py:85 src/modules/initramfscfg/main.py:89
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/fstab/main.py:355
#: src/modules/fstab/main.py:361 src/modules/fstab/main.py:388
#: src/modules/localecfg/main.py:135 src/modules/networkcfg/main.py:39
msgid "Configuration Error"
msgstr ""
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr ""
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "εγκατάσταση πακέτων."
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr ""
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] ""
msgstr[1] ""
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] ""
msgstr[1] ""
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could make changes to the installed system. The command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr ""
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr ""
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr ""
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:93
#: src/modules/services-systemd/main.py:59
msgid "Cannot modify service"
msgstr ""
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr ""
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr ""
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198
#: src/modules/luksopenswaphookcfg/main.py:87 src/modules/rawfs/main.py:165
#: src/modules/initramfscfg/main.py:86 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/fstab/main.py:356
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/services-systemd/main.py:26
msgid "Configure systemd services"
msgstr ""
#: src/modules/services-systemd/main.py:59
#: src/modules/services-openrc/main.py:93
msgid "Cannot modify service"
msgstr ""
#: src/modules/services-systemd/main.py:60
msgid ""
"<code>systemctl {arg!s}</code> call in chroot returned error code {num!s}."
@ -384,3 +147,242 @@ msgstr ""
#: src/modules/unpackfs/main.py:479
msgid "The destination \"{}\" in the target system is not a directory"
msgstr ""
#: src/modules/displaymanager/main.py:526
msgid "Cannot write KDM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:527
msgid "KDM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:588
msgid "Cannot write LXDM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:589
msgid "LXDM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:672
msgid "Cannot write LightDM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:673
msgid "LightDM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:747
msgid "Cannot configure LightDM"
msgstr ""
#: src/modules/displaymanager/main.py:748
msgid "No LightDM greeter installed."
msgstr ""
#: src/modules/displaymanager/main.py:779
msgid "Cannot write SLIM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:780
msgid "SLIM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:906
msgid "No display managers selected for the displaymanager module."
msgstr ""
#: src/modules/displaymanager/main.py:907
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
#: src/modules/displaymanager/main.py:989
msgid "Display manager configuration was incomplete"
msgstr ""
#: src/modules/initcpiocfg/main.py:28
msgid "Configuring mkinitcpio."
msgstr ""
#: src/modules/initcpiocfg/main.py:202
#: src/modules/luksopenswaphookcfg/main.py:91
#: src/modules/initramfscfg/main.py:90 src/modules/openrcdmcryptcfg/main.py:77
#: src/modules/fstab/main.py:362 src/modules/localecfg/main.py:136
#: src/modules/networkcfg/main.py:40
msgid "No root mount point is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/luksopenswaphookcfg/main.py:26
msgid "Configuring encrypted swap."
msgstr ""
#: src/modules/rawfs/main.py:26
msgid "Installing data."
msgstr ""
#: src/modules/services-openrc/main.py:29
msgid "Configure OpenRC services"
msgstr ""
#: src/modules/services-openrc/main.py:57
msgid "Cannot add service {name!s} to run-level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:59
msgid "Cannot remove service {name!s} from run-level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:61
msgid ""
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
"level {level!s}."
msgstr ""
#: src/modules/services-openrc/main.py:94
msgid ""
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
msgstr ""
#: src/modules/services-openrc/main.py:101
msgid "Target runlevel does not exist"
msgstr ""
#: src/modules/services-openrc/main.py:102
msgid ""
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
#: src/modules/services-openrc/main.py:110
msgid "Target service does not exist"
msgstr ""
#: src/modules/services-openrc/main.py:111
msgid ""
"The path for service {name!s} is <code>{path!s}</code>, which does not "
"exist."
msgstr ""
#: src/modules/plymouthcfg/main.py:27
msgid "Configure Plymouth theme"
msgstr ""
#: src/modules/packages/main.py:50 src/modules/packages/main.py:59
#: src/modules/packages/main.py:69
msgid "Install packages."
msgstr "εγκατάσταση πακέτων."
#: src/modules/packages/main.py:57
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
msgstr ""
#: src/modules/packages/main.py:62
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] ""
msgstr[1] ""
#: src/modules/packages/main.py:65
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] ""
msgstr[1] ""
#: src/modules/packages/main.py:588 src/modules/packages/main.py:600
#: src/modules/packages/main.py:628
msgid "Package Manager error"
msgstr ""
#: src/modules/packages/main.py:589
msgid ""
"The package manager could not prepare updates. The command <pre>{!s}</pre> "
"returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:601
msgid ""
"The package manager could not update the system. The command <pre>{!s}</pre>"
" returned error code {!s}."
msgstr ""
#: src/modules/packages/main.py:629
msgid ""
"The package manager could not make changes to the installed system. The "
"command <pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/bootloader/main.py:43
msgid "Install bootloader."
msgstr ""
#: src/modules/bootloader/main.py:502
msgid "Bootloader installation error"
msgstr ""
#: src/modules/bootloader/main.py:503
msgid ""
"The bootloader could not be installed. The installation command "
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/hwclock/main.py:26
msgid "Setting hardware clock."
msgstr ""
#: src/modules/mkinitfs/main.py:27
msgid "Creating initramfs with mkinitfs."
msgstr ""
#: src/modules/mkinitfs/main.py:49
msgid "Failed to run mkinitfs on the target"
msgstr ""
#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50
msgid "The exit code was {}"
msgstr ""
#: src/modules/dracut/main.py:27
msgid "Creating initramfs with dracut."
msgstr ""
#: src/modules/dracut/main.py:49
msgid "Failed to run dracut on the target"
msgstr ""
#: src/modules/initramfscfg/main.py:32
msgid "Configuring initramfs."
msgstr ""
#: src/modules/openrcdmcryptcfg/main.py:26
msgid "Configuring OpenRC dmcrypt service."
msgstr ""
#: src/modules/fstab/main.py:29
msgid "Writing fstab."
msgstr ""
#: src/modules/fstab/main.py:389
msgid "No <pre>{!s}</pre> configuration is given for <pre>{!s}</pre> to use."
msgstr ""
#: src/modules/dummypython/main.py:35
msgid "Dummy python job."
msgstr ""
#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93
#: src/modules/dummypython/main.py:94
msgid "Dummy python step {}"
msgstr ""
#: src/modules/localecfg/main.py:30
msgid "Configuring locales."
msgstr ""
#: src/modules/networkcfg/main.py:28
msgid "Saving network configuration."
msgstr ""

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