diff --git a/CHANGES b/CHANGES index ae86c42f9..96282452d 100644 --- a/CHANGES +++ b/CHANGES @@ -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): diff --git a/CMakeLists.txt b/CMakeLists.txt index e3db9050d..44a88074f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 # diff --git a/CMakeModules/CalamaresAddPlugin.cmake b/CMakeModules/CalamaresAddPlugin.cmake index 5186bc54b..7e2a3f583 100644 --- a/CMakeModules/CalamaresAddPlugin.cmake +++ b/CMakeModules/CalamaresAddPlugin.cmake @@ -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" ) diff --git a/CMakeModules/CalamaresAddTest.cmake b/CMakeModules/CalamaresAddTest.cmake index 228d7cbc0..cd757bb88 100644 --- a/CMakeModules/CalamaresAddTest.cmake +++ b/CMakeModules/CalamaresAddTest.cmake @@ -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} ) diff --git a/CMakeModules/FindYAMLCPP.cmake b/CMakeModules/FindYAMLCPP.cmake index 0752c7bd7..f8ea4394c 100644 --- a/CMakeModules/FindYAMLCPP.cmake +++ b/CMakeModules/FindYAMLCPP.cmake @@ -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() diff --git a/CalamaresConfig.cmake.in b/CalamaresConfig.cmake.in index f10fda11a..4fb9621ca 100644 --- a/CalamaresConfig.cmake.in +++ b/CalamaresConfig.cmake.in @@ -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) diff --git a/lang/calamares_ar.ts b/lang/calamares_ar.ts index 07d107472..e877be05e 100644 --- a/lang/calamares_ar.ts +++ b/lang/calamares_ar.ts @@ -4276,11 +4276,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4321,6 +4316,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_as.ts b/lang/calamares_as.ts index 9b2e7f70d..fea72b6a7 100644 --- a/lang/calamares_as.ts +++ b/lang/calamares_as.ts @@ -4241,11 +4241,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4286,6 +4281,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_ast.ts b/lang/calamares_ast.ts index af0b90cbc..e6fa0bc71 100644 --- a/lang/calamares_ast.ts +++ b/lang/calamares_ast.ts @@ -4238,11 +4238,6 @@ Salida: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4283,6 +4278,11 @@ Salida: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_az.ts b/lang/calamares_az.ts index 691bf9a9e..e6a97ab0b 100644 --- a/lang/calamares_az.ts +++ b/lang/calamares_az.ts @@ -510,17 +510,17 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir. Set filesystem label on %1. - + Fayl sistemi yarlığını %1 üzərində qurun. Set filesystem label <strong>%1</strong> to partition <strong>%2</strong>. - + <strong>%1</strong> fayl sistemi yarlığını <strong>%2</strong> bölməsinə qurun. The installer failed to update partition table on disk '%1'. - + Quraşdırıcının '%1' diskindəki bölməni yeniləməsi baş tutmadı. @@ -896,7 +896,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir. OK! - + OLDU! @@ -1012,12 +1012,12 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir. Label for the filesystem - + Fayl sitemi üçün yarlıq FS Label: - + FS yarlığı: @@ -1376,12 +1376,12 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir. Label for the filesystem - + Fayl sitemi üçün yarlıq FS Label: - + FS yarlığı: @@ -1889,7 +1889,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir. Quit - + Çıxış @@ -2113,7 +2113,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir. Select your preferred Region, or use the default settings. - + Üstünlük verdiyiniz Bölgənizi seçin və ilkin ayarlardan istifadə edin. @@ -2653,7 +2653,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir. File System Label - + Fayl sistemi yarlığı @@ -4262,7 +4262,7 @@ Output: root is not allowed as username. - + kökə istifadəçi_adı kimi icazə verilmir. @@ -4279,15 +4279,10 @@ Output: This name will be used if you make the computer visible to others on a network. Əgər gizlədilməzsə komputer şəbəkədə bu adla görünəcək. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. - + yerli hosta host_adı kimi icazə verilmir. @@ -4324,6 +4319,11 @@ Output: Log in automatically without asking for the password Şifrə soruşmadan sistemə daxil olmaq + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + Yalnız hərflərə, saylara, alt cizgisinə və tire işarəsinə icazə verilir, ən az iki simvol. + Reuse user password as root password diff --git a/lang/calamares_az_AZ.ts b/lang/calamares_az_AZ.ts index ff3894b6d..8fa6b0ca2 100644 --- a/lang/calamares_az_AZ.ts +++ b/lang/calamares_az_AZ.ts @@ -510,17 +510,17 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir. Set filesystem label on %1. - + Fayl sistemi yarlığını %1 üzərində qurun. Set filesystem label <strong>%1</strong> to partition <strong>%2</strong>. - + <strong>%1</strong> fayl sistemi yarlığını <strong>%2</strong> bölməsinə qurun. The installer failed to update partition table on disk '%1'. - + Quraşdırıcının '%1' diskindəki bölməni yeniləməsi baş tutmadı. @@ -896,7 +896,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir. OK! - + OLDU! @@ -1012,12 +1012,12 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir. Label for the filesystem - + Fayl sitemi üçün yarlıq FS Label: - + FS yarlığı: @@ -1376,12 +1376,12 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir. Label for the filesystem - + Fayl sitemi üçün yarlıq FS Label: - + FS yarlığı: @@ -1889,7 +1889,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir. Quit - + Çıxış @@ -2113,7 +2113,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir. Select your preferred Region, or use the default settings. - + Üstünlük verdiyiniz Bölgənizi seçin və ilkin ayarlardan istifadə edin. @@ -2653,7 +2653,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir. File System Label - + Fayl sistemi yarlığı @@ -4262,7 +4262,7 @@ Output: root is not allowed as username. - + kökə istifadəçi_adı kimi icazə verilmir. @@ -4279,15 +4279,10 @@ Output: This name will be used if you make the computer visible to others on a network. Əgər gizlədilməzsə komputer şəbəkədə bu adla görünəcək. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. - + yerli hosta host_adı kimi icazə verilmir. @@ -4324,6 +4319,11 @@ Output: Log in automatically without asking for the password Şifrə soruşmadan sistemə daxil olmaq + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + Yalnız hərflərə, saylara, alt cizgisinə və tire işarəsinə icazə verilir, ən az iki simvol. + Reuse user password as root password diff --git a/lang/calamares_be.ts b/lang/calamares_be.ts index cb1a7f077..27ab2e076 100644 --- a/lang/calamares_be.ts +++ b/lang/calamares_be.ts @@ -4294,11 +4294,6 @@ Output: This name will be used if you make the computer visible to others on a network. Назва будзе выкарыстоўвацца для пазначэння камп’ютара ў сетцы. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4339,6 +4334,11 @@ Output: Log in automatically without asking for the password Аўтаматычна ўваходзіць без уводу пароля + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_bg.ts b/lang/calamares_bg.ts index 440d8e5da..8926c2850 100644 --- a/lang/calamares_bg.ts +++ b/lang/calamares_bg.ts @@ -4235,11 +4235,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4280,6 +4275,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_bn.ts b/lang/calamares_bn.ts index 271c660c6..15905ef64 100644 --- a/lang/calamares_bn.ts +++ b/lang/calamares_bn.ts @@ -32,7 +32,7 @@ Master Boot Record of %1 - 1% মাস্টার বুট রেকর্ড + %1 মাস্টার বুট রেকর্ড @@ -217,7 +217,7 @@ Working directory %1 for python job %2 is not readable. - ওয়ার্কিং ডিরেক্টরি 1% পাইথন কাজের জন্য %2 পাঠযোগ্য নয়। + ওয়ার্কিং ডিরেক্টরি %1 পাইথন কাজের জন্য %2 পাঠযোগ্য নয়। @@ -227,12 +227,12 @@ Main script file %1 for python job %2 is not readable. - মূল স্ক্রিপ্ট ফাইল 1% পাইথন কাজের জন্য 2% পাঠযোগ্য নয়। + মূল স্ক্রিপ্ট ফাইল %1 পাইথন কাজের জন্য %2 পাঠযোগ্য নয়। Boost.Python error in job "%1". - বুস্ট.পাইথন কাজে 1% ত্রুটি + বুস্ট.পাইথন কাজে %1 ত্রুটি @@ -497,7 +497,7 @@ The installer will quit and all changes will be lost. %1 Installer - 1% ইনস্টল + %1 ইনস্টল @@ -4231,11 +4231,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4276,6 +4271,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_ca.ts b/lang/calamares_ca.ts index a2dcc12c8..33c9ad263 100644 --- a/lang/calamares_ca.ts +++ b/lang/calamares_ca.ts @@ -4280,11 +4280,6 @@ La configuració pot continuar, però algunes característiques podrien estar in This name will be used if you make the computer visible to others on a network. Aquest nom s'usarà si feu visible aquest ordinador per a altres en una xarxa. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - Només es permeten lletres, números, guionets, guionets baixos i un mínim de dos caràcters. - localhost is not allowed as hostname. @@ -4325,6 +4320,11 @@ La configuració pot continuar, però algunes característiques podrien estar in Log in automatically without asking for the password Entra automàticament sense demanar la contrasenya. + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + Només es permeten lletres, números, guionets, guionets baixos i un mínim de dos caràcters. + Reuse user password as root password diff --git a/lang/calamares_ca@valencia.ts b/lang/calamares_ca@valencia.ts index 077777776..dbe801ddd 100644 --- a/lang/calamares_ca@valencia.ts +++ b/lang/calamares_ca@valencia.ts @@ -4274,11 +4274,6 @@ La configuració pot continuar, però és possible que algunes característiques This name will be used if you make the computer visible to others on a network. Aquest nom s'usarà si feu visible aquest ordinador per a altres en una xarxa. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4319,6 +4314,11 @@ La configuració pot continuar, però és possible que algunes característiques Log in automatically without asking for the password Entra automàticament sense demanar la contrasenya. + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_cs_CZ.ts b/lang/calamares_cs_CZ.ts index 0f69f762f..3fc401274 100644 --- a/lang/calamares_cs_CZ.ts +++ b/lang/calamares_cs_CZ.ts @@ -4296,11 +4296,6 @@ Výstup: This name will be used if you make the computer visible to others on a network. Tento název se použije, pokud počítač zviditelníte ostatním v síti. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4341,6 +4336,11 @@ Výstup: Log in automatically without asking for the password Přihlaste se automaticky bez zadávání hesla + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_da.ts b/lang/calamares_da.ts index 60b6c5d00..f0ab19eae 100644 --- a/lang/calamares_da.ts +++ b/lang/calamares_da.ts @@ -4274,11 +4274,6 @@ setting This name will be used if you make the computer visible to others on a network. Navnet bruges, hvis du gør computeren synlig for andre på et netværk. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4319,6 +4314,11 @@ setting Log in automatically without asking for the password Log ind automatisk uden at spørge efter adgangskoden + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_de.ts b/lang/calamares_de.ts index 379a4a922..cb48adb16 100644 --- a/lang/calamares_de.ts +++ b/lang/calamares_de.ts @@ -4280,11 +4280,6 @@ Ausgabe: This name will be used if you make the computer visible to others on a network. Dieser Name wird benutzt, wenn Sie den Computer im Netzwerk für andere sichtbar machen. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4325,6 +4320,11 @@ Ausgabe: Log in automatically without asking for the password Automatisch anmelden ohne Passwortabfrage + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_el.ts b/lang/calamares_el.ts index 33688f988..8cd2e4877 100644 --- a/lang/calamares_el.ts +++ b/lang/calamares_el.ts @@ -4231,11 +4231,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4276,6 +4271,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_en.ts b/lang/calamares_en.ts index ad01224f9..5ff148ecc 100644 --- a/lang/calamares_en.ts +++ b/lang/calamares_en.ts @@ -4280,11 +4280,6 @@ Output: This name will be used if you make the computer visible to others on a network. This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - localhost is not allowed as hostname. @@ -4325,6 +4320,11 @@ Output: Log in automatically without asking for the password Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + Reuse user password as root password diff --git a/lang/calamares_en_GB.ts b/lang/calamares_en_GB.ts index 78eed7524..bd720af70 100644 --- a/lang/calamares_en_GB.ts +++ b/lang/calamares_en_GB.ts @@ -4234,11 +4234,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4279,6 +4274,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_eo.ts b/lang/calamares_eo.ts index f220c318f..70bf7c1b8 100644 --- a/lang/calamares_eo.ts +++ b/lang/calamares_eo.ts @@ -4235,11 +4235,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4280,6 +4275,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_es.ts b/lang/calamares_es.ts index 2844fe699..5e3c751d8 100644 --- a/lang/calamares_es.ts +++ b/lang/calamares_es.ts @@ -4235,11 +4235,6 @@ Salida: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4280,6 +4275,11 @@ Salida: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_es_MX.ts b/lang/calamares_es_MX.ts index 356da18df..50402d9d8 100644 --- a/lang/calamares_es_MX.ts +++ b/lang/calamares_es_MX.ts @@ -4237,11 +4237,6 @@ Salida This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4282,6 +4277,11 @@ Salida Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_es_PE.ts b/lang/calamares_es_PE.ts index ff84d0f62..a91085c84 100644 --- a/lang/calamares_es_PE.ts +++ b/lang/calamares_es_PE.ts @@ -4230,11 +4230,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4275,6 +4270,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_es_PR.ts b/lang/calamares_es_PR.ts index f0fbdf6f8..ba98c1476 100644 --- a/lang/calamares_es_PR.ts +++ b/lang/calamares_es_PR.ts @@ -4230,11 +4230,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4275,6 +4270,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_et.ts b/lang/calamares_et.ts index f28d7d8c3..f2e99148a 100644 --- a/lang/calamares_et.ts +++ b/lang/calamares_et.ts @@ -4234,11 +4234,6 @@ Väljund: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4279,6 +4274,11 @@ Väljund: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_eu.ts b/lang/calamares_eu.ts index 515734b01..e2db24dc6 100644 --- a/lang/calamares_eu.ts +++ b/lang/calamares_eu.ts @@ -4233,11 +4233,6 @@ Irteera: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4278,6 +4273,11 @@ Irteera: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_fa.ts b/lang/calamares_fa.ts index af3116735..f98c92fb3 100644 --- a/lang/calamares_fa.ts +++ b/lang/calamares_fa.ts @@ -4233,11 +4233,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4278,6 +4273,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_fi_FI.ts b/lang/calamares_fi_FI.ts index ef626b2bc..c84a0cea2 100644 --- a/lang/calamares_fi_FI.ts +++ b/lang/calamares_fi_FI.ts @@ -510,12 +510,12 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. Set filesystem label on %1. - + Valitse tiedostojärjestelmän nimi %1. Set filesystem label <strong>%1</strong> to partition <strong>%2</strong>. - + Valitse tiedostojärjestelmän nimi <strong>%1</strong> osioon <strong>%2</strong>. @@ -897,7 +897,7 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä. OK! - + OK! @@ -1013,12 +1013,12 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä. Label for the filesystem - + Tiedostojärjestelmän nimi FS Label: - + FS-nimi: @@ -1377,12 +1377,12 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä. Label for the filesystem - + Tiedostojärjestelmän nimi FS Label: - + FS-nimi: @@ -1890,7 +1890,7 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä. Quit - + Sulje @@ -2114,7 +2114,7 @@ hiiren vieritystä skaalaamiseen. Select your preferred Region, or use the default settings. - + Valitse sinun asuinalue tai käytä oletusta. @@ -2654,7 +2654,7 @@ hiiren vieritystä skaalaamiseen. File System Label - + Tiedostojärjestelmän nimi @@ -4265,7 +4265,7 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä. root is not allowed as username. - + root ei ole sallittu käyttäjän nimeksi. @@ -4282,15 +4282,10 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä.This name will be used if you make the computer visible to others on a network. Tätä nimeä käytetään, jos teet tietokoneen näkyväksi verkon muille käyttäjille. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. - + localhost ei ole sallittu koneen nimeksi. @@ -4327,6 +4322,11 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä.Log in automatically without asking for the password Kirjaudu automaattisesti ilman salasanaa + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + Vain kirjaimet, numerot, alaviiva ja väliviiva ovat sallittuja, vähintään kaksi merkkiä. + Reuse user password as root password diff --git a/lang/calamares_fr.ts b/lang/calamares_fr.ts index 0be61451d..b78233af2 100644 --- a/lang/calamares_fr.ts +++ b/lang/calamares_fr.ts @@ -515,7 +515,7 @@ L'installateur se fermera et les changements seront perdus. Set filesystem label <strong>%1</strong> to partition <strong>%2</strong>. - + Mettre le nom du système de fichier <strong>%1</strong> à la partition <strong>%2</strong>. @@ -896,7 +896,7 @@ L'installateur se fermera et les changements seront perdus. OK! - + OK! @@ -1889,7 +1889,7 @@ L'installateur se fermera et les changements seront perdus. Quit - + Quiter @@ -4262,7 +4262,7 @@ Sortie root is not allowed as username. - + root n'est pas autorisé en tant que nom d'utilisateur. @@ -4279,15 +4279,10 @@ Sortie This name will be used if you make the computer visible to others on a network. Ce nom sera utilisé si vous rendez l'ordinateur visible aux autres sur un réseau. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. - + localhost n'est pas autorisé en tant que nom d'utilisateur. @@ -4324,6 +4319,11 @@ Sortie Log in automatically without asking for the password Connectez-vous automatiquement sans demander le mot de passe + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + Seuls les lettres, les chiffres, les underscores et les trait d'union sont autorisés et un minimum de deux caractères. + Reuse user password as root password diff --git a/lang/calamares_fr_CH.ts b/lang/calamares_fr_CH.ts index 7c6b445a1..248ed0fd1 100644 --- a/lang/calamares_fr_CH.ts +++ b/lang/calamares_fr_CH.ts @@ -4230,11 +4230,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4275,6 +4270,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_fur.ts b/lang/calamares_fur.ts index 9d66e189a..c203599fe 100644 --- a/lang/calamares_fur.ts +++ b/lang/calamares_fur.ts @@ -4274,11 +4274,6 @@ Output: This name will be used if you make the computer visible to others on a network. Si doprarà chest non se tu rindis visibil a altris chest computer suntune rêt. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4319,6 +4314,11 @@ Output: Log in automatically without asking for the password Jentre in automatic cence domandâ la password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_gl.ts b/lang/calamares_gl.ts index 9a00dded5..ad0786b3c 100644 --- a/lang/calamares_gl.ts +++ b/lang/calamares_gl.ts @@ -4235,11 +4235,6 @@ Saída: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4280,6 +4275,11 @@ Saída: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_gu.ts b/lang/calamares_gu.ts index da75b501d..16c0b6142 100644 --- a/lang/calamares_gu.ts +++ b/lang/calamares_gu.ts @@ -4230,11 +4230,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4275,6 +4270,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_he.ts b/lang/calamares_he.ts index 8ea3b98af..875d188cb 100644 --- a/lang/calamares_he.ts +++ b/lang/calamares_he.ts @@ -1432,7 +1432,7 @@ The installer will quit and all changes will be lost. Install %1 on <strong>new</strong> %2 system partition with features <em>%3</em> - + התקנת %1 על מחיצת מערכת <strong>חדשה</strong> מסוג %2 עם היכולות <em>%3</em> @@ -1442,12 +1442,12 @@ The installer will quit and all changes will be lost. Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong> and features <em>%3</em>. - + הקמת מחיצת %2 <strong>חדשה</strong> עם נקודת העיגון <strong>%1</strong> והיכולות <em>%3</em>. Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>%3. - + הגדרת מחיצת מערכת <strong>חדשה</strong> מסוג %2 עם נקודת העיגון <strong>%1</strong> %3. @@ -1457,7 +1457,7 @@ The installer will quit and all changes will be lost. Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong> and features <em>%4</em>. - + הקמת מחיצת %3 בשם <strong>%1</strong> עם נקודת העגינה <strong>%2</strong> והיכולות <em>%4</em>. @@ -4088,7 +4088,8 @@ Output: %1 has been installed on your computer.<br/> You may now restart into your new system, or continue using the Live environment. - + %1 הותקן על המחשב שלך.<br/> + כעת ניתן לאתחל את המחשב אל תוך המערכת החדשה שלך, או להמשיך להשתמש בסביבה הניסיונית. @@ -4301,11 +4302,6 @@ Output: This name will be used if you make the computer visible to others on a network. השם הזה יהיה בשימוש אם המחשב הזה יהיה גלוי לשאר הרשת. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - מותר להשתמש באותיות, ספרות, קווים תחתונים ומינוסים, שני תווים ומעלה. - localhost is not allowed as hostname. @@ -4346,6 +4342,11 @@ Output: Log in automatically without asking for the password להיכנס אוטומטית מבלי לבקש סיסמה + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + מותר להשתמש באותיות, ספרות, קווים תחתונים ומינוסים, שני תווים ומעלה. + Reuse user password as root password diff --git a/lang/calamares_hi.ts b/lang/calamares_hi.ts index 88859e01a..192fd8545 100644 --- a/lang/calamares_hi.ts +++ b/lang/calamares_hi.ts @@ -510,17 +510,17 @@ The installer will quit and all changes will be lost. Set filesystem label on %1. - + %1 हेतु फाइल सिस्टम उपनाम सेट करें। Set filesystem label <strong>%1</strong> to partition <strong>%2</strong>. - + <strong>%2</strong> विभाजन हेतु फाइल सिस्टम उपनाम <strong>%1</strong> सेट करें। The installer failed to update partition table on disk '%1'. - + इंस्टॉलर द्वारा डिस्क '%1' पर विभाजन तालिका अपडेट करना विफल। @@ -896,7 +896,7 @@ The installer will quit and all changes will be lost. OK! - + ठीक है! @@ -1012,12 +1012,12 @@ The installer will quit and all changes will be lost. Label for the filesystem - + फाइल सिस्टम हेतु उपनाम FS Label: - + फाइल सिस्टम उपनाम : @@ -1376,12 +1376,12 @@ The installer will quit and all changes will be lost. Label for the filesystem - + फाइल सिस्टम हेतु उपनाम FS Label: - + फाइल सिस्टम उपनाम : @@ -1889,7 +1889,7 @@ The installer will quit and all changes will be lost. Quit - + बंद करें @@ -2113,7 +2113,7 @@ The installer will quit and all changes will be lost. Select your preferred Region, or use the default settings. - + अपना इच्छित क्षेत्र चुनें या फिर डिफ़ॉल्ट सेटिंग्स उपयोग करें। @@ -2653,7 +2653,7 @@ The installer will quit and all changes will be lost. File System Label - + फाइल सिस्टम उपनाम @@ -4263,7 +4263,7 @@ Output: root is not allowed as username. - + उपयोक्ता नाम के रूप में root का उपयोग अस्वीकार्य है। @@ -4280,15 +4280,10 @@ Output: This name will be used if you make the computer visible to others on a network. यदि आपका कंप्यूटर किसी नेटवर्क पर दृश्यमान होता है, तो यह नाम उपयोग किया जाएगा। - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. - + होस्ट नाम के रूप में localhost का उपयोग अस्वीकार्य है। @@ -4325,6 +4320,11 @@ Output: Log in automatically without asking for the password कूटशब्द बिना पूछे ही स्वतः लॉग इन करें + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + केवल अक्षर, अंक, अंडरस्कोर व हाइफ़न ही स्वीकार्य हैं, परन्तु केवल दो अक्षर ही ऐसे हो सकते हैं। + Reuse user password as root password diff --git a/lang/calamares_hr.ts b/lang/calamares_hr.ts index 7aa9d9cff..96f14fbc2 100644 --- a/lang/calamares_hr.ts +++ b/lang/calamares_hr.ts @@ -264,9 +264,9 @@ Waiting for %n module(s). - Čekam %1 modul(a). - Čekam %1 modul(a). - Čekam %1 modul(a). + Čekam %n modul(a). + Čekam %n modul(a). + Čekam %n modul(a). @@ -512,12 +512,12 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. Set filesystem label on %1. - + Postavi oznaku datotečnog sustava na %1. Set filesystem label <strong>%1</strong> to partition <strong>%2</strong>. - + Postavi oznaku datotečnog sustava <strong>%1</strong> na particiju <strong>%2</strong>. @@ -863,12 +863,12 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. Your username must start with a lowercase letter or underscore. - Vaše korisničko ime mora započeti malim slovom ili podvlakom. + Vaše korisničko ime mora započeti malim slovom ili donjom crtom. Only lowercase letters, numbers, underscore and hyphen are allowed. - Dopuštena su samo mala slova, brojevi, podvlake i crtice. + Dopuštena su samo mala slova, brojevi, donja crta i crtica. @@ -888,7 +888,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. Only letters, numbers, underscore and hyphen are allowed. - Dopuštena su samo slova, brojevi, podvlake i crtice. + Dopuštena su samo slova, brojevi, donja crta i crtica. @@ -898,7 +898,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. OK! - + OK! @@ -1014,12 +1014,12 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. Label for the filesystem - + Oznaka za datotečni sustav FS Label: - + Oznaka datotečnog sustava: @@ -1378,12 +1378,12 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. Label for the filesystem - + Oznaka za datotečni sustav FS Label: - + Oznaka datotečnog sustava: @@ -1891,7 +1891,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. Quit - + izađi @@ -2115,7 +2115,7 @@ te korištenjem tipki +/- ili skrolanjem miša za zumiranje. Select your preferred Region, or use the default settings. - + Odaberite željenu regiju ili upotrijebite zadane postavke. @@ -2664,7 +2664,7 @@ te korištenjem tipki +/- ili skrolanjem miša za zumiranje. File System Label - + Oznaka datotečnog sustava @@ -4268,12 +4268,12 @@ Postavke regije utječu na format brojeva i datuma. Trenutne postavke su <str Only lowercase letters, numbers, underscore and hyphen are allowed. - Dopuštena su samo mala slova, brojevi, podvlake i crtice. + Dopuštena su samo mala slova, brojevi, donja crta i crtica. root is not allowed as username. - + root nije dozvoljeno korisničko ime. @@ -4290,15 +4290,10 @@ Postavke regije utječu na format brojeva i datuma. Trenutne postavke su <str This name will be used if you make the computer visible to others on a network. Ovo će se ime upotrebljavati ako računalo učinite vidljivim drugima na mreži. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. - + localhost nije dozvoljeno ime računala. @@ -4335,6 +4330,11 @@ Postavke regije utječu na format brojeva i datuma. Trenutne postavke su <str Log in automatically without asking for the password Automatska prijava bez traženja lozinke + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + Dopuštena su samo slova, brojevi, donja crta i crtica i to kao najmanje dva znaka + Reuse user password as root password diff --git a/lang/calamares_hu.ts b/lang/calamares_hu.ts index 4a934ee39..fb59f8d12 100644 --- a/lang/calamares_hu.ts +++ b/lang/calamares_hu.ts @@ -4238,11 +4238,6 @@ Calamares hiba %1. This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4283,6 +4278,11 @@ Calamares hiba %1. Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_id.ts b/lang/calamares_id.ts index c79cd1baa..4ed8df54f 100644 --- a/lang/calamares_id.ts +++ b/lang/calamares_id.ts @@ -4237,11 +4237,6 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4282,6 +4277,11 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_id_ID.ts b/lang/calamares_id_ID.ts index cdaea98ab..74887f1ff 100644 --- a/lang/calamares_id_ID.ts +++ b/lang/calamares_id_ID.ts @@ -4219,11 +4219,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4264,6 +4259,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_ie.ts b/lang/calamares_ie.ts index 420fd1d13..9685fcb6e 100644 --- a/lang/calamares_ie.ts +++ b/lang/calamares_ie.ts @@ -4230,11 +4230,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4275,6 +4270,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_is.ts b/lang/calamares_is.ts index c67e49511..fabd28221 100644 --- a/lang/calamares_is.ts +++ b/lang/calamares_is.ts @@ -4231,11 +4231,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4276,6 +4271,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_it_IT.ts b/lang/calamares_it_IT.ts index dc6a30466..c0ec8a7dc 100644 --- a/lang/calamares_it_IT.ts +++ b/lang/calamares_it_IT.ts @@ -4255,11 +4255,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4300,6 +4295,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_ja.ts b/lang/calamares_ja.ts index 7f8a0d884..741d07e21 100644 --- a/lang/calamares_ja.ts +++ b/lang/calamares_ja.ts @@ -508,12 +508,12 @@ The installer will quit and all changes will be lost. Set filesystem label on %1. - + ファイルシステムのラベルを %1 に設定する。 Set filesystem label <strong>%1</strong> to partition <strong>%2</strong>. - + ファイルシステムのラベル <strong>%1</strong> をパーティション <strong>%2</strong> に設定する。 @@ -894,7 +894,7 @@ The installer will quit and all changes will be lost. OK! - + OK! @@ -1011,12 +1011,12 @@ The installer will quit and all changes will be lost. Label for the filesystem - + ファイルシステムのラベル FS Label: - + FSラベル: @@ -1375,12 +1375,12 @@ The installer will quit and all changes will be lost. Label for the filesystem - + ファイルシステムのラベル FS Label: - + FSラベル: @@ -1427,47 +1427,47 @@ The installer will quit and all changes will be lost. Install %1 on <strong>new</strong> %2 system partition with features <em>%3</em> - <em>%3</em> 機能の<strong>新しい</strong> %2 システムパーティションに、%1 をインストールする + <strong>新規の</strong> %2 システムパーティション (機能 <em>%3</em>) に %1 をインストールする Install %1 on <strong>new</strong> %2 system partition. - <strong>新しい</strong> %2 システムパーティションに %1 をインストールする。 + <strong>新規の</strong> %2 システムパーティションに %1 をインストールする。 Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong> and features <em>%3</em>. - マウントポイント <strong>%1</strong> に、<em>%3</em> 機能の<strong>新しい</strong> %2 パーティションをセットアップする。 + <strong>新規の</strong> %2 パーティション (マウントポイント <strong>%1</strong>、機能 <em>%3</em>) をセットアップする。 Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>%3. - マウントポイント <strong>%1</strong> %3 に<strong>新しい</strong> %2 パーティションをセットアップする。 + <strong>新規の</strong> %2 パーティション (マウントポイント <strong>%1</strong> %3) をセットアップする。 Install %2 on %3 system partition <strong>%1</strong> with features <em>%4</em>. - <em>%4</em> 機能の %3 システムパーティション <strong>%1</strong> に %2 をインストールする。 + %3 システムパーティション <strong>%1</strong> (機能 <em>%4</em>) に %2 をインストールする。 Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong> and features <em>%4</em>. - マウントポイント <strong>%2</strong> に、<em>%4</em> 機能の %3 パーティション <strong>%1</strong> をセットアップする。 + パーティション %3 <strong>%1</strong> (マウントポイント <strong>%2</strong>、機能 <em>%4</em>) をセットアップする。 Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>%4. - マウントポイント <strong>%2</strong> %4 に、%3 パーティション <strong>%1</strong> をセットアップする。 + %3 パーティション <strong>%1</strong> (マウントポイント <strong>%2</strong> %4) をセットアップする。 Install %2 on %3 system partition <strong>%1</strong>. - %3 システムパーティション <strong>%1</strong> に%2 をインストール。 + %3 システムパーティション <strong>%1</strong> に%2 をインストールする。 Install boot loader on <strong>%1</strong>. - <strong>%1</strong> にブートローダーをインストール + <strong>%1</strong> にブートローダーをインストールする。 @@ -1888,7 +1888,7 @@ The installer will quit and all changes will be lost. Quit - + 終了 @@ -2113,7 +2113,7 @@ The installer will quit and all changes will be lost. Select your preferred Region, or use the default settings. - + 希望する地域を選択するか、デフォルトの設定を使用してください。 @@ -2644,7 +2644,7 @@ The installer will quit and all changes will be lost. File System Label - + ファイルシステムのラベル @@ -4254,7 +4254,7 @@ Output: root is not allowed as username. - + root はユーザー名として許可されていません。 @@ -4271,15 +4271,10 @@ Output: This name will be used if you make the computer visible to others on a network. この名前は、コンピューターをネットワーク上の他のユーザーに表示する場合に使用されます。 - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. - + localhost はユーザー名として許可されていません。 @@ -4316,6 +4311,11 @@ Output: Log in automatically without asking for the password パスワードを要求せずに自動的にログインする + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + 使用できるのはアルファベットと数字と _ と - で、2文字以上必要です。 + Reuse user password as root password diff --git a/lang/calamares_kk.ts b/lang/calamares_kk.ts index 11f59e160..957573b58 100644 --- a/lang/calamares_kk.ts +++ b/lang/calamares_kk.ts @@ -4230,11 +4230,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4275,6 +4270,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_kn.ts b/lang/calamares_kn.ts index a14c9faf1..261b97b4e 100644 --- a/lang/calamares_kn.ts +++ b/lang/calamares_kn.ts @@ -4230,11 +4230,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4275,6 +4270,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_ko.ts b/lang/calamares_ko.ts index 65a213ade..e8fa92dd6 100644 --- a/lang/calamares_ko.ts +++ b/lang/calamares_ko.ts @@ -508,17 +508,17 @@ The installer will quit and all changes will be lost. Set filesystem label on %1. - + 파일시스템 레이블을 %1로 지정합니다. Set filesystem label <strong>%1</strong> to partition <strong>%2</strong>. - + <strong>%1</strong> 파일 시스템 레이블을 <strong>%2</strong> 파티션으로 설정하십시오. The installer failed to update partition table on disk '%1'. - + 설치 프로그램은 디스크 '%1'에서 파티션 테이블을 업데이트하지 못했습니다. @@ -894,7 +894,7 @@ The installer will quit and all changes will be lost. OK! - + 확인! @@ -1010,12 +1010,12 @@ The installer will quit and all changes will be lost. Label for the filesystem - + 파일시스템에 대한 레이블 FS Label: - + FS 레이블: @@ -1374,12 +1374,12 @@ The installer will quit and all changes will be lost. Label for the filesystem - + 파일시스템에 대한 레이블 FS Label: - + FS 레이블: @@ -1887,7 +1887,7 @@ The installer will quit and all changes will be lost. Quit - + 종료 @@ -2111,7 +2111,7 @@ The installer will quit and all changes will be lost. Select your preferred Region, or use the default settings. - + 원하는 지역을 선택하거나, 기본 설정을 사용하십시오. @@ -2642,7 +2642,7 @@ The installer will quit and all changes will be lost. File System Label - + 파일 시스템 레이블 @@ -4252,7 +4252,7 @@ Output: root is not allowed as username. - + 루트는 사용자 이름으로 허용되지 않습니다. @@ -4269,15 +4269,10 @@ Output: This name will be used if you make the computer visible to others on a network. 이 이름은 네트워크의 다른 사용자가 이 컴퓨터를 볼 수 있게 하는 경우에 사용됩니다. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. - + localhost는 호스트 이름으로 허용되지 않습니다. @@ -4314,6 +4309,11 @@ Output: Log in automatically without asking for the password 암호를 묻지 않고 자동으로 로그인합니다 + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_ko_KR.ts b/lang/calamares_ko_KR.ts new file mode 100644 index 000000000..d82a46fa0 --- /dev/null +++ b/lang/calamares_ko_KR.ts @@ -0,0 +1,4332 @@ + + + + + AutoMountManagementJob + + + Manage auto-mount settings + + + + + BootInfoWidget + + + The <strong>boot environment</strong> of this system.<br><br>Older x86 systems only support <strong>BIOS</strong>.<br>Modern systems usually use <strong>EFI</strong>, but may also show up as BIOS if started in compatibility mode. + + + + + This system was started with an <strong>EFI</strong> boot environment.<br><br>To configure startup from an EFI environment, this installer must deploy a boot loader application, like <strong>GRUB</strong> or <strong>systemd-boot</strong> on an <strong>EFI System Partition</strong>. This is automatic, unless you choose manual partitioning, in which case you must choose it or create it on your own. + + + + + This system was started with a <strong>BIOS</strong> boot environment.<br><br>To configure startup from a BIOS environment, this installer must install a boot loader, like <strong>GRUB</strong>, either at the beginning of a partition or on the <strong>Master Boot Record</strong> near the beginning of the partition table (preferred). This is automatic, unless you choose manual partitioning, in which case you must set it up on your own. + + + + + BootLoaderModel + + + Master Boot Record of %1 + + + + + Boot Partition + + + + + System Partition + + + + + Do not install a boot loader + + + + + %1 (%2) + + + + + Calamares::BlankViewStep + + + Blank Page + + + + + Calamares::DebugWindow + + + Form + + + + + GlobalStorage + + + + + JobQueue + + + + + Modules + + + + + Type: + + + + + + none + + + + + Interface: + + + + + Crashes Calamares, so that Dr. Konqui can look at it. + + + + + Reloads the stylesheet from the branding directory. + + + + + Uploads the session log to the configured pastebin. + + + + + Send Session Log + + + + + Reload Stylesheet + + + + + Displays the tree of widget names in the log (for stylesheet debugging). + + + + + Widget Tree + + + + + Debug information + + + + + Calamares::ExecutionViewStep + + + Set up + + + + + Install + + + + + Calamares::FailJob + + + Job failed (%1) + + + + + Programmed job failure was explicitly requested. + + + + + Calamares::JobThread + + + Done + + + + + Calamares::NamedJob + + + Example job (%1) + + + + + Calamares::ProcessJob + + + Run command '%1' in target system. + + + + + Run command '%1'. + + + + + Running command %1 %2 + + + + + Calamares::PythonJob + + + Running %1 operation. + + + + + Bad working directory path + + + + + Working directory %1 for python job %2 is not readable. + + + + + Bad main script file + + + + + Main script file %1 for python job %2 is not readable. + + + + + Boost.Python error in job "%1". + + + + + Calamares::QmlViewStep + + + Loading ... + + + + + QML Step <i>%1</i>. + + + + + Loading failed. + + + + + Calamares::RequirementsChecker + + + Requirements checking for module <i>%1</i> is complete. + + + + + Waiting for %n module(s). + + + + + + + (%n second(s)) + + + + + + + System-requirements checking is complete. + + + + + Calamares::ViewManager + + + Setup Failed + + + + + Installation Failed + + + + + Would you like to paste the install log to the web? + + + + + Error + + + + + + &Yes + + + + + + &No + + + + + &Close + + + + + Install Log Paste URL + + + + + The upload was unsuccessful. No web-paste was done. + + + + + Install log posted to + +%1 + +Link copied to clipboard + + + + + Calamares Initialization Failed + + + + + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. + + + + + <br/>The following modules could not be loaded: + + + + + Continue with setup? + + + + + Continue with installation? + + + + + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> + + + + + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> + + + + + &Set up now + + + + + &Install now + + + + + Go &back + + + + + &Set up + + + + + &Install + + + + + Setup is complete. Close the setup program. + + + + + The installation is complete. Close the installer. + + + + + Cancel setup without changing the system. + + + + + Cancel installation without changing the system. + + + + + &Next + + + + + &Back + + + + + &Done + + + + + &Cancel + + + + + Cancel setup? + + + + + Cancel installation? + + + + + Do you really want to cancel the current setup process? +The setup program will quit and all changes will be lost. + + + + + Do you really want to cancel the current install process? +The installer will quit and all changes will be lost. + + + + + CalamaresPython::Helper + + + Unknown exception type + + + + + unparseable Python error + + + + + unparseable Python traceback + + + + + Unfetchable Python error. + + + + + CalamaresWindow + + + %1 Setup Program + + + + + %1 Installer + + + + + ChangeFilesystemLabelJob + + + Set filesystem label on %1. + + + + + Set filesystem label <strong>%1</strong> to partition <strong>%2</strong>. + + + + + The installer failed to update partition table on disk '%1'. + + + + + CheckerContainer + + + Gathering system information... + + + + + ChoicePage + + + Form + + + + + Select storage de&vice: + + + + + + + + Current: + + + + + After: + + + + + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. + + + + + Reuse %1 as home partition for %2. + + + + + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> + + + + + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. + + + + + Boot loader location: + + + + + <strong>Select a partition to install on</strong> + + + + + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. + + + + + The EFI system partition at %1 will be used for starting %2. + + + + + EFI system partition: + + + + + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. + + + + + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. + + + + + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. + + + + + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. + + + + + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. + + + + + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. + + + + + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. + + + + + This storage device already has an operating system on it, but the partition table <strong>%1</strong> is different from the needed <strong>%2</strong>.<br/> + + + + + This storage device has one of its partitions <strong>mounted</strong>. + + + + + This storage device is a part of an <strong>inactive RAID</strong> device. + + + + + No Swap + + + + + Reuse Swap + + + + + Swap (no Hibernate) + + + + + Swap (with Hibernate) + + + + + Swap to file + + + + + ClearMountsJob + + + Clear mounts for partitioning operations on %1 + + + + + Clearing mounts for partitioning operations on %1. + + + + + Cleared all mounts for %1 + + + + + ClearTempMountsJob + + + Clear all temporary mounts. + + + + + Clearing all temporary mounts. + + + + + Cannot get list of temporary mounts. + + + + + Cleared all temporary mounts. + + + + + CommandList + + + + Could not run command. + + + + + The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined. + + + + + The command needs to know the user's name, but no username is defined. + + + + + Config + + + Set keyboard model to %1.<br/> + + + + + Set keyboard layout to %1/%2. + + + + + Set timezone to %1/%2. + + + + + The system language will be set to %1. + + + + + The numbers and dates locale will be set to %1. + + + + + Network Installation. (Disabled: Incorrect configuration) + + + + + Network Installation. (Disabled: Received invalid groups data) + + + + + Network Installation. (Disabled: Internal error) + + + + + Network Installation. (Disabled: No package list) + + + + + Package selection + + + + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) + + + + + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> + + + + + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> + + + + + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. + + + + + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. + + + + + This program will ask you some questions and set up %2 on your computer. + + + + + <h1>Welcome to the Calamares setup program for %1</h1> + + + + + <h1>Welcome to %1 setup</h1> + + + + + <h1>Welcome to the Calamares installer for %1</h1> + + + + + <h1>Welcome to the %1 installer</h1> + + + + + Your username is too long. + + + + + '%1' is not allowed as username. + + + + + Your username must start with a lowercase letter or underscore. + + + + + Only lowercase letters, numbers, underscore and hyphen are allowed. + + + + + Your hostname is too short. + + + + + Your hostname is too long. + + + + + '%1' is not allowed as hostname. + + + + + Only letters, numbers, underscore and hyphen are allowed. + + + + + Your passwords do not match! + + + + + OK! + + + + + Setup Failed + + + + + Installation Failed + + + + + The setup of %1 did not complete successfully. + + + + + The installation of %1 did not complete successfully. + + + + + Setup Complete + + + + + Installation Complete + + + + + The setup of %1 is complete. + + + + + The installation of %1 is complete. + + + + + Package Selection + + + + + Please pick a product from the list. The selected product will be installed. + + + + + ContextualProcessJob + + + Contextual Processes Job + + + + + CreatePartitionDialog + + + Create a Partition + + + + + Si&ze: + + + + + MiB + + + + + Partition &Type: + + + + + &Primary + + + + + E&xtended + + + + + Fi&le System: + + + + + LVM LV name + + + + + &Mount Point: + + + + + Flags: + + + + + Label for the filesystem + + + + + FS Label: + + + + + En&crypt + + + + + Logical + + + + + Primary + + + + + GPT + + + + + Mountpoint already in use. Please select another one. + + + + + CreatePartitionJob + + + Create new %1MiB partition on %3 (%2) with entries %4. + + + + + Create new %1MiB partition on %3 (%2). + + + + + Create new %2MiB partition on %4 (%3) with file system %1. + + + + + Create new <strong>%1MiB</strong> partition on <strong>%3</strong> (%2) with entries <em>%4</em>. + + + + + Create new <strong>%1MiB</strong> partition on <strong>%3</strong> (%2). + + + + + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. + + + + + + Creating new %1 partition on %2. + + + + + The installer failed to create partition on disk '%1'. + + + + + CreatePartitionTableDialog + + + Create Partition Table + + + + + Creating a new partition table will delete all existing data on the disk. + + + + + What kind of partition table do you want to create? + + + + + Master Boot Record (MBR) + + + + + GUID Partition Table (GPT) + + + + + CreatePartitionTableJob + + + Create new %1 partition table on %2. + + + + + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). + + + + + Creating new %1 partition table on %2. + + + + + The installer failed to create a partition table on %1. + + + + + CreateUserJob + + + Create user %1 + + + + + Create user <strong>%1</strong>. + + + + + Preserving home directory + + + + + + Creating user %1 + + + + + Configuring user %1 + + + + + Setting file permissions + + + + + CreateVolumeGroupDialog + + + Create Volume Group + + + + + CreateVolumeGroupJob + + + Create new volume group named %1. + + + + + Create new volume group named <strong>%1</strong>. + + + + + Creating new volume group named %1. + + + + + The installer failed to create a volume group named '%1'. + + + + + DeactivateVolumeGroupJob + + + + Deactivate volume group named %1. + + + + + Deactivate volume group named <strong>%1</strong>. + + + + + The installer failed to deactivate a volume group named %1. + + + + + DeletePartitionJob + + + Delete partition %1. + + + + + Delete partition <strong>%1</strong>. + + + + + Deleting partition %1. + + + + + The installer failed to delete partition %1. + + + + + DeviceInfoWidget + + + This device has a <strong>%1</strong> partition table. + + + + + This is a <strong>loop</strong> device.<br><br>It is a pseudo-device with no partition table that makes a file accessible as a block device. This kind of setup usually only contains a single filesystem. + + + + + This installer <strong>cannot detect a partition table</strong> on the selected storage device.<br><br>The device either has no partition table, or the partition table is corrupted or of an unknown type.<br>This installer can create a new partition table for you, either automatically, or through the manual partitioning page. + + + + + <br><br>This is the recommended partition table type for modern systems which start from an <strong>EFI</strong> boot environment. + + + + + <br><br>This partition table type is only advisable on older systems which start from a <strong>BIOS</strong> boot environment. GPT is recommended in most other cases.<br><br><strong>Warning:</strong> the MBR partition table is an obsolete MS-DOS era standard.<br>Only 4 <em>primary</em> partitions may be created, and of those 4, one can be an <em>extended</em> partition, which may in turn contain many <em>logical</em> partitions. + + + + + The type of <strong>partition table</strong> on the selected storage device.<br><br>The only way to change the partition table type is to erase and recreate the partition table from scratch, which destroys all data on the storage device.<br>This installer will keep the current partition table unless you explicitly choose otherwise.<br>If unsure, on modern systems GPT is preferred. + + + + + DeviceModel + + + %1 - %2 (%3) + device[name] - size[number] (device-node[name]) + + + + + %1 - (%2) + device[name] - (device-node[name]) + + + + + DracutLuksCfgJob + + + Write LUKS configuration for Dracut to %1 + + + + + Skip writing LUKS configuration for Dracut: "/" partition is not encrypted + + + + + Failed to open %1 + + + + + DummyCppJob + + + Dummy C++ Job + + + + + EditExistingPartitionDialog + + + Edit Existing Partition + + + + + Content: + + + + + &Keep + + + + + Format + + + + + Warning: Formatting the partition will erase all existing data. + + + + + &Mount Point: + + + + + Si&ze: + + + + + MiB + + + + + Fi&le System: + + + + + Flags: + + + + + Label for the filesystem + + + + + FS Label: + + + + + Mountpoint already in use. Please select another one. + + + + + EncryptWidget + + + Form + + + + + En&crypt system + + + + + Passphrase + + + + + Confirm passphrase + + + + + + Please enter the same passphrase in both boxes. + + + + + FillGlobalStorageJob + + + Set partition information + + + + + Install %1 on <strong>new</strong> %2 system partition with features <em>%3</em> + + + + + Install %1 on <strong>new</strong> %2 system partition. + + + + + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong> and features <em>%3</em>. + + + + + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>%3. + + + + + Install %2 on %3 system partition <strong>%1</strong> with features <em>%4</em>. + + + + + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong> and features <em>%4</em>. + + + + + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>%4. + + + + + Install %2 on %3 system partition <strong>%1</strong>. + + + + + Install boot loader on <strong>%1</strong>. + + + + + Setting up mount points. + + + + + FinishedPage + + + Form + + + + + &Restart now + + + + + <h1>All done.</h1><br/>%1 has been set up on your computer.<br/>You may now start using your new system. + + + + + <html><head/><body><p>When this box is checked, your system will restart immediately when you click on <span style="font-style:italic;">Done</span> or close the setup program.</p></body></html> + + + + + <h1>All done.</h1><br/>%1 has been installed on your computer.<br/>You may now restart into your new system, or continue using the %2 Live environment. + + + + + <html><head/><body><p>When this box is checked, your system will restart immediately when you click on <span style="font-style:italic;">Done</span> or close the installer.</p></body></html> + + + + + <h1>Setup Failed</h1><br/>%1 has not been set up on your computer.<br/>The error message was: %2. + + + + + <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. + + + + + FinishedQmlViewStep + + + Finish + + + + + FinishedViewStep + + + Finish + + + + + FormatPartitionJob + + + Format partition %1 (file system: %2, size: %3 MiB) on %4. + + + + + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. + + + + + Formatting partition %1 with file system %2. + + + + + The installer failed to format partition %1 on disk '%2'. + + + + + GeneralRequirements + + + has at least %1 GiB available drive space + + + + + There is not enough drive space. At least %1 GiB is required. + + + + + has at least %1 GiB working memory + + + + + The system does not have enough working memory. At least %1 GiB is required. + + + + + is plugged in to a power source + + + + + The system is not plugged in to a power source. + + + + + is connected to the Internet + + + + + The system is not connected to the Internet. + + + + + is running the installer as an administrator (root) + + + + + The setup program is not running with administrator rights. + + + + + The installer is not running with administrator rights. + + + + + has a screen large enough to show the whole installer + + + + + The screen is too small to display the setup program. + + + + + The screen is too small to display the installer. + + + + + HostInfoJob + + + Collecting information about your machine. + + + + + IDJob + + + + + + OEM Batch Identifier + + + + + Could not create directories <code>%1</code>. + + + + + Could not open file <code>%1</code>. + + + + + Could not write to file <code>%1</code>. + + + + + InitcpioJob + + + Creating initramfs with mkinitcpio. + + + + + InitramfsJob + + + Creating initramfs. + + + + + InteractiveTerminalPage + + + Konsole not installed + + + + + Please install KDE Konsole and try again! + + + + + Executing script: &nbsp;<code>%1</code> + + + + + InteractiveTerminalViewStep + + + Script + + + + + KeyboardQmlViewStep + + + Keyboard + + + + + KeyboardViewStep + + + Keyboard + + + + + LCLocaleDialog + + + System locale setting + + + + + The system locale setting affects the language and character set for some command line user interface elements.<br/>The current setting is <strong>%1</strong>. + + + + + &Cancel + + + + + &OK + + + + + LicensePage + + + Form + + + + + <h1>License Agreement</h1> + + + + + I accept the terms and conditions above. + + + + + Please review the End User License Agreements (EULAs). + + + + + This setup procedure will install proprietary software that is subject to licensing terms. + + + + + If you do not agree with the terms, the setup procedure cannot continue. + + + + + This setup procedure can install proprietary software that is subject to licensing terms in order to provide additional features and enhance the user experience. + + + + + If you do not agree with the terms, proprietary software will not be installed, and open source alternatives will be used instead. + + + + + LicenseViewStep + + + License + + + + + LicenseWidget + + + URL: %1 + + + + + <strong>%1 driver</strong><br/>by %2 + %1 is an untranslatable product name, example: Creative Audigy driver + + + + + <strong>%1 graphics driver</strong><br/><font color="Grey">by %2</font> + %1 is usually a vendor name, example: Nvidia graphics driver + + + + + <strong>%1 browser plugin</strong><br/><font color="Grey">by %2</font> + + + + + <strong>%1 codec</strong><br/><font color="Grey">by %2</font> + + + + + <strong>%1 package</strong><br/><font color="Grey">by %2</font> + + + + + <strong>%1</strong><br/><font color="Grey">by %2</font> + + + + + File: %1 + + + + + Hide license text + + + + + Show the license text + + + + + Open license agreement in browser. + + + + + LocalePage + + + Region: + + + + + Zone: + + + + + + &Change... + + + + + LocaleQmlViewStep + + + Location + + + + + LocaleTests + + + Quit + + + + + LocaleViewStep + + + Location + + + + + LuksBootKeyFileJob + + + Configuring LUKS key file. + + + + + + No partitions are defined. + + + + + + + Encrypted rootfs setup error + + + + + Root partition %1 is LUKS but no passphrase has been set. + + + + + Could not create LUKS key file for root partition %1. + + + + + Could not configure LUKS key file on partition %1. + + + + + MachineIdJob + + + Generate machine-id. + + + + + Configuration Error + + + + + No root mount point is set for MachineId. + + + + + Map + + + Timezone: %1 + + + + + Please select your preferred location on the map so the installer can suggest the locale + and timezone settings for you. You can fine-tune the suggested settings below. Search the map by dragging + to move and using the +/- buttons to zoom in/out or use mouse scrolling for zooming. + + + + + NetInstallViewStep + + + Package selection + + + + + Office software + + + + + Office package + + + + + Browser software + + + + + Browser package + + + + + Web browser + + + + + Kernel + + + + + Services + + + + + Login + + + + + Desktop + + + + + Applications + + + + + Communication + + + + + Development + + + + + Office + + + + + Multimedia + + + + + Internet + + + + + Theming + + + + + Gaming + + + + + Utilities + + + + + NotesQmlViewStep + + + Notes + + + + + OEMPage + + + Ba&tch: + + + + + <html><head/><body><p>Enter a batch-identifier here. This will be stored in the target system.</p></body></html> + + + + + <html><head/><body><h1>OEM Configuration</h1><p>Calamares will use OEM settings while configuring the target system.</p></body></html> + + + + + OEMViewStep + + + OEM Configuration + + + + + Set the OEM Batch Identifier to <code>%1</code>. + + + + + Offline + + + Select your preferred Region, or use the default settings. + + + + + + + Timezone: %1 + + + + + Select your preferred Zone within your Region. + + + + + Zones + + + + + You can fine-tune Language and Locale settings below. + + + + + PWQ + + + Password is too short + + + + + Password is too long + + + + + Password is too weak + + + + + Memory allocation error when setting '%1' + + + + + Memory allocation error + + + + + The password is the same as the old one + + + + + The password is a palindrome + + + + + The password differs with case changes only + + + + + The password is too similar to the old one + + + + + The password contains the user name in some form + + + + + The password contains words from the real name of the user in some form + + + + + The password contains forbidden words in some form + + + + + The password contains too few digits + + + + + The password contains too few uppercase letters + + + + + The password contains fewer than %n lowercase letters + + + + + + + The password contains too few lowercase letters + + + + + The password contains too few non-alphanumeric characters + + + + + The password is too short + + + + + The password does not contain enough character classes + + + + + The password contains too many same characters consecutively + + + + + The password contains too many characters of the same class consecutively + + + + + The password contains fewer than %n digits + + + + + + + The password contains fewer than %n uppercase letters + + + + + + + The password contains fewer than %n non-alphanumeric characters + + + + + + + The password is shorter than %n characters + + + + + + + The password is a rotated version of the previous one + + + + + The password contains fewer than %n character classes + + + + + + + The password contains more than %n same characters consecutively + + + + + + + The password contains more than %n characters of the same class consecutively + + + + + + + The password contains monotonic sequence longer than %n characters + + + + + + + The password contains too long of a monotonic character sequence + + + + + No password supplied + + + + + Cannot obtain random numbers from the RNG device + + + + + Password generation failed - required entropy too low for settings + + + + + The password fails the dictionary check - %1 + + + + + The password fails the dictionary check + + + + + Unknown setting - %1 + + + + + Unknown setting + + + + + Bad integer value of setting - %1 + + + + + Bad integer value + + + + + Setting %1 is not of integer type + + + + + Setting is not of integer type + + + + + Setting %1 is not of string type + + + + + Setting is not of string type + + + + + Opening the configuration file failed + + + + + The configuration file is malformed + + + + + Fatal failure + + + + + Unknown error + + + + + Password is empty + + + + + PackageChooserPage + + + Form + + + + + Product Name + + + + + TextLabel + + + + + Long Product Description + + + + + Package Selection + + + + + Please pick a product from the list. The selected product will be installed. + + + + + PackageChooserViewStep + + + Packages + + + + + PackageModel + + + Name + + + + + Description + + + + + Page_Keyboard + + + Form + + + + + Keyboard Model: + + + + + Type here to test your keyboard + + + + + Page_UserSetup + + + Form + + + + + What is your name? + + + + + Your Full Name + + + + + What name do you want to use to log in? + + + + + login + + + + + What is the name of this computer? + + + + + <small>This name will be used if you make the computer visible to others on a network.</small> + + + + + Computer Name + + + + + Choose a password to keep your account safe. + + + + + + <small>Enter the same password twice, so that it can be checked for typing errors. A good password will contain a mixture of letters, numbers and punctuation, should be at least eight characters long, and should be changed at regular intervals.</small> + + + + + + Password + + + + + + Repeat Password + + + + + When this box is checked, password-strength checking is done and you will not be able to use a weak password. + + + + + Require strong passwords. + + + + + Log in automatically without asking for the password. + + + + + Use the same password for the administrator account. + + + + + Choose a password for the administrator account. + + + + + + <small>Enter the same password twice, so that it can be checked for typing errors.</small> + + + + + PartitionLabelsView + + + Root + + + + + Home + + + + + Boot + + + + + EFI system + + + + + Swap + + + + + New partition for %1 + + + + + New partition + + + + + %1 %2 + size[number] filesystem[name] + + + + + PartitionModel + + + + Free Space + + + + + + New partition + + + + + Name + + + + + File System + + + + + File System Label + + + + + Mount Point + + + + + Size + + + + + PartitionPage + + + Form + + + + + Storage de&vice: + + + + + &Revert All Changes + + + + + New Partition &Table + + + + + Cre&ate + + + + + &Edit + + + + + &Delete + + + + + New Volume Group + + + + + Resize Volume Group + + + + + Deactivate Volume Group + + + + + Remove Volume Group + + + + + I&nstall boot loader on: + + + + + Are you sure you want to create a new partition table on %1? + + + + + Can not create new partition + + + + + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. + + + + + PartitionViewStep + + + Gathering system information... + + + + + Partitions + + + + + Install %1 <strong>alongside</strong> another operating system. + + + + + <strong>Erase</strong> disk and install %1. + + + + + <strong>Replace</strong> a partition with %1. + + + + + <strong>Manual</strong> partitioning. + + + + + Install %1 <strong>alongside</strong> another operating system on disk <strong>%2</strong> (%3). + + + + + <strong>Erase</strong> disk <strong>%2</strong> (%3) and install %1. + + + + + <strong>Replace</strong> a partition on disk <strong>%2</strong> (%3) with %1. + + + + + <strong>Manual</strong> partitioning on disk <strong>%1</strong> (%2). + + + + + Disk <strong>%1</strong> (%2) + + + + + Current: + + + + + After: + + + + + No EFI system partition configured + + + + + An EFI system partition is necessary to start %1.<br/><br/>To configure an EFI system partition, go back and select or create a FAT32 filesystem with the <strong>%3</strong> flag enabled and mount point <strong>%2</strong>.<br/><br/>You can continue without setting up an EFI system partition but your system may fail to start. + + + + + An EFI system partition is necessary to start %1.<br/><br/>A partition was configured with mount point <strong>%2</strong> but its <strong>%3</strong> flag is not set.<br/>To set the flag, go back and edit the partition.<br/><br/>You can continue without setting the flag but your system may fail to start. + + + + + EFI system partition flag not set + + + + + Option to use GPT on BIOS + + + + + A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.<br/><br/>To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the <strong>bios_grub</strong> flag enabled.<br/><br/>An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT. + + + + + Boot partition not encrypted + + + + + A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.<br/><br/>There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.<br/>You may continue if you wish, but filesystem unlocking will happen later during system startup.<br/>To encrypt the boot partition, go back and recreate it, selecting <strong>Encrypt</strong> in the partition creation window. + + + + + has at least one disk device available. + + + + + There are no partitions to install on. + + + + + PlasmaLnfJob + + + Plasma Look-and-Feel Job + + + + + + Could not select KDE Plasma Look-and-Feel package + + + + + PlasmaLnfPage + + + Form + + + + + Please choose a look-and-feel for the KDE Plasma Desktop. You can also skip this step and configure the look-and-feel once the system is set up. Clicking on a look-and-feel selection will give you a live preview of that look-and-feel. + + + + + Please choose a look-and-feel for the KDE Plasma Desktop. You can also skip this step and configure the look-and-feel once the system is installed. Clicking on a look-and-feel selection will give you a live preview of that look-and-feel. + + + + + PlasmaLnfViewStep + + + Look-and-Feel + + + + + PreserveFiles + + + Saving files for later ... + + + + + No files configured to save for later. + + + + + Not all of the configured files could be preserved. + + + + + ProcessResult + + + +There was no output from the command. + + + + + +Output: + + + + + + External command crashed. + + + + + Command <i>%1</i> crashed. + + + + + External command failed to start. + + + + + Command <i>%1</i> failed to start. + + + + + Internal error when starting command. + + + + + Bad parameters for process job call. + + + + + External command failed to finish. + + + + + Command <i>%1</i> failed to finish in %2 seconds. + + + + + External command finished with errors. + + + + + Command <i>%1</i> finished with exit code %2. + + + + + QObject + + + %1 (%2) + + + + + unknown + + + + + extended + + + + + unformatted + + + + + swap + + + + + + Default + + + + + + + + File not found + + + + + Path <pre>%1</pre> must be an absolute path. + + + + + Directory not found + + + + + + Could not create new random file <pre>%1</pre>. + + + + + No product + + + + + No description provided. + + + + + (no mount point) + + + + + Unpartitioned space or unknown partition table + + + + + Recommended + + + <p>This computer does not satisfy some of the recommended requirements for setting up %1.<br/> + Setup can continue, but some features might be disabled.</p> + + + + + RemoveUserJob + + + Remove live user from target system + + + + + RemoveVolumeGroupJob + + + + Remove Volume Group named %1. + + + + + Remove Volume Group named <strong>%1</strong>. + + + + + The installer failed to remove a volume group named '%1'. + + + + + ReplaceWidget + + + Form + + + + + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. + + + + + The selected item does not appear to be a valid partition. + + + + + %1 cannot be installed on empty space. Please select an existing partition. + + + + + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. + + + + + %1 cannot be installed on this partition. + + + + + Data partition (%1) + + + + + Unknown system partition (%1) + + + + + %1 system partition (%2) + + + + + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. + + + + + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. + + + + + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. + + + + + The EFI system partition at %1 will be used for starting %2. + + + + + EFI system partition: + + + + + Requirements + + + <p>This computer does not satisfy the minimum requirements for installing %1.<br/> + Installation cannot continue.</p> + + + + + <p>This computer does not satisfy some of the recommended requirements for setting up %1.<br/> + Setup can continue, but some features might be disabled.</p> + + + + + ResizeFSJob + + + Resize Filesystem Job + + + + + Invalid configuration + + + + + The file-system resize job has an invalid configuration and will not run. + + + + + KPMCore not Available + + + + + Calamares cannot start KPMCore for the file-system resize job. + + + + + + + + + Resize Failed + + + + + The filesystem %1 could not be found in this system, and cannot be resized. + + + + + The device %1 could not be found in this system, and cannot be resized. + + + + + + The filesystem %1 cannot be resized. + + + + + + The device %1 cannot be resized. + + + + + The filesystem %1 must be resized, but cannot. + + + + + The device %1 must be resized, but cannot + + + + + ResizePartitionJob + + + Resize partition %1. + + + + + Resize <strong>%2MiB</strong> partition <strong>%1</strong> to <strong>%3MiB</strong>. + + + + + Resizing %2MiB partition %1 to %3MiB. + + + + + The installer failed to resize partition %1 on disk '%2'. + + + + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + + + ResizeVolumeGroupJob + + + + Resize volume group named %1 from %2 to %3. + + + + + Resize volume group named <strong>%1</strong> from <strong>%2</strong> to <strong>%3</strong>. + + + + + The installer failed to resize a volume group named '%1'. + + + + + ResultsListDialog + + + For best results, please ensure that this computer: + + + + + System requirements + + + + + ResultsListWidget + + + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> + + + + + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> + + + + + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. + + + + + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. + + + + + This program will ask you some questions and set up %2 on your computer. + + + + + ScanningDialog + + + Scanning storage devices... + + + + + Partitioning + + + + + SetHostNameJob + + + Set hostname %1 + + + + + Set hostname <strong>%1</strong>. + + + + + Setting hostname %1. + + + + + + Internal Error + + + + + + Cannot write hostname to target system + + + + + SetKeyboardLayoutJob + + + Set keyboard model to %1, layout to %2-%3 + + + + + Failed to write keyboard configuration for the virtual console. + + + + + + + Failed to write to %1 + + + + + Failed to write keyboard configuration for X11. + + + + + Failed to write keyboard configuration to existing /etc/default directory. + + + + + SetPartFlagsJob + + + Set flags on partition %1. + + + + + Set flags on %1MiB %2 partition. + + + + + Set flags on new partition. + + + + + Clear flags on partition <strong>%1</strong>. + + + + + Clear flags on %1MiB <strong>%2</strong> partition. + + + + + Clear flags on new partition. + + + + + Flag partition <strong>%1</strong> as <strong>%2</strong>. + + + + + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. + + + + + Flag new partition as <strong>%1</strong>. + + + + + Clearing flags on partition <strong>%1</strong>. + + + + + Clearing flags on %1MiB <strong>%2</strong> partition. + + + + + Clearing flags on new partition. + + + + + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. + + + + + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. + + + + + Setting flags <strong>%1</strong> on new partition. + + + + + The installer failed to set flags on partition %1. + + + + + SetPasswordJob + + + Set password for user %1 + + + + + Setting password for user %1. + + + + + Bad destination system path. + + + + + rootMountPoint is %1 + + + + + Cannot disable root account. + + + + + passwd terminated with error code %1. + + + + + Cannot set password for user %1. + + + + + usermod terminated with error code %1. + + + + + SetTimezoneJob + + + Set timezone to %1/%2 + + + + + Cannot access selected timezone path. + + + + + Bad path: %1 + + + + + Cannot set timezone. + + + + + Link creation failed, target: %1; link name: %2 + + + + + Cannot set timezone, + + + + + Cannot open /etc/timezone for writing + + + + + SetupGroupsJob + + + Preparing groups. + + + + + + Could not create groups in target system + + + + + These groups are missing in the target system: %1 + + + + + SetupSudoJob + + + Configure <pre>sudo</pre> users. + + + + + Cannot chmod sudoers file. + + + + + Cannot create sudoers file for writing. + + + + + ShellProcessJob + + + Shell Processes Job + + + + + SlideCounter + + + %L1 / %L2 + slide counter, %1 of %2 (numeric) + + + + + SummaryPage + + + This is an overview of what will happen once you start the setup procedure. + + + + + This is an overview of what will happen once you start the install procedure. + + + + + SummaryViewStep + + + Summary + + + + + TrackingInstallJob + + + Installation feedback + + + + + Sending installation feedback. + + + + + Internal error in install-tracking. + + + + + HTTP request timed out. + + + + + TrackingKUserFeedbackJob + + + KDE user feedback + + + + + Configuring KDE user feedback. + + + + + + Error in KDE user feedback configuration. + + + + + Could not configure KDE user feedback correctly, script error %1. + + + + + Could not configure KDE user feedback correctly, Calamares error %1. + + + + + TrackingMachineUpdateManagerJob + + + Machine feedback + + + + + Configuring machine feedback. + + + + + + Error in machine feedback configuration. + + + + + Could not configure machine feedback correctly, script error %1. + + + + + Could not configure machine feedback correctly, Calamares error %1. + + + + + TrackingPage + + + Form + + + + + Placeholder + + + + + <html><head/><body><p>Click here to send <span style=" font-weight:600;">no information at all</span> about your installation.</p></body></html> + + + + + <html><head/><body><p><a href="placeholder"><span style=" text-decoration: underline; color:#2980b9;">Click here for more information about user feedback</span></a></p></body></html> + + + + + Tracking helps %1 to see how often it is installed, what hardware it is installed on and which applications are used. To see what will be sent, please click the help icon next to each area. + + + + + By selecting this you will send information about your installation and hardware. This information will only be sent <b>once</b> after the installation finishes. + + + + + By selecting this you will periodically send information about your <b>machine</b> installation, hardware and applications, to %1. + + + + + By selecting this you will regularly send information about your <b>user</b> installation, hardware, applications and application usage patterns, to %1. + + + + + TrackingViewStep + + + Feedback + + + + + UsersPage + + + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> + + + + + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> + + + + + UsersQmlViewStep + + + Users + + + + + UsersViewStep + + + Users + + + + + VariantModel + + + Key + Column header for key/value + + + + + Value + Column header for key/value + + + + + VolumeGroupBaseDialog + + + Create Volume Group + + + + + List of Physical Volumes + + + + + Volume Group Name: + + + + + Volume Group Type: + + + + + Physical Extent Size: + + + + + MiB + + + + + Total Size: + + + + + Used Size: + + + + + Total Sectors: + + + + + Quantity of LVs: + + + + + WelcomePage + + + Form + + + + + + Select application and system language + + + + + &About + + + + + Open donations website + + + + + &Donate + + + + + Open help and support website + + + + + &Support + + + + + Open issues and bug-tracking website + + + + + &Known issues + + + + + Open release notes website + + + + + &Release notes + + + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + + + + + %1 support + + + + + About %1 setup + + + + + About %1 installer + + + + + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2020 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. + + + + + WelcomeQmlViewStep + + + Welcome + + + + + WelcomeViewStep + + + Welcome + + + + + about + + + <h1>%1</h1><br/> + <strong>%2<br/> + for %3</strong><br/><br/> + Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/> + Copyright 2017-2020 Adriaan de Groot &lt;groot@kde.org&gt;<br/> + Thanks to <a href='https://calamares.io/team/'>the Calamares team</a> + and the <a href='https://www.transifex.com/calamares/calamares/'>Calamares + translators team</a>.<br/><br/> + <a href='https://calamares.io/'>Calamares</a> + development is sponsored by <br/> + <a href='http://www.blue-systems.com/'>Blue Systems</a> - + Liberating Software. + + + + + Back + + + + + calamares-sidebar + + + Show debug information + + + + + finishedq + + + Installation Completed + + + + + %1 has been installed on your computer.<br/> + You may now restart into your new system, or continue using the Live environment. + + + + + Close Installer + + + + + Restart System + + + + + <p>A full log of the install is available as installation.log in the home directory of the Live user.<br/> + This log is copied to /var/log/installation.log of the target system.</p> + + + + + i18n + + + <h1>Languages</h1> </br> + The system locale setting affects the language and character set for some command line user interface elements. The current setting is <strong>%1</strong>. + + + + + <h1>Locales</h1> </br> + The system locale setting affects the numbers and dates format. The current setting is <strong>%1</strong>. + + + + + Back + + + + + keyboardq + + + Keyboard Model + + + + + Layouts + + + + + Keyboard Layout + + + + + Click your preferred keyboard model to select layout and variant, or use the default one based on the detected hardware. + + + + + Models + + + + + Variants + + + + + Keyboard Variant + + + + + Test your keyboard + + + + + localeq + + + Change + + + + + notesqml + + + <h3>%1</h3> + <p>These are example release notes.</p> + + + + + release_notes + + + <h3>%1</h3> + <p>This an example QML file, showing options in RichText with Flickable content.</p> + + <p>QML with RichText can use HTML tags, Flickable content is useful for touchscreens.</p> + + <p><b>This is bold text</b></p> + <p><i>This is italic text</i></p> + <p><u>This is underlined text</u></p> + <p><center>This text will be center-aligned.</center></p> + <p><s>This is strikethrough</s></p> + + <p>Code example: + <code>ls -l /home</code></p> + + <p><b>Lists:</b></p> + <ul> + <li>Intel CPU systems</li> + <li>AMD CPU systems</li> + </ul> + + <p>The vertical scrollbar is adjustable, current width set to 10.</p> + + + + + Back + + + + + usersq + + + Pick your user name and credentials to login and perform admin tasks + + + + + What is your name? + + + + + Your Full Name + + + + + What name do you want to use to log in? + + + + + Login Name + + + + + If more than one person will use this computer, you can create multiple accounts after installation. + + + + + Only lowercase letters, numbers, underscore and hyphen are allowed. + + + + + root is not allowed as username. + + + + + What is the name of this computer? + + + + + Computer Name + + + + + This name will be used if you make the computer visible to others on a network. + + + + + localhost is not allowed as hostname. + + + + + Choose a password to keep your account safe. + + + + + Password + + + + + Repeat Password + + + + + Enter the same password twice, so that it can be checked for typing errors. A good password will contain a mixture of letters, numbers and punctuation, should be at least eight characters long, and should be changed at regular intervals. + + + + + Validate passwords quality + + + + + When this box is checked, password-strength checking is done and you will not be able to use a weak password. + + + + + Log in automatically without asking for the password + + + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + + + + Reuse user password as root password + + + + + Use the same password for the administrator account. + + + + + Choose a root password to keep your account safe. + + + + + Root Password + + + + + Repeat Root Password + + + + + Enter the same password twice, so that it can be checked for typing errors. + + + + + welcomeq + + + <h3>Welcome to the %1 <quote>%2</quote> installer</h3> + <p>This program will ask you some questions and set up %1 on your computer.</p> + + + + + About + + + + + Support + + + + + Known issues + + + + + Release notes + + + + + Donate + + + + diff --git a/lang/calamares_lo.ts b/lang/calamares_lo.ts index 078a35924..5dedf63f1 100644 --- a/lang/calamares_lo.ts +++ b/lang/calamares_lo.ts @@ -4219,11 +4219,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4264,6 +4259,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_lt.ts b/lang/calamares_lt.ts index 5d1cfb128..fc2dc392d 100644 --- a/lang/calamares_lt.ts +++ b/lang/calamares_lt.ts @@ -4302,11 +4302,6 @@ Išvestis: This name will be used if you make the computer visible to others on a network. Šis vardas bus naudojamas, jeigu padarysite savo kompiuterį matomą kitiems naudotojams tinkle. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - Yra leidžiamos tik raidės, skaitmenys, pabraukimo brūkšniai ir brūkšneliai, mažiausiai du simboliai. - localhost is not allowed as hostname. @@ -4347,6 +4342,11 @@ Išvestis: Log in automatically without asking for the password Prisijungti automatiškai, neklausiant slaptažodžio + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + Yra leidžiamos tik raidės, skaitmenys, pabraukimo brūkšniai ir brūkšneliai, mažiausiai du simboliai. + Reuse user password as root password diff --git a/lang/calamares_lv.ts b/lang/calamares_lv.ts index b936a28ea..dc4ed67ec 100644 --- a/lang/calamares_lv.ts +++ b/lang/calamares_lv.ts @@ -4241,11 +4241,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4286,6 +4281,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_mk.ts b/lang/calamares_mk.ts index 90b11403a..37bd8c4ae 100644 --- a/lang/calamares_mk.ts +++ b/lang/calamares_mk.ts @@ -4230,11 +4230,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4275,6 +4270,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_ml.ts b/lang/calamares_ml.ts index 33acf004c..452c86b3b 100644 --- a/lang/calamares_ml.ts +++ b/lang/calamares_ml.ts @@ -4235,11 +4235,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4280,6 +4275,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_mr.ts b/lang/calamares_mr.ts index a37967058..5d3e3f247 100644 --- a/lang/calamares_mr.ts +++ b/lang/calamares_mr.ts @@ -4230,11 +4230,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4275,6 +4270,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_nb.ts b/lang/calamares_nb.ts index dec18302f..cc8eb5faa 100644 --- a/lang/calamares_nb.ts +++ b/lang/calamares_nb.ts @@ -4231,11 +4231,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4276,6 +4271,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_ne.ts b/lang/calamares_ne.ts index d88f94b71..a8bf13fc8 100644 --- a/lang/calamares_ne.ts +++ b/lang/calamares_ne.ts @@ -4230,11 +4230,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4275,6 +4270,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_ne_NP.ts b/lang/calamares_ne_NP.ts index eceb64838..e6aa4a9a9 100644 --- a/lang/calamares_ne_NP.ts +++ b/lang/calamares_ne_NP.ts @@ -4230,11 +4230,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4275,6 +4270,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_nl.ts b/lang/calamares_nl.ts index 7dafba7ac..ba5e57f00 100644 --- a/lang/calamares_nl.ts +++ b/lang/calamares_nl.ts @@ -4264,11 +4264,6 @@ De systeemstijdinstellingen beïnvloeden de cijfer- en datumsformaat. De huidige This name will be used if you make the computer visible to others on a network. Deze naam zal worden gebruikt als u de computer zichtbaar maakt voor anderen op een netwerk. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4309,6 +4304,11 @@ De systeemstijdinstellingen beïnvloeden de cijfer- en datumsformaat. De huidige Log in automatically without asking for the password Automatisch aanmelden zonder wachtwoord te vragen + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_pl.ts b/lang/calamares_pl.ts index 0b952b9d1..866f23eb5 100644 --- a/lang/calamares_pl.ts +++ b/lang/calamares_pl.ts @@ -4257,11 +4257,6 @@ i nie uruchomi się This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4302,6 +4297,11 @@ i nie uruchomi się Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_pt_BR.ts b/lang/calamares_pt_BR.ts index 842fe090b..039b689ae 100644 --- a/lang/calamares_pt_BR.ts +++ b/lang/calamares_pt_BR.ts @@ -4280,11 +4280,6 @@ Saída: This name will be used if you make the computer visible to others on a network. Este nome será usado se você fizer o computador ficar visível para outros numa rede. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4325,6 +4320,11 @@ Saída: Log in automatically without asking for the password Entrar automaticamente sem perguntar pela senha + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_pt_PT.ts b/lang/calamares_pt_PT.ts index a0bb6ca38..50a785391 100644 --- a/lang/calamares_pt_PT.ts +++ b/lang/calamares_pt_PT.ts @@ -4280,11 +4280,6 @@ Saída de Dados: This name will be used if you make the computer visible to others on a network. Este nome será utilizado se tornar o computador visível a outros numa rede. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - Apenas letras, números, sublinhado e hífen são permitidos, com um mínimo de dois caracteres. - localhost is not allowed as hostname. @@ -4325,6 +4320,11 @@ Saída de Dados: Log in automatically without asking for the password Iniciar sessão automaticamente sem pedir a palavra-passe + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_ro.ts b/lang/calamares_ro.ts index d183cd42c..6a232aeb7 100644 --- a/lang/calamares_ro.ts +++ b/lang/calamares_ro.ts @@ -4248,11 +4248,6 @@ Output This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4293,6 +4288,11 @@ Output Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_ru.ts b/lang/calamares_ru.ts index 46c87aab6..113a679d5 100644 --- a/lang/calamares_ru.ts +++ b/lang/calamares_ru.ts @@ -4258,11 +4258,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4303,6 +4298,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_ru_RU.ts b/lang/calamares_ru_RU.ts index 483e76a4e..54b71d4a5 100644 --- a/lang/calamares_ru_RU.ts +++ b/lang/calamares_ru_RU.ts @@ -4252,11 +4252,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4297,6 +4292,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_si.ts b/lang/calamares_si.ts index 84c821a15..0b46d0858 100644 --- a/lang/calamares_si.ts +++ b/lang/calamares_si.ts @@ -4230,11 +4230,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4275,6 +4270,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_sk.ts b/lang/calamares_sk.ts index aaba86b91..840a9415a 100644 --- a/lang/calamares_sk.ts +++ b/lang/calamares_sk.ts @@ -787,12 +787,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Network Installation. (Disabled: Internal error) - + Sieťová inštalácia. (Zakázaná: vnútorná chyba) Network Installation. (Disabled: No package list) - + Sieťová inštalácia. (Zakázaná: bez zoznamu balíkov) @@ -897,7 +897,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. OK! - + OK! @@ -912,12 +912,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. The setup of %1 did not complete successfully. - + Inštalácia distribúcie %1 nebola úspešne dokončená. The installation of %1 did not complete successfully. - + Inštalácia distribúcie %1 bola úspešne dokončená. @@ -1013,12 +1013,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Label for the filesystem - + Menovka systému súborov FS Label: - + Menovka SS: @@ -1051,12 +1051,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Create new %1MiB partition on %3 (%2) with entries %4. - + Vytvorenie nového %1MiB oddielu na zariadení %3 (%2) so záznamami %4. Create new %1MiB partition on %3 (%2). - + Vytvorenie nového %1MiB oddielu na zariadení %3 (%2). @@ -1066,12 +1066,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Create new <strong>%1MiB</strong> partition on <strong>%3</strong> (%2) with entries <em>%4</em>. - + Vytvorenie nového <strong>%1MiB</strong> oddielu na zariadení <strong>%3</strong> (%2) so záznamami <em>%4</em>. Create new <strong>%1MiB</strong> partition on <strong>%3</strong> (%2). - + Vytvorenie nového <strong>%1MiB</strong> oddielu na zariadení <strong>%3</strong> (%2). @@ -1377,12 +1377,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Label for the filesystem - + Menovka systému súborov FS Label: - + Menovka SS: @@ -1890,7 +1890,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Quit - + Ukončiť @@ -2113,7 +2113,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Select your preferred Region, or use the default settings. - + Vyberte vami uprednostňovanú oblasť, alebo použite predvolené nastavenia. @@ -2671,7 +2671,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. File System Label - + Menovka systému súborov @@ -4077,23 +4077,24 @@ Výstup: Installation Completed - + Inštalácia dokončená %1 has been installed on your computer.<br/> You may now restart into your new system, or continue using the Live environment. - + Distribúcia %1 bola nainštalovaná do vášho počítača.<br/> + Teraz môžete reštartovať váš počítač a spustiť nový systém, alebo pokračovať v používaní živého prostredia. Close Installer - + Zavrieť inštalátor Restart System - + Reštartovať systém @@ -4275,11 +4276,6 @@ Výstup: This name will be used if you make the computer visible to others on a network. Tento názov bude použitý, keď zviditeľníte počítač ostatným v sieti. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4320,6 +4316,11 @@ Výstup: Log in automatically without asking for the password Prihlásiť automaticky bez pýtania hesla + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_sl.ts b/lang/calamares_sl.ts index c5f8eb265..e615f6fc6 100644 --- a/lang/calamares_sl.ts +++ b/lang/calamares_sl.ts @@ -4253,11 +4253,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4298,6 +4293,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_sq.ts b/lang/calamares_sq.ts index 339579e76..a21db2c68 100644 --- a/lang/calamares_sq.ts +++ b/lang/calamares_sq.ts @@ -4278,11 +4278,6 @@ Përfundim: This name will be used if you make the computer visible to others on a network. Ky emër do të përdoret nëse e bëni kompjuterin të dukshëm për të tjerët në një rrjet. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - Lejohen vetëm shkronja, numra, nënvijë dhe vijë ndarëse. minimumi dy shenja. - localhost is not allowed as hostname. @@ -4323,6 +4318,11 @@ Përfundim: Log in automatically without asking for the password Kryej hyrje vetvetiu, pa kërkuar fjalëkalimin. + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + Lejohen vetëm shkronja, numra, nënvijë dhe vijë ndarëse. minimumi dy shenja. + Reuse user password as root password diff --git a/lang/calamares_sr.ts b/lang/calamares_sr.ts index 70e92f84f..18c03de1f 100644 --- a/lang/calamares_sr.ts +++ b/lang/calamares_sr.ts @@ -4242,11 +4242,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4287,6 +4282,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_sr@latin.ts b/lang/calamares_sr@latin.ts index d6174a76e..118bab6ea 100644 --- a/lang/calamares_sr@latin.ts +++ b/lang/calamares_sr@latin.ts @@ -4242,11 +4242,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4287,6 +4282,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_sv.ts b/lang/calamares_sv.ts index 4e4cbaff0..6b6b7462d 100644 --- a/lang/calamares_sv.ts +++ b/lang/calamares_sv.ts @@ -509,12 +509,12 @@ Alla ändringar kommer att gå förlorade. Set filesystem label on %1. - + Sätt filsystem etikett på %1. Set filesystem label <strong>%1</strong> to partition <strong>%2</strong>. - + Sätt filsystem etikett <strong>%1</strong> på partition <strong>%2</strong>. @@ -895,7 +895,7 @@ Alla ändringar kommer att gå förlorade. OK! - + OK! @@ -1011,12 +1011,12 @@ Alla ändringar kommer att gå förlorade. Label for the filesystem - + Etikett för filsystem FS Label: - + FS Etikett: @@ -1375,12 +1375,12 @@ Alla ändringar kommer att gå förlorade. Label for the filesystem - + Etikett för filsystem FS Label: - + FS Etikett: @@ -1888,7 +1888,7 @@ Alla ändringar kommer att gå förlorade. Quit - + Avsluta @@ -2113,7 +2113,7 @@ Sök på kartan genom att dra Select your preferred Region, or use the default settings. - + Välj din föredragna Region, eller använd standardinställningarna. @@ -2653,7 +2653,7 @@ Sök på kartan genom att dra File System Label - + Filsystem etikett @@ -4263,7 +4263,7 @@ Systems nationella inställningar påverkar nummer och datumformat. Den nuvarand root is not allowed as username. - + root är inte tillåtet som användarnamn. @@ -4280,15 +4280,10 @@ Systems nationella inställningar påverkar nummer och datumformat. Den nuvarand This name will be used if you make the computer visible to others on a network. Detta namn kommer användas om du gör datorn synlig för andra i ett nätverk. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. - + localhost är inte tillåtet som värdnamn. @@ -4325,6 +4320,11 @@ Systems nationella inställningar påverkar nummer och datumformat. Den nuvarand Log in automatically without asking for the password Logga in automatiskt utan att fråga efter ett lösenord. + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + Endast bokstäver, nummer, understreck och bindestreck är tillåtet, minst två tecken. + Reuse user password as root password diff --git a/lang/calamares_te.ts b/lang/calamares_te.ts index d351b57d9..51255dd5f 100644 --- a/lang/calamares_te.ts +++ b/lang/calamares_te.ts @@ -4232,11 +4232,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4277,6 +4272,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_tg.ts b/lang/calamares_tg.ts index 13cb112c2..9c0f534cb 100644 --- a/lang/calamares_tg.ts +++ b/lang/calamares_tg.ts @@ -4274,11 +4274,6 @@ Output: This name will be used if you make the computer visible to others on a network. Ин ном истифода мешавад, агар шумо компютери худро барои дигарон дар шабака намоён кунед. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4319,6 +4314,11 @@ Output: Log in automatically without asking for the password Ба таври худкор бе дархости ниҳонвожа ворид карда шавад + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_th.ts b/lang/calamares_th.ts index f52e8f80a..27e961293 100644 --- a/lang/calamares_th.ts +++ b/lang/calamares_th.ts @@ -37,7 +37,7 @@ Boot Partition - พาร์ทิชัน Boot + พาร์ทิชันบูต @@ -60,7 +60,7 @@ Blank Page - + หน้าว่าง @@ -94,7 +94,7 @@ none - + ไม่มี @@ -147,7 +147,7 @@ Set up - + ตั้งค่า @@ -263,15 +263,15 @@ Waiting for %n module(s). - - + + กำลังรอ %n โมดูล (%n second(s)) - - + + (%n วินาที) @@ -361,7 +361,7 @@ Link copied to clipboard Continue with installation? - + ดำเนินการติดตั้งต่อหรือไม่? @@ -376,7 +376,7 @@ Link copied to clipboard &Set up now - + &ตั้งค่าตอนนี้ @@ -391,12 +391,12 @@ Link copied to clipboard &Set up - + &ตั้งค่า &Install - + &ติดตั้ง @@ -577,7 +577,7 @@ The installer will quit and all changes will be lost. <strong>Select a partition to install on</strong> - + <strong>เลือกพาร์ทิชันที่จะติดตั้ง</strong> @@ -597,7 +597,7 @@ The installer will quit and all changes will be lost. This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + ดูเหมือนว่าอุปกรณ์จัดเก็บนี้ไม่มีระบบปฏิบัติการ คุณต้องการทำอย่างไร?<br/>คุณจะสามารถทบทวนและยืนยันตัวเลือกของคุณก่อนที่จะกระทำการเปลี่ยนแปลงไปยังอุปกรณ์จัดเก็บของคุณ @@ -764,7 +764,7 @@ The installer will quit and all changes will be lost. The numbers and dates locale will be set to %1. - + ตำแหน่งที่ตั้งสำหรับหมายเลขและวันที่จะถูกตั้งค่าเป็น %1 @@ -789,7 +789,7 @@ The installer will quit and all changes will be lost. Package selection - + เลือกแพ็กเกจ @@ -799,12 +799,12 @@ The installer will quit and all changes will be lost. This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + คอมพิวเตอร์เครื่องนี้มีความต้องการไม่เพียงพอที่จะตั้งค่า %1<br/>ไม่สามารถทำการตั้งค่าต่อไปได้ <a href="#details">รายละเอียด...</a> This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - ขณะที่กำลังติดตั้ง ตัวติดตั้งฟ้องว่า คอมพิวเตอร์นี้มีความต้องการไม่เพียงพอที่จะติดตั้ง %1.<br/>ไม่สามารถทำการติดตั้งต่อไปได้ <a href="#details">รายละเอียด...</a> + คอมพิวเตอร์เครื่องนี้มีความต้องการไม่เพียงพอที่จะติดตั้ง %1<br/>ไม่สามารถทำการติดตั้งต่อไปได้ <a href="#details">รายละเอียด...</a> @@ -819,7 +819,7 @@ The installer will quit and all changes will be lost. This program will ask you some questions and set up %2 on your computer. - โปรแกรมนี้จะถามคุณบางอย่าง เพื่อติดตั้ง %2 ไว้ในคอมพิวเตอร์ของคุณ + โปรแกรมนี้จะถามตำถามต่าง ๆ เพื่อติดตั้ง %2 ลงในคอมพิวเตอร์ของคุณ @@ -829,17 +829,17 @@ The installer will quit and all changes will be lost. <h1>Welcome to %1 setup</h1> - + <h1>ยินดีต้อนรับสู่ตัวตั้งค่า %1</h1> <h1>Welcome to the Calamares installer for %1</h1> - + <h1>ยินดีต้อนรับสู่ตัวติดตั้ง Calamares สำหรับ %1</h1> <h1>Welcome to the %1 installer</h1> - + <h1>ยินดีต้อนรับสู่ตัวติดตั้ง %1</h1> @@ -849,7 +849,7 @@ The installer will quit and all changes will be lost. '%1' is not allowed as username. - + ไม่อนุญาตให้ใช้ '%1' เป็นชื่อผู้ใช้ @@ -889,7 +889,7 @@ The installer will quit and all changes will be lost. OK! - + ตกลง! @@ -934,12 +934,12 @@ The installer will quit and all changes will be lost. Package Selection - + เลือกแพ็กเกจ Please pick a product from the list. The selected product will be installed. - + เลือกผลิตภัณฑ์จากรายการ ผลิตภัณฑ์ที่เลือกไว้จะถูกติดตั้ง @@ -1115,17 +1115,17 @@ The installer will quit and all changes will be lost. Create new %1 partition table on %2. - + สร้างตารางพาร์ทิชัน %1 ใหม่บน %2 Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + สร้างตารางพาร์ทิชัน <strong>%1</strong> ใหม่บน <strong>%2</strong> (%3) Creating new %1 partition table on %2. - + กำลังสร้างตารางพาร์ทิชัน %1 ใหม่บน %2 @@ -1143,7 +1143,7 @@ The installer will quit and all changes will be lost. Create user <strong>%1</strong>. - + สร้างผู้ใช้ <strong>%1</strong> @@ -1154,12 +1154,12 @@ The installer will quit and all changes will be lost. Creating user %1 - + กำลังสร้างผู้ใช้ %1 Configuring user %1 - + กำลังกำหนดค่าผู้ใช้ %1 @@ -1222,17 +1222,17 @@ The installer will quit and all changes will be lost. Delete partition %1. - + ลบพาร์ทิชัน %1 Delete partition <strong>%1</strong>. - + ลบพาร์ทิชัน <strong>%1</strong> Deleting partition %1. - + กำลังลบพาร์ทิชัน %1 @@ -1245,7 +1245,7 @@ The installer will quit and all changes will be lost. This device has a <strong>%1</strong> partition table. - + อุปกรณ์นี้มีตารางพาร์ทิชัน <strong>%1</strong> @@ -1303,7 +1303,7 @@ The installer will quit and all changes will be lost. Failed to open %1 - + ไม่สามารถเปิด %1 @@ -1329,7 +1329,7 @@ The installer will quit and all changes will be lost. &Keep - + &เก็บไว้ @@ -1494,7 +1494,7 @@ The installer will quit and all changes will be lost. <h1>All done.</h1><br/>%1 has been installed on your computer.<br/>You may now restart into your new system, or continue using the %2 Live environment. - <h1>เสร็จสิ้น</h1><br/>%1 ติดตั้งบนคอมพิวเตอร์ของคุณเรียบร้อย<br/>คุณสามารถเริ่มทำงานเพื่อเข้าระบบใหม่ของคุณ หรือดำเนินการใช้ %2 Live environment ต่อไป + <h1>เสร็จสิ้น</h1><br/>%1 ติดตั้งบนคอมพิวเตอร์ของคุณเรียบร้อย<br/>คุณสามารถเริ่มต้นใหม่เพื่อเข้าสู่ระบบใหม่ของคุณ หรือดำเนินการใช้ %2 ในแบบไม่ต้องติดตั้ง (Live) ต่อไป @@ -1581,7 +1581,7 @@ The installer will quit and all changes will be lost. The system is not plugged in to a power source. - + ระบบนี้ไม่ได้เชื่อมต่อปลั๊กเข้ากับแหล่งจ่ายไฟ @@ -1611,7 +1611,7 @@ The installer will quit and all changes will be lost. has a screen large enough to show the whole installer - + มีหน้าจอใหญ่พอที่จะแสดงผลตัวติดตั้งได้ทั้งหมด @@ -1621,7 +1621,7 @@ The installer will quit and all changes will be lost. The screen is too small to display the installer. - + หน้าจอเล็กเกินกว่าที่จะแสดงผลตัวติดตั้ง @@ -1629,7 +1629,7 @@ The installer will quit and all changes will be lost. Collecting information about your machine. - + กำลังรวบรวมข้อมูลเกี่ยวกับเครื่องของคุณ @@ -1679,7 +1679,7 @@ The installer will quit and all changes will be lost. Konsole not installed - + ไม่ได้ติดตั้ง Konsole @@ -1721,7 +1721,7 @@ The installer will quit and all changes will be lost. System locale setting - การตั้งค่า locale ระบบ + การตั้งค่าตำแหน่งที่ตั้งระบบ @@ -1736,7 +1736,7 @@ The installer will quit and all changes will be lost. &OK - + &O ตกลง @@ -1832,7 +1832,7 @@ The installer will quit and all changes will be lost. File: %1 - + ไฟล์: %1 @@ -1882,7 +1882,7 @@ The installer will quit and all changes will be lost. Quit - + ออก @@ -1952,7 +1952,7 @@ The installer will quit and all changes will be lost. Timezone: %1 - + เขตเวลา: %1 @@ -1967,7 +1967,7 @@ The installer will quit and all changes will be lost. Package selection - + เลือกแพ็กเกจ @@ -2007,52 +2007,52 @@ The installer will quit and all changes will be lost. Login - + เข้าสู่ระบบ Desktop - + เดสก์ท็อป Applications - + แอปพลิเคชัน Communication - + การสื่อสาร Development - + การพัฒนา Office - + ออฟฟิศ Multimedia - + สื่อ Internet - + อินเทอร์เน็ต Theming - + การปรับแต่ง Gaming - + เกม @@ -2111,7 +2111,7 @@ The installer will quit and all changes will be lost. Timezone: %1 - + เขตเวลา: %1 @@ -2121,7 +2121,7 @@ The installer will quit and all changes will be lost. Zones - + เขต @@ -2405,7 +2405,7 @@ The installer will quit and all changes will be lost. Product Name - + ชื่อผลิตภัณฑ์ @@ -2415,17 +2415,17 @@ The installer will quit and all changes will be lost. Long Product Description - + คำอธิบายผลิตภัณฑ์แบบยาว Package Selection - + เลือกแพ็กเกจ Please pick a product from the list. The selected product will be installed. - + เลือกผลิตภัณฑ์จากรายการ ผลิตภัณฑ์ที่เลือกไว้จะถูกติดตั้ง @@ -2433,7 +2433,7 @@ The installer will quit and all changes will be lost. Packages - + แพ็กเกจ @@ -2477,7 +2477,7 @@ The installer will quit and all changes will be lost. What is your name? - ชื่อของคุณคือ? + ชื่อของคุณคืออะไร? @@ -2487,7 +2487,7 @@ The installer will quit and all changes will be lost. What name do you want to use to log in? - ชื่อที่คุณต้องการใช้ในการล็อกอิน? + ใส่ชื่อที่คุณต้องการใช้ในการเข้าสู่ระบบ @@ -2497,7 +2497,7 @@ The installer will quit and all changes will be lost. What is the name of this computer? - คอมพิวเตอร์เครื่องนี้ชื่อ? + คอมพิวเตอร์เครื่องนี้ชื่ออะไร? @@ -2781,7 +2781,7 @@ The installer will quit and all changes will be lost. Disk <strong>%1</strong> (%2) - + ดิสก์ <strong>%1</strong> (%2) @@ -3309,7 +3309,7 @@ Output: This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + คอมพิวเตอร์เครื่องนี้มีความต้องการไม่เพียงพอที่จะตั้งค่า %1<br/>ไม่สามารถทำการตั้งค่าต่อไปได้ <a href="#details">รายละเอียด...</a> @@ -3593,7 +3593,7 @@ Output: Configure <pre>sudo</pre> users. - + กำหนดค่าผู้ใช้ <pre>sudo</pre> @@ -3855,12 +3855,12 @@ Output: Total Size: - + ขนาดทั้งหมด: Used Size: - + ขนาดที่ใช้ไป: @@ -3934,12 +3934,12 @@ Output: <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>ยินดีต้อนรับสู่โปรแกรมตั้งค่า Calamares สำหรับ %1</h1> <h1>Welcome to %1 setup.</h1> - + <h1>ยินดีต้อนรับสู่ตัวตั้งค่า %1</h1> @@ -3959,7 +3959,7 @@ Output: About %1 setup - + เกี่ยวกับตัวตั้งค่า %1 @@ -4009,7 +4009,7 @@ Output: Back - + ย้อนกลับ @@ -4025,7 +4025,7 @@ Output: Installation Completed - + การติดตั้งเสร็จสิ้น @@ -4036,12 +4036,12 @@ Output: Close Installer - + ปิดตัวติดตั้ง Restart System - + เริ่มต้นระบบใหม่ @@ -4067,7 +4067,7 @@ Output: Back - + ย้อนกลับ @@ -4110,7 +4110,7 @@ Output: Test your keyboard - + ทดสอบคีย์บอร์ด @@ -4118,7 +4118,7 @@ Output: Change - + เปลี่ยน @@ -4160,7 +4160,7 @@ Output: Back - + ย้อนกลับ @@ -4173,7 +4173,7 @@ Output: What is your name? - ชื่อของคุณคือ? + ชื่อของคุณคืออะไร? @@ -4183,7 +4183,7 @@ Output: What name do you want to use to log in? - ชื่อที่คุณต้องการใช้ในการล็อกอิน? + ใส่ชื่อที่คุณต้องการใช้ในการเข้าสู่ระบบ @@ -4208,7 +4208,7 @@ Output: What is the name of this computer? - คอมพิวเตอร์เครื่องนี้ชื่อ? + คอมพิวเตอร์เครื่องนี้ชื่ออะไร? @@ -4220,11 +4220,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4265,6 +4260,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_tr_TR.ts b/lang/calamares_tr_TR.ts index c2f8ab21e..f1c3c7d0a 100644 --- a/lang/calamares_tr_TR.ts +++ b/lang/calamares_tr_TR.ts @@ -4287,11 +4287,6 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.This name will be used if you make the computer visible to others on a network. Bilgisayarı ağ üzerinde herkese görünür yaparsanız bu ad kullanılacaktır. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4332,6 +4327,11 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.Log in automatically without asking for the password Parola sormadan otomatik olarak oturum açın + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_uk.ts b/lang/calamares_uk.ts index 6d11746b6..a59c3c2ec 100644 --- a/lang/calamares_uk.ts +++ b/lang/calamares_uk.ts @@ -4302,11 +4302,6 @@ Output: This name will be used if you make the computer visible to others on a network. Цю назву буде використано, якщо ви зробите комп'ютер видимим іншим у мережі. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - Можна використовувати лише латинські літери, цифри, символи підкреслювання та дефіси; не менше двох символів. - localhost is not allowed as hostname. @@ -4347,6 +4342,11 @@ Output: Log in automatically without asking for the password Входити автоматично без пароля + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + Можна використовувати лише латинські літери, цифри, символи підкреслювання та дефіси; не менше двох символів. + Reuse user password as root password diff --git a/lang/calamares_ur.ts b/lang/calamares_ur.ts index 57df8714b..46230aa0a 100644 --- a/lang/calamares_ur.ts +++ b/lang/calamares_ur.ts @@ -4230,11 +4230,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4275,6 +4270,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_uz.ts b/lang/calamares_uz.ts index 9617b5f93..3de7eccc4 100644 --- a/lang/calamares_uz.ts +++ b/lang/calamares_uz.ts @@ -4219,11 +4219,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4264,6 +4259,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_vi.ts b/lang/calamares_vi.ts index b380bf741..a0ff6ab6e 100644 --- a/lang/calamares_vi.ts +++ b/lang/calamares_vi.ts @@ -4262,11 +4262,6 @@ Output: This name will be used if you make the computer visible to others on a network. Tên này sẽ hiển thị khi bạn kết nối vào một mạng. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4307,6 +4302,11 @@ Output: Log in automatically without asking for the password Tự động đăng nhập không hỏi mật khẩu + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_zh.ts b/lang/calamares_zh.ts index 3ce8df322..9d71a3bef 100644 --- a/lang/calamares_zh.ts +++ b/lang/calamares_zh.ts @@ -4219,11 +4219,6 @@ Output: This name will be used if you make the computer visible to others on a network. - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. @@ -4264,6 +4259,11 @@ Output: Log in automatically without asking for the password + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_zh_CN.ts b/lang/calamares_zh_CN.ts index 9119483ab..a98615982 100644 --- a/lang/calamares_zh_CN.ts +++ b/lang/calamares_zh_CN.ts @@ -110,12 +110,12 @@ Reloads the stylesheet from the branding directory. - + 从Branding目录重新载入样式表 Uploads the session log to the configured pastebin. - + 将会话日志上传至预设的pastebin网站 @@ -337,7 +337,11 @@ %1 Link copied to clipboard - + 发送至 + +%1 + +的链接已保存至剪贴板 @@ -505,7 +509,7 @@ The installer will quit and all changes will be lost. Set filesystem label on %1. - + 在%1设置文件系统卷标 @@ -781,12 +785,12 @@ The installer will quit and all changes will be lost. Network Installation. (Disabled: Internal error) - + 网络安装(因内部错误而被禁用) Network Installation. (Disabled: No package list) - + 网络安装(因无软件包列表而被禁用) @@ -893,7 +897,7 @@ The installer will quit and all changes will be lost. OK! - + 确定 @@ -908,12 +912,12 @@ The installer will quit and all changes will be lost. The setup of %1 did not complete successfully. - + %1的设置未成功完成 The installation of %1 did not complete successfully. - + %1的安装未成功完成 @@ -1009,12 +1013,12 @@ The installer will quit and all changes will be lost. Label for the filesystem - + 此文件系统的卷标名 FS Label: - + 文件系统卷标 @@ -1374,12 +1378,12 @@ The installer will quit and all changes will be lost. Label for the filesystem - + 此文件系统的卷标名 FS Label: - + 文件系统卷标 @@ -1887,7 +1891,7 @@ The installer will quit and all changes will be lost. Quit - + 退出 @@ -2111,7 +2115,7 @@ The installer will quit and all changes will be lost. Select your preferred Region, or use the default settings. - + 请选择你偏好打地区或者使用当期默认设置 @@ -2642,7 +2646,7 @@ The installer will quit and all changes will be lost. File System Label - + 文件系统卷标 @@ -4255,7 +4259,7 @@ Output: root is not allowed as username. - + 用户名不能为root @@ -4272,15 +4276,10 @@ Output: This name will be used if you make the computer visible to others on a network. 将计算机设置为对其他网络上计算机可见时将使用此名称。 - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - - localhost is not allowed as hostname. - + localhost不能为用户名 @@ -4317,6 +4316,11 @@ Output: Log in automatically without asking for the password 不询问密码自动登录 + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + Reuse user password as root password diff --git a/lang/calamares_zh_HK.ts b/lang/calamares_zh_HK.ts new file mode 100644 index 000000000..6c592a6d3 --- /dev/null +++ b/lang/calamares_zh_HK.ts @@ -0,0 +1,4332 @@ + + + + + AutoMountManagementJob + + + Manage auto-mount settings + + + + + BootInfoWidget + + + The <strong>boot environment</strong> of this system.<br><br>Older x86 systems only support <strong>BIOS</strong>.<br>Modern systems usually use <strong>EFI</strong>, but may also show up as BIOS if started in compatibility mode. + + + + + This system was started with an <strong>EFI</strong> boot environment.<br><br>To configure startup from an EFI environment, this installer must deploy a boot loader application, like <strong>GRUB</strong> or <strong>systemd-boot</strong> on an <strong>EFI System Partition</strong>. This is automatic, unless you choose manual partitioning, in which case you must choose it or create it on your own. + + + + + This system was started with a <strong>BIOS</strong> boot environment.<br><br>To configure startup from a BIOS environment, this installer must install a boot loader, like <strong>GRUB</strong>, either at the beginning of a partition or on the <strong>Master Boot Record</strong> near the beginning of the partition table (preferred). This is automatic, unless you choose manual partitioning, in which case you must set it up on your own. + + + + + BootLoaderModel + + + Master Boot Record of %1 + + + + + Boot Partition + + + + + System Partition + + + + + Do not install a boot loader + + + + + %1 (%2) + + + + + Calamares::BlankViewStep + + + Blank Page + + + + + Calamares::DebugWindow + + + Form + + + + + GlobalStorage + + + + + JobQueue + + + + + Modules + + + + + Type: + + + + + + none + + + + + Interface: + + + + + Crashes Calamares, so that Dr. Konqui can look at it. + + + + + Reloads the stylesheet from the branding directory. + + + + + Uploads the session log to the configured pastebin. + + + + + Send Session Log + + + + + Reload Stylesheet + + + + + Displays the tree of widget names in the log (for stylesheet debugging). + + + + + Widget Tree + + + + + Debug information + + + + + Calamares::ExecutionViewStep + + + Set up + + + + + Install + + + + + Calamares::FailJob + + + Job failed (%1) + + + + + Programmed job failure was explicitly requested. + + + + + Calamares::JobThread + + + Done + + + + + Calamares::NamedJob + + + Example job (%1) + + + + + Calamares::ProcessJob + + + Run command '%1' in target system. + + + + + Run command '%1'. + + + + + Running command %1 %2 + + + + + Calamares::PythonJob + + + Running %1 operation. + + + + + Bad working directory path + + + + + Working directory %1 for python job %2 is not readable. + + + + + Bad main script file + + + + + Main script file %1 for python job %2 is not readable. + + + + + Boost.Python error in job "%1". + + + + + Calamares::QmlViewStep + + + Loading ... + + + + + QML Step <i>%1</i>. + + + + + Loading failed. + + + + + Calamares::RequirementsChecker + + + Requirements checking for module <i>%1</i> is complete. + + + + + Waiting for %n module(s). + + + + + + + (%n second(s)) + + + + + + + System-requirements checking is complete. + + + + + Calamares::ViewManager + + + Setup Failed + + + + + Installation Failed + + + + + Would you like to paste the install log to the web? + + + + + Error + + + + + + &Yes + + + + + + &No + + + + + &Close + + + + + Install Log Paste URL + + + + + The upload was unsuccessful. No web-paste was done. + + + + + Install log posted to + +%1 + +Link copied to clipboard + + + + + Calamares Initialization Failed + + + + + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. + + + + + <br/>The following modules could not be loaded: + + + + + Continue with setup? + + + + + Continue with installation? + + + + + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> + + + + + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> + + + + + &Set up now + + + + + &Install now + + + + + Go &back + + + + + &Set up + + + + + &Install + + + + + Setup is complete. Close the setup program. + + + + + The installation is complete. Close the installer. + + + + + Cancel setup without changing the system. + + + + + Cancel installation without changing the system. + + + + + &Next + + + + + &Back + + + + + &Done + + + + + &Cancel + + + + + Cancel setup? + + + + + Cancel installation? + + + + + Do you really want to cancel the current setup process? +The setup program will quit and all changes will be lost. + + + + + Do you really want to cancel the current install process? +The installer will quit and all changes will be lost. + + + + + CalamaresPython::Helper + + + Unknown exception type + + + + + unparseable Python error + + + + + unparseable Python traceback + + + + + Unfetchable Python error. + + + + + CalamaresWindow + + + %1 Setup Program + + + + + %1 Installer + + + + + ChangeFilesystemLabelJob + + + Set filesystem label on %1. + + + + + Set filesystem label <strong>%1</strong> to partition <strong>%2</strong>. + + + + + The installer failed to update partition table on disk '%1'. + + + + + CheckerContainer + + + Gathering system information... + + + + + ChoicePage + + + Form + + + + + Select storage de&vice: + + + + + + + + Current: + + + + + After: + + + + + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. + + + + + Reuse %1 as home partition for %2. + + + + + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> + + + + + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. + + + + + Boot loader location: + + + + + <strong>Select a partition to install on</strong> + + + + + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. + + + + + The EFI system partition at %1 will be used for starting %2. + + + + + EFI system partition: + + + + + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. + + + + + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. + + + + + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. + + + + + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. + + + + + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. + + + + + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. + + + + + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. + + + + + This storage device already has an operating system on it, but the partition table <strong>%1</strong> is different from the needed <strong>%2</strong>.<br/> + + + + + This storage device has one of its partitions <strong>mounted</strong>. + + + + + This storage device is a part of an <strong>inactive RAID</strong> device. + + + + + No Swap + + + + + Reuse Swap + + + + + Swap (no Hibernate) + + + + + Swap (with Hibernate) + + + + + Swap to file + + + + + ClearMountsJob + + + Clear mounts for partitioning operations on %1 + + + + + Clearing mounts for partitioning operations on %1. + + + + + Cleared all mounts for %1 + + + + + ClearTempMountsJob + + + Clear all temporary mounts. + + + + + Clearing all temporary mounts. + + + + + Cannot get list of temporary mounts. + + + + + Cleared all temporary mounts. + + + + + CommandList + + + + Could not run command. + + + + + The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined. + + + + + The command needs to know the user's name, but no username is defined. + + + + + Config + + + Set keyboard model to %1.<br/> + + + + + Set keyboard layout to %1/%2. + + + + + Set timezone to %1/%2. + + + + + The system language will be set to %1. + + + + + The numbers and dates locale will be set to %1. + + + + + Network Installation. (Disabled: Incorrect configuration) + + + + + Network Installation. (Disabled: Received invalid groups data) + + + + + Network Installation. (Disabled: Internal error) + + + + + Network Installation. (Disabled: No package list) + + + + + Package selection + + + + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) + + + + + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> + + + + + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> + + + + + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. + + + + + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. + + + + + This program will ask you some questions and set up %2 on your computer. + + + + + <h1>Welcome to the Calamares setup program for %1</h1> + + + + + <h1>Welcome to %1 setup</h1> + + + + + <h1>Welcome to the Calamares installer for %1</h1> + + + + + <h1>Welcome to the %1 installer</h1> + + + + + Your username is too long. + + + + + '%1' is not allowed as username. + + + + + Your username must start with a lowercase letter or underscore. + + + + + Only lowercase letters, numbers, underscore and hyphen are allowed. + + + + + Your hostname is too short. + + + + + Your hostname is too long. + + + + + '%1' is not allowed as hostname. + + + + + Only letters, numbers, underscore and hyphen are allowed. + + + + + Your passwords do not match! + + + + + OK! + + + + + Setup Failed + + + + + Installation Failed + + + + + The setup of %1 did not complete successfully. + + + + + The installation of %1 did not complete successfully. + + + + + Setup Complete + + + + + Installation Complete + + + + + The setup of %1 is complete. + + + + + The installation of %1 is complete. + + + + + Package Selection + + + + + Please pick a product from the list. The selected product will be installed. + + + + + ContextualProcessJob + + + Contextual Processes Job + + + + + CreatePartitionDialog + + + Create a Partition + + + + + Si&ze: + + + + + MiB + + + + + Partition &Type: + + + + + &Primary + + + + + E&xtended + + + + + Fi&le System: + + + + + LVM LV name + + + + + &Mount Point: + + + + + Flags: + + + + + Label for the filesystem + + + + + FS Label: + + + + + En&crypt + + + + + Logical + + + + + Primary + + + + + GPT + + + + + Mountpoint already in use. Please select another one. + + + + + CreatePartitionJob + + + Create new %1MiB partition on %3 (%2) with entries %4. + + + + + Create new %1MiB partition on %3 (%2). + + + + + Create new %2MiB partition on %4 (%3) with file system %1. + + + + + Create new <strong>%1MiB</strong> partition on <strong>%3</strong> (%2) with entries <em>%4</em>. + + + + + Create new <strong>%1MiB</strong> partition on <strong>%3</strong> (%2). + + + + + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. + + + + + + Creating new %1 partition on %2. + + + + + The installer failed to create partition on disk '%1'. + + + + + CreatePartitionTableDialog + + + Create Partition Table + + + + + Creating a new partition table will delete all existing data on the disk. + + + + + What kind of partition table do you want to create? + + + + + Master Boot Record (MBR) + + + + + GUID Partition Table (GPT) + + + + + CreatePartitionTableJob + + + Create new %1 partition table on %2. + + + + + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). + + + + + Creating new %1 partition table on %2. + + + + + The installer failed to create a partition table on %1. + + + + + CreateUserJob + + + Create user %1 + + + + + Create user <strong>%1</strong>. + + + + + Preserving home directory + + + + + + Creating user %1 + + + + + Configuring user %1 + + + + + Setting file permissions + + + + + CreateVolumeGroupDialog + + + Create Volume Group + + + + + CreateVolumeGroupJob + + + Create new volume group named %1. + + + + + Create new volume group named <strong>%1</strong>. + + + + + Creating new volume group named %1. + + + + + The installer failed to create a volume group named '%1'. + + + + + DeactivateVolumeGroupJob + + + + Deactivate volume group named %1. + + + + + Deactivate volume group named <strong>%1</strong>. + + + + + The installer failed to deactivate a volume group named %1. + + + + + DeletePartitionJob + + + Delete partition %1. + + + + + Delete partition <strong>%1</strong>. + + + + + Deleting partition %1. + + + + + The installer failed to delete partition %1. + + + + + DeviceInfoWidget + + + This device has a <strong>%1</strong> partition table. + + + + + This is a <strong>loop</strong> device.<br><br>It is a pseudo-device with no partition table that makes a file accessible as a block device. This kind of setup usually only contains a single filesystem. + + + + + This installer <strong>cannot detect a partition table</strong> on the selected storage device.<br><br>The device either has no partition table, or the partition table is corrupted or of an unknown type.<br>This installer can create a new partition table for you, either automatically, or through the manual partitioning page. + + + + + <br><br>This is the recommended partition table type for modern systems which start from an <strong>EFI</strong> boot environment. + + + + + <br><br>This partition table type is only advisable on older systems which start from a <strong>BIOS</strong> boot environment. GPT is recommended in most other cases.<br><br><strong>Warning:</strong> the MBR partition table is an obsolete MS-DOS era standard.<br>Only 4 <em>primary</em> partitions may be created, and of those 4, one can be an <em>extended</em> partition, which may in turn contain many <em>logical</em> partitions. + + + + + The type of <strong>partition table</strong> on the selected storage device.<br><br>The only way to change the partition table type is to erase and recreate the partition table from scratch, which destroys all data on the storage device.<br>This installer will keep the current partition table unless you explicitly choose otherwise.<br>If unsure, on modern systems GPT is preferred. + + + + + DeviceModel + + + %1 - %2 (%3) + device[name] - size[number] (device-node[name]) + + + + + %1 - (%2) + device[name] - (device-node[name]) + + + + + DracutLuksCfgJob + + + Write LUKS configuration for Dracut to %1 + + + + + Skip writing LUKS configuration for Dracut: "/" partition is not encrypted + + + + + Failed to open %1 + + + + + DummyCppJob + + + Dummy C++ Job + + + + + EditExistingPartitionDialog + + + Edit Existing Partition + + + + + Content: + + + + + &Keep + + + + + Format + + + + + Warning: Formatting the partition will erase all existing data. + + + + + &Mount Point: + + + + + Si&ze: + + + + + MiB + + + + + Fi&le System: + + + + + Flags: + + + + + Label for the filesystem + + + + + FS Label: + + + + + Mountpoint already in use. Please select another one. + + + + + EncryptWidget + + + Form + + + + + En&crypt system + + + + + Passphrase + + + + + Confirm passphrase + + + + + + Please enter the same passphrase in both boxes. + + + + + FillGlobalStorageJob + + + Set partition information + + + + + Install %1 on <strong>new</strong> %2 system partition with features <em>%3</em> + + + + + Install %1 on <strong>new</strong> %2 system partition. + + + + + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong> and features <em>%3</em>. + + + + + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>%3. + + + + + Install %2 on %3 system partition <strong>%1</strong> with features <em>%4</em>. + + + + + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong> and features <em>%4</em>. + + + + + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>%4. + + + + + Install %2 on %3 system partition <strong>%1</strong>. + + + + + Install boot loader on <strong>%1</strong>. + + + + + Setting up mount points. + + + + + FinishedPage + + + Form + + + + + &Restart now + + + + + <h1>All done.</h1><br/>%1 has been set up on your computer.<br/>You may now start using your new system. + + + + + <html><head/><body><p>When this box is checked, your system will restart immediately when you click on <span style="font-style:italic;">Done</span> or close the setup program.</p></body></html> + + + + + <h1>All done.</h1><br/>%1 has been installed on your computer.<br/>You may now restart into your new system, or continue using the %2 Live environment. + + + + + <html><head/><body><p>When this box is checked, your system will restart immediately when you click on <span style="font-style:italic;">Done</span> or close the installer.</p></body></html> + + + + + <h1>Setup Failed</h1><br/>%1 has not been set up on your computer.<br/>The error message was: %2. + + + + + <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. + + + + + FinishedQmlViewStep + + + Finish + + + + + FinishedViewStep + + + Finish + + + + + FormatPartitionJob + + + Format partition %1 (file system: %2, size: %3 MiB) on %4. + + + + + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. + + + + + Formatting partition %1 with file system %2. + + + + + The installer failed to format partition %1 on disk '%2'. + + + + + GeneralRequirements + + + has at least %1 GiB available drive space + + + + + There is not enough drive space. At least %1 GiB is required. + + + + + has at least %1 GiB working memory + + + + + The system does not have enough working memory. At least %1 GiB is required. + + + + + is plugged in to a power source + + + + + The system is not plugged in to a power source. + + + + + is connected to the Internet + + + + + The system is not connected to the Internet. + + + + + is running the installer as an administrator (root) + + + + + The setup program is not running with administrator rights. + + + + + The installer is not running with administrator rights. + + + + + has a screen large enough to show the whole installer + + + + + The screen is too small to display the setup program. + + + + + The screen is too small to display the installer. + + + + + HostInfoJob + + + Collecting information about your machine. + + + + + IDJob + + + + + + OEM Batch Identifier + + + + + Could not create directories <code>%1</code>. + + + + + Could not open file <code>%1</code>. + + + + + Could not write to file <code>%1</code>. + + + + + InitcpioJob + + + Creating initramfs with mkinitcpio. + + + + + InitramfsJob + + + Creating initramfs. + + + + + InteractiveTerminalPage + + + Konsole not installed + + + + + Please install KDE Konsole and try again! + + + + + Executing script: &nbsp;<code>%1</code> + + + + + InteractiveTerminalViewStep + + + Script + + + + + KeyboardQmlViewStep + + + Keyboard + + + + + KeyboardViewStep + + + Keyboard + + + + + LCLocaleDialog + + + System locale setting + + + + + The system locale setting affects the language and character set for some command line user interface elements.<br/>The current setting is <strong>%1</strong>. + + + + + &Cancel + + + + + &OK + + + + + LicensePage + + + Form + + + + + <h1>License Agreement</h1> + + + + + I accept the terms and conditions above. + + + + + Please review the End User License Agreements (EULAs). + + + + + This setup procedure will install proprietary software that is subject to licensing terms. + + + + + If you do not agree with the terms, the setup procedure cannot continue. + + + + + This setup procedure can install proprietary software that is subject to licensing terms in order to provide additional features and enhance the user experience. + + + + + If you do not agree with the terms, proprietary software will not be installed, and open source alternatives will be used instead. + + + + + LicenseViewStep + + + License + + + + + LicenseWidget + + + URL: %1 + + + + + <strong>%1 driver</strong><br/>by %2 + %1 is an untranslatable product name, example: Creative Audigy driver + + + + + <strong>%1 graphics driver</strong><br/><font color="Grey">by %2</font> + %1 is usually a vendor name, example: Nvidia graphics driver + + + + + <strong>%1 browser plugin</strong><br/><font color="Grey">by %2</font> + + + + + <strong>%1 codec</strong><br/><font color="Grey">by %2</font> + + + + + <strong>%1 package</strong><br/><font color="Grey">by %2</font> + + + + + <strong>%1</strong><br/><font color="Grey">by %2</font> + + + + + File: %1 + + + + + Hide license text + + + + + Show the license text + + + + + Open license agreement in browser. + + + + + LocalePage + + + Region: + + + + + Zone: + + + + + + &Change... + + + + + LocaleQmlViewStep + + + Location + + + + + LocaleTests + + + Quit + + + + + LocaleViewStep + + + Location + + + + + LuksBootKeyFileJob + + + Configuring LUKS key file. + + + + + + No partitions are defined. + + + + + + + Encrypted rootfs setup error + + + + + Root partition %1 is LUKS but no passphrase has been set. + + + + + Could not create LUKS key file for root partition %1. + + + + + Could not configure LUKS key file on partition %1. + + + + + MachineIdJob + + + Generate machine-id. + + + + + Configuration Error + + + + + No root mount point is set for MachineId. + + + + + Map + + + Timezone: %1 + + + + + Please select your preferred location on the map so the installer can suggest the locale + and timezone settings for you. You can fine-tune the suggested settings below. Search the map by dragging + to move and using the +/- buttons to zoom in/out or use mouse scrolling for zooming. + + + + + NetInstallViewStep + + + Package selection + + + + + Office software + + + + + Office package + + + + + Browser software + + + + + Browser package + + + + + Web browser + + + + + Kernel + + + + + Services + + + + + Login + + + + + Desktop + + + + + Applications + + + + + Communication + + + + + Development + + + + + Office + + + + + Multimedia + + + + + Internet + + + + + Theming + + + + + Gaming + + + + + Utilities + + + + + NotesQmlViewStep + + + Notes + + + + + OEMPage + + + Ba&tch: + + + + + <html><head/><body><p>Enter a batch-identifier here. This will be stored in the target system.</p></body></html> + + + + + <html><head/><body><h1>OEM Configuration</h1><p>Calamares will use OEM settings while configuring the target system.</p></body></html> + + + + + OEMViewStep + + + OEM Configuration + + + + + Set the OEM Batch Identifier to <code>%1</code>. + + + + + Offline + + + Select your preferred Region, or use the default settings. + + + + + + + Timezone: %1 + + + + + Select your preferred Zone within your Region. + + + + + Zones + + + + + You can fine-tune Language and Locale settings below. + + + + + PWQ + + + Password is too short + + + + + Password is too long + + + + + Password is too weak + + + + + Memory allocation error when setting '%1' + + + + + Memory allocation error + + + + + The password is the same as the old one + + + + + The password is a palindrome + + + + + The password differs with case changes only + + + + + The password is too similar to the old one + + + + + The password contains the user name in some form + + + + + The password contains words from the real name of the user in some form + + + + + The password contains forbidden words in some form + + + + + The password contains too few digits + + + + + The password contains too few uppercase letters + + + + + The password contains fewer than %n lowercase letters + + + + + + + The password contains too few lowercase letters + + + + + The password contains too few non-alphanumeric characters + + + + + The password is too short + + + + + The password does not contain enough character classes + + + + + The password contains too many same characters consecutively + + + + + The password contains too many characters of the same class consecutively + + + + + The password contains fewer than %n digits + + + + + + + The password contains fewer than %n uppercase letters + + + + + + + The password contains fewer than %n non-alphanumeric characters + + + + + + + The password is shorter than %n characters + + + + + + + The password is a rotated version of the previous one + + + + + The password contains fewer than %n character classes + + + + + + + The password contains more than %n same characters consecutively + + + + + + + The password contains more than %n characters of the same class consecutively + + + + + + + The password contains monotonic sequence longer than %n characters + + + + + + + The password contains too long of a monotonic character sequence + + + + + No password supplied + + + + + Cannot obtain random numbers from the RNG device + + + + + Password generation failed - required entropy too low for settings + + + + + The password fails the dictionary check - %1 + + + + + The password fails the dictionary check + + + + + Unknown setting - %1 + + + + + Unknown setting + + + + + Bad integer value of setting - %1 + + + + + Bad integer value + + + + + Setting %1 is not of integer type + + + + + Setting is not of integer type + + + + + Setting %1 is not of string type + + + + + Setting is not of string type + + + + + Opening the configuration file failed + + + + + The configuration file is malformed + + + + + Fatal failure + + + + + Unknown error + + + + + Password is empty + + + + + PackageChooserPage + + + Form + + + + + Product Name + + + + + TextLabel + + + + + Long Product Description + + + + + Package Selection + + + + + Please pick a product from the list. The selected product will be installed. + + + + + PackageChooserViewStep + + + Packages + + + + + PackageModel + + + Name + + + + + Description + + + + + Page_Keyboard + + + Form + + + + + Keyboard Model: + + + + + Type here to test your keyboard + + + + + Page_UserSetup + + + Form + + + + + What is your name? + + + + + Your Full Name + + + + + What name do you want to use to log in? + + + + + login + + + + + What is the name of this computer? + + + + + <small>This name will be used if you make the computer visible to others on a network.</small> + + + + + Computer Name + + + + + Choose a password to keep your account safe. + + + + + + <small>Enter the same password twice, so that it can be checked for typing errors. A good password will contain a mixture of letters, numbers and punctuation, should be at least eight characters long, and should be changed at regular intervals.</small> + + + + + + Password + + + + + + Repeat Password + + + + + When this box is checked, password-strength checking is done and you will not be able to use a weak password. + + + + + Require strong passwords. + + + + + Log in automatically without asking for the password. + + + + + Use the same password for the administrator account. + + + + + Choose a password for the administrator account. + + + + + + <small>Enter the same password twice, so that it can be checked for typing errors.</small> + + + + + PartitionLabelsView + + + Root + + + + + Home + + + + + Boot + + + + + EFI system + + + + + Swap + + + + + New partition for %1 + + + + + New partition + + + + + %1 %2 + size[number] filesystem[name] + + + + + PartitionModel + + + + Free Space + + + + + + New partition + + + + + Name + + + + + File System + + + + + File System Label + + + + + Mount Point + + + + + Size + + + + + PartitionPage + + + Form + + + + + Storage de&vice: + + + + + &Revert All Changes + + + + + New Partition &Table + + + + + Cre&ate + + + + + &Edit + + + + + &Delete + + + + + New Volume Group + + + + + Resize Volume Group + + + + + Deactivate Volume Group + + + + + Remove Volume Group + + + + + I&nstall boot loader on: + + + + + Are you sure you want to create a new partition table on %1? + + + + + Can not create new partition + + + + + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. + + + + + PartitionViewStep + + + Gathering system information... + + + + + Partitions + + + + + Install %1 <strong>alongside</strong> another operating system. + + + + + <strong>Erase</strong> disk and install %1. + + + + + <strong>Replace</strong> a partition with %1. + + + + + <strong>Manual</strong> partitioning. + + + + + Install %1 <strong>alongside</strong> another operating system on disk <strong>%2</strong> (%3). + + + + + <strong>Erase</strong> disk <strong>%2</strong> (%3) and install %1. + + + + + <strong>Replace</strong> a partition on disk <strong>%2</strong> (%3) with %1. + + + + + <strong>Manual</strong> partitioning on disk <strong>%1</strong> (%2). + + + + + Disk <strong>%1</strong> (%2) + + + + + Current: + + + + + After: + + + + + No EFI system partition configured + + + + + An EFI system partition is necessary to start %1.<br/><br/>To configure an EFI system partition, go back and select or create a FAT32 filesystem with the <strong>%3</strong> flag enabled and mount point <strong>%2</strong>.<br/><br/>You can continue without setting up an EFI system partition but your system may fail to start. + + + + + An EFI system partition is necessary to start %1.<br/><br/>A partition was configured with mount point <strong>%2</strong> but its <strong>%3</strong> flag is not set.<br/>To set the flag, go back and edit the partition.<br/><br/>You can continue without setting the flag but your system may fail to start. + + + + + EFI system partition flag not set + + + + + Option to use GPT on BIOS + + + + + A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.<br/><br/>To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the <strong>bios_grub</strong> flag enabled.<br/><br/>An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT. + + + + + Boot partition not encrypted + + + + + A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.<br/><br/>There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.<br/>You may continue if you wish, but filesystem unlocking will happen later during system startup.<br/>To encrypt the boot partition, go back and recreate it, selecting <strong>Encrypt</strong> in the partition creation window. + + + + + has at least one disk device available. + + + + + There are no partitions to install on. + + + + + PlasmaLnfJob + + + Plasma Look-and-Feel Job + + + + + + Could not select KDE Plasma Look-and-Feel package + + + + + PlasmaLnfPage + + + Form + + + + + Please choose a look-and-feel for the KDE Plasma Desktop. You can also skip this step and configure the look-and-feel once the system is set up. Clicking on a look-and-feel selection will give you a live preview of that look-and-feel. + + + + + Please choose a look-and-feel for the KDE Plasma Desktop. You can also skip this step and configure the look-and-feel once the system is installed. Clicking on a look-and-feel selection will give you a live preview of that look-and-feel. + + + + + PlasmaLnfViewStep + + + Look-and-Feel + + + + + PreserveFiles + + + Saving files for later ... + + + + + No files configured to save for later. + + + + + Not all of the configured files could be preserved. + + + + + ProcessResult + + + +There was no output from the command. + + + + + +Output: + + + + + + External command crashed. + + + + + Command <i>%1</i> crashed. + + + + + External command failed to start. + + + + + Command <i>%1</i> failed to start. + + + + + Internal error when starting command. + + + + + Bad parameters for process job call. + + + + + External command failed to finish. + + + + + Command <i>%1</i> failed to finish in %2 seconds. + + + + + External command finished with errors. + + + + + Command <i>%1</i> finished with exit code %2. + + + + + QObject + + + %1 (%2) + + + + + unknown + + + + + extended + + + + + unformatted + + + + + swap + + + + + + Default + + + + + + + + File not found + + + + + Path <pre>%1</pre> must be an absolute path. + + + + + Directory not found + + + + + + Could not create new random file <pre>%1</pre>. + + + + + No product + + + + + No description provided. + + + + + (no mount point) + + + + + Unpartitioned space or unknown partition table + + + + + Recommended + + + <p>This computer does not satisfy some of the recommended requirements for setting up %1.<br/> + Setup can continue, but some features might be disabled.</p> + + + + + RemoveUserJob + + + Remove live user from target system + + + + + RemoveVolumeGroupJob + + + + Remove Volume Group named %1. + + + + + Remove Volume Group named <strong>%1</strong>. + + + + + The installer failed to remove a volume group named '%1'. + + + + + ReplaceWidget + + + Form + + + + + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. + + + + + The selected item does not appear to be a valid partition. + + + + + %1 cannot be installed on empty space. Please select an existing partition. + + + + + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. + + + + + %1 cannot be installed on this partition. + + + + + Data partition (%1) + + + + + Unknown system partition (%1) + + + + + %1 system partition (%2) + + + + + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. + + + + + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. + + + + + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. + + + + + The EFI system partition at %1 will be used for starting %2. + + + + + EFI system partition: + + + + + Requirements + + + <p>This computer does not satisfy the minimum requirements for installing %1.<br/> + Installation cannot continue.</p> + + + + + <p>This computer does not satisfy some of the recommended requirements for setting up %1.<br/> + Setup can continue, but some features might be disabled.</p> + + + + + ResizeFSJob + + + Resize Filesystem Job + + + + + Invalid configuration + + + + + The file-system resize job has an invalid configuration and will not run. + + + + + KPMCore not Available + + + + + Calamares cannot start KPMCore for the file-system resize job. + + + + + + + + + Resize Failed + + + + + The filesystem %1 could not be found in this system, and cannot be resized. + + + + + The device %1 could not be found in this system, and cannot be resized. + + + + + + The filesystem %1 cannot be resized. + + + + + + The device %1 cannot be resized. + + + + + The filesystem %1 must be resized, but cannot. + + + + + The device %1 must be resized, but cannot + + + + + ResizePartitionJob + + + Resize partition %1. + + + + + Resize <strong>%2MiB</strong> partition <strong>%1</strong> to <strong>%3MiB</strong>. + + + + + Resizing %2MiB partition %1 to %3MiB. + + + + + The installer failed to resize partition %1 on disk '%2'. + + + + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + + + ResizeVolumeGroupJob + + + + Resize volume group named %1 from %2 to %3. + + + + + Resize volume group named <strong>%1</strong> from <strong>%2</strong> to <strong>%3</strong>. + + + + + The installer failed to resize a volume group named '%1'. + + + + + ResultsListDialog + + + For best results, please ensure that this computer: + + + + + System requirements + + + + + ResultsListWidget + + + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> + + + + + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> + + + + + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. + + + + + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. + + + + + This program will ask you some questions and set up %2 on your computer. + + + + + ScanningDialog + + + Scanning storage devices... + + + + + Partitioning + + + + + SetHostNameJob + + + Set hostname %1 + + + + + Set hostname <strong>%1</strong>. + + + + + Setting hostname %1. + + + + + + Internal Error + + + + + + Cannot write hostname to target system + + + + + SetKeyboardLayoutJob + + + Set keyboard model to %1, layout to %2-%3 + + + + + Failed to write keyboard configuration for the virtual console. + + + + + + + Failed to write to %1 + + + + + Failed to write keyboard configuration for X11. + + + + + Failed to write keyboard configuration to existing /etc/default directory. + + + + + SetPartFlagsJob + + + Set flags on partition %1. + + + + + Set flags on %1MiB %2 partition. + + + + + Set flags on new partition. + + + + + Clear flags on partition <strong>%1</strong>. + + + + + Clear flags on %1MiB <strong>%2</strong> partition. + + + + + Clear flags on new partition. + + + + + Flag partition <strong>%1</strong> as <strong>%2</strong>. + + + + + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. + + + + + Flag new partition as <strong>%1</strong>. + + + + + Clearing flags on partition <strong>%1</strong>. + + + + + Clearing flags on %1MiB <strong>%2</strong> partition. + + + + + Clearing flags on new partition. + + + + + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. + + + + + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. + + + + + Setting flags <strong>%1</strong> on new partition. + + + + + The installer failed to set flags on partition %1. + + + + + SetPasswordJob + + + Set password for user %1 + + + + + Setting password for user %1. + + + + + Bad destination system path. + + + + + rootMountPoint is %1 + + + + + Cannot disable root account. + + + + + passwd terminated with error code %1. + + + + + Cannot set password for user %1. + + + + + usermod terminated with error code %1. + + + + + SetTimezoneJob + + + Set timezone to %1/%2 + + + + + Cannot access selected timezone path. + + + + + Bad path: %1 + + + + + Cannot set timezone. + + + + + Link creation failed, target: %1; link name: %2 + + + + + Cannot set timezone, + + + + + Cannot open /etc/timezone for writing + + + + + SetupGroupsJob + + + Preparing groups. + + + + + + Could not create groups in target system + + + + + These groups are missing in the target system: %1 + + + + + SetupSudoJob + + + Configure <pre>sudo</pre> users. + + + + + Cannot chmod sudoers file. + + + + + Cannot create sudoers file for writing. + + + + + ShellProcessJob + + + Shell Processes Job + + + + + SlideCounter + + + %L1 / %L2 + slide counter, %1 of %2 (numeric) + + + + + SummaryPage + + + This is an overview of what will happen once you start the setup procedure. + + + + + This is an overview of what will happen once you start the install procedure. + + + + + SummaryViewStep + + + Summary + + + + + TrackingInstallJob + + + Installation feedback + + + + + Sending installation feedback. + + + + + Internal error in install-tracking. + + + + + HTTP request timed out. + + + + + TrackingKUserFeedbackJob + + + KDE user feedback + + + + + Configuring KDE user feedback. + + + + + + Error in KDE user feedback configuration. + + + + + Could not configure KDE user feedback correctly, script error %1. + + + + + Could not configure KDE user feedback correctly, Calamares error %1. + + + + + TrackingMachineUpdateManagerJob + + + Machine feedback + + + + + Configuring machine feedback. + + + + + + Error in machine feedback configuration. + + + + + Could not configure machine feedback correctly, script error %1. + + + + + Could not configure machine feedback correctly, Calamares error %1. + + + + + TrackingPage + + + Form + + + + + Placeholder + + + + + <html><head/><body><p>Click here to send <span style=" font-weight:600;">no information at all</span> about your installation.</p></body></html> + + + + + <html><head/><body><p><a href="placeholder"><span style=" text-decoration: underline; color:#2980b9;">Click here for more information about user feedback</span></a></p></body></html> + + + + + Tracking helps %1 to see how often it is installed, what hardware it is installed on and which applications are used. To see what will be sent, please click the help icon next to each area. + + + + + By selecting this you will send information about your installation and hardware. This information will only be sent <b>once</b> after the installation finishes. + + + + + By selecting this you will periodically send information about your <b>machine</b> installation, hardware and applications, to %1. + + + + + By selecting this you will regularly send information about your <b>user</b> installation, hardware, applications and application usage patterns, to %1. + + + + + TrackingViewStep + + + Feedback + + + + + UsersPage + + + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> + + + + + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> + + + + + UsersQmlViewStep + + + Users + + + + + UsersViewStep + + + Users + + + + + VariantModel + + + Key + Column header for key/value + + + + + Value + Column header for key/value + + + + + VolumeGroupBaseDialog + + + Create Volume Group + + + + + List of Physical Volumes + + + + + Volume Group Name: + + + + + Volume Group Type: + + + + + Physical Extent Size: + + + + + MiB + + + + + Total Size: + + + + + Used Size: + + + + + Total Sectors: + + + + + Quantity of LVs: + + + + + WelcomePage + + + Form + + + + + + Select application and system language + + + + + &About + + + + + Open donations website + + + + + &Donate + + + + + Open help and support website + + + + + &Support + + + + + Open issues and bug-tracking website + + + + + &Known issues + + + + + Open release notes website + + + + + &Release notes + + + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + + + + + %1 support + + + + + About %1 setup + + + + + About %1 installer + + + + + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2020 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. + + + + + WelcomeQmlViewStep + + + Welcome + + + + + WelcomeViewStep + + + Welcome + + + + + about + + + <h1>%1</h1><br/> + <strong>%2<br/> + for %3</strong><br/><br/> + Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/> + Copyright 2017-2020 Adriaan de Groot &lt;groot@kde.org&gt;<br/> + Thanks to <a href='https://calamares.io/team/'>the Calamares team</a> + and the <a href='https://www.transifex.com/calamares/calamares/'>Calamares + translators team</a>.<br/><br/> + <a href='https://calamares.io/'>Calamares</a> + development is sponsored by <br/> + <a href='http://www.blue-systems.com/'>Blue Systems</a> - + Liberating Software. + + + + + Back + + + + + calamares-sidebar + + + Show debug information + + + + + finishedq + + + Installation Completed + + + + + %1 has been installed on your computer.<br/> + You may now restart into your new system, or continue using the Live environment. + + + + + Close Installer + + + + + Restart System + + + + + <p>A full log of the install is available as installation.log in the home directory of the Live user.<br/> + This log is copied to /var/log/installation.log of the target system.</p> + + + + + i18n + + + <h1>Languages</h1> </br> + The system locale setting affects the language and character set for some command line user interface elements. The current setting is <strong>%1</strong>. + + + + + <h1>Locales</h1> </br> + The system locale setting affects the numbers and dates format. The current setting is <strong>%1</strong>. + + + + + Back + + + + + keyboardq + + + Keyboard Model + + + + + Layouts + + + + + Keyboard Layout + + + + + Click your preferred keyboard model to select layout and variant, or use the default one based on the detected hardware. + + + + + Models + + + + + Variants + + + + + Keyboard Variant + + + + + Test your keyboard + + + + + localeq + + + Change + + + + + notesqml + + + <h3>%1</h3> + <p>These are example release notes.</p> + + + + + release_notes + + + <h3>%1</h3> + <p>This an example QML file, showing options in RichText with Flickable content.</p> + + <p>QML with RichText can use HTML tags, Flickable content is useful for touchscreens.</p> + + <p><b>This is bold text</b></p> + <p><i>This is italic text</i></p> + <p><u>This is underlined text</u></p> + <p><center>This text will be center-aligned.</center></p> + <p><s>This is strikethrough</s></p> + + <p>Code example: + <code>ls -l /home</code></p> + + <p><b>Lists:</b></p> + <ul> + <li>Intel CPU systems</li> + <li>AMD CPU systems</li> + </ul> + + <p>The vertical scrollbar is adjustable, current width set to 10.</p> + + + + + Back + + + + + usersq + + + Pick your user name and credentials to login and perform admin tasks + + + + + What is your name? + + + + + Your Full Name + + + + + What name do you want to use to log in? + + + + + Login Name + + + + + If more than one person will use this computer, you can create multiple accounts after installation. + + + + + Only lowercase letters, numbers, underscore and hyphen are allowed. + + + + + root is not allowed as username. + + + + + What is the name of this computer? + + + + + Computer Name + + + + + This name will be used if you make the computer visible to others on a network. + + + + + localhost is not allowed as hostname. + + + + + Choose a password to keep your account safe. + + + + + Password + + + + + Repeat Password + + + + + Enter the same password twice, so that it can be checked for typing errors. A good password will contain a mixture of letters, numbers and punctuation, should be at least eight characters long, and should be changed at regular intervals. + + + + + Validate passwords quality + + + + + When this box is checked, password-strength checking is done and you will not be able to use a weak password. + + + + + Log in automatically without asking for the password + + + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + + + + + Reuse user password as root password + + + + + Use the same password for the administrator account. + + + + + Choose a root password to keep your account safe. + + + + + Root Password + + + + + Repeat Root Password + + + + + Enter the same password twice, so that it can be checked for typing errors. + + + + + welcomeq + + + <h3>Welcome to the %1 <quote>%2</quote> installer</h3> + <p>This program will ask you some questions and set up %1 on your computer.</p> + + + + + About + + + + + Support + + + + + Known issues + + + + + Release notes + + + + + Donate + + + + diff --git a/lang/calamares_zh_TW.ts b/lang/calamares_zh_TW.ts index 9e2e2904c..4cb526bb4 100644 --- a/lang/calamares_zh_TW.ts +++ b/lang/calamares_zh_TW.ts @@ -4269,11 +4269,6 @@ Output: This name will be used if you make the computer visible to others on a network. 若您將此電腦設定為讓網路上的其他電腦可見時將會使用此名稱。 - - - Only letter, numbers, underscore and hyphen are allowed, minimal of two characters. - 僅允許字母、數字、底線與連接號,最少兩個字元。 - localhost is not allowed as hostname. @@ -4314,6 +4309,11 @@ Output: Log in automatically without asking for the password 自動登入,無需輸入密碼 + + + Only letters, numbers, underscore and hyphen are allowed, minimal of two characters. + 僅允許字母、數字、底線與連接號,最少兩個字元。 + Reuse user password as root password diff --git a/lang/python.pot b/lang/python.pot index 083151563..a3d128ca7 100644 --- a/lang/python.pot +++ b/lang/python.pot @@ -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 \n" "Language-Team: LANGUAGE \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 " -"
{!s}
returned error code {!s}." -msgstr "" -"The bootloader could not be installed. The installation command " -"
{!s}
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
{!s}
to use." -msgstr "No partitions are defined for
{!s}
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
{!s}
to use." -msgstr "No root mount point is given for
{!s}
to use." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" -"The package manager could not prepare updates. The command
{!s}
" -"returned error code {!s}." - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Unknown service-action {arg!s} 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 "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"rc-update {arg!s} 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 {path!s}, which does not " -"exist." -msgstr "" -"The path for runlevel {level!s} is {path!s}, 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 {path!s}, which does not " -"exist." -msgstr "" -"The path for service {name!s} is {path!s}, 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
{!s}
to use." +msgstr "No partitions are defined for
{!s}
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 "" "systemctl {arg!s} 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
{!s}
to use." +msgstr "No root mount point is given for
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"rc-update {arg!s} 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 {path!s}, which does not " +"exist." +msgstr "" +"The path for runlevel {level!s} is {path!s}, 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 {path!s}, which does not " +"exist." +msgstr "" +"The path for service {name!s} is {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" +"The package manager could not prepare updates. The command
{!s}
" +"returned error code {!s}." + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" returned error code {!s}." +msgstr "" +"The package manager could not update the system. The command
{!s}
" +" returned error code {!s}." + +#: src/modules/packages/main.py:629 +msgid "" +"The package manager could not make changes to the installed system. The " +"command
{!s}
returned error code {!s}." +msgstr "" +"The package manager could not make changes to the installed system. The " +"command
{!s}
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 " +"
{!s}
returned error code {!s}." +msgstr "" +"The bootloader could not be installed. The installation command " +"
{!s}
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
{!s}
configuration is given for
{!s}
to use." +msgstr "No
{!s}
configuration is given for
{!s}
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." diff --git a/lang/python/ar/LC_MESSAGES/python.po b/lang/python/ar/LC_MESSAGES/python.po index 41650c188..2e04ea65c 100644 --- a/lang/python/ar/LC_MESSAGES/python.po +++ b/lang/python/ar/LC_MESSAGES/python.po @@ -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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "جاري حفظ الإعدادات" diff --git a/lang/python/as/LC_MESSAGES/python.po b/lang/python/as/LC_MESSAGES/python.po index 4c3df677f..144624be7 100644 --- a/lang/python/as/LC_MESSAGES/python.po +++ b/lang/python/as/LC_MESSAGES/python.po @@ -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 , 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 " -"
{!s}
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
{!s}
to use." -msgstr "
{!s}
ৰ ব্যৱহাৰৰ বাবে কোনো বিভাজনৰ বৰ্ণনা দিয়া হোৱা নাই।" - -#: 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
{!s}
to use." -msgstr "ব্যৱহাৰৰ বাবে
{!s}
ৰ কোনো মাউন্ট্ পাইন্ট্ দিয়া হোৱা নাই।" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"ৰান-লেভেল {level!s}ত সেৱা {name!s}ৰ বাবে অজ্ঞাত সেৱা কাৰ্য্য " -"{arg!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 "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "chrootত rc-update {arg!s} 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 {path!s}, which does not " -"exist." -msgstr "" -"{level!s} ৰাণলেভেলৰ বাবে পথ হ'ল {path!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 {path!s}, which does not " -"exist." -msgstr "{name!s}ৰ বাবে পথ হ'ল {path!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
{!s}
to use." +msgstr "
{!s}
ৰ ব্যৱহাৰৰ বাবে কোনো বিভাজনৰ বৰ্ণনা দিয়া হোৱা নাই।" #: 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 "" "systemctl {arg!s} 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
{!s}
to use." +msgstr "ব্যৱহাৰৰ বাবে
{!s}
ৰ কোনো মাউন্ট্ পাইন্ট্ দিয়া হোৱা নাই।" + +#: 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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"ৰান-লেভেল {level!s}ত সেৱা {name!s}ৰ বাবে অজ্ঞাত সেৱা কাৰ্য্য " +"{arg!s} ।" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "chrootত rc-update {arg!s} 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 {path!s}, which does not " +"exist." +msgstr "" +"{level!s} ৰাণলেভেলৰ বাবে পথ হ'ল {path!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 {path!s}, which does not " +"exist." +msgstr "{name!s}ৰ বাবে পথ হ'ল {path!s} যিটো উপস্থিত নাই।" + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "নেটৱৰ্ক কন্ফিগাৰ জমা কৰি আছে।" diff --git a/lang/python/ast/LC_MESSAGES/python.po b/lang/python/ast/LC_MESSAGES/python.po index 9deca93cb..8e39f88a3 100644 --- a/lang/python/ast/LC_MESSAGES/python.po +++ b/lang/python/ast/LC_MESSAGES/python.po @@ -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 , 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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/az/LC_MESSAGES/python.po b/lang/python/az/LC_MESSAGES/python.po index 54541da9a..d47e30acd 100644 --- a/lang/python/az/LC_MESSAGES/python.po +++ b/lang/python/az/LC_MESSAGES/python.po @@ -4,16 +4,16 @@ # FIRST AUTHOR , YEAR. # # Translators: -# xxmn77 , 2020 +# Xəyyam Qocayev , 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 , 2020\n" +"Last-Translator: Xəyyam Qocayev , 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 " -"
{!s}
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
{!s}
to use." -msgstr "
{!s}
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
{!s}
to use." -msgstr "" -"
{!s}
istifadə etmək üçün kök qoşulma nöqtəsi təyin edilməyib." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 " -"{arg!s} 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 "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"rc-update {arg!s} 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 {path!s}, which does not " -"exist." -msgstr "" -"{level!s} işləmə səviyyəsi üçün {path!s} 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 {path!s}, which does not " -"exist." -msgstr "{name!s} üçün {path!s} 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
{!s}
to use." +msgstr "
{!s}
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 "" "systemctl {arg!s} 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
{!s}
to use." +msgstr "" +"
{!s}
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 {arg!s} 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 " +"{arg!s} xidmət fəaliyyəti." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"rc-update {arg!s} 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 {path!s}, which does not " +"exist." +msgstr "" +"{level!s} işləmə səviyyəsi üçün {path!s} 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 {path!s}, which does not " +"exist." +msgstr "{name!s} üçün {path!s} 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
{!s}
" +"returned error code {!s}." +msgstr "" +"Bu paket meneceri yenilənmələri hazırlaya bilmədi.
{!s}
ə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
{!s}
" +" returned error code {!s}." +msgstr "" +"Paket meneceri sistemi yeniləyə bimədi.
{!s}
ə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
{!s}
returned error code {!s}." +msgstr "" +"Paket meneceri dəyişiklikləri sistemə tətbiq edə bilmədi.
{!s}
" +"ə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 " +"
{!s}
returned error code {!s}." +msgstr "" +"Önyükləyici quraşdırıla bilmədi. Quraşdırma əmri
{!s}
, 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
{!s}
configuration is given for
{!s}
to use." +msgstr "" +"İstifadə etmək üçün,
{!s}
tənzimləməsi,
{!s}
üçü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." diff --git a/lang/python/az_AZ/LC_MESSAGES/python.po b/lang/python/az_AZ/LC_MESSAGES/python.po index b016560e7..d1e805fac 100644 --- a/lang/python/az_AZ/LC_MESSAGES/python.po +++ b/lang/python/az_AZ/LC_MESSAGES/python.po @@ -4,16 +4,16 @@ # FIRST AUTHOR , YEAR. # # Translators: -# xxmn77 , 2020 +# Xəyyam Qocayev , 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 , 2020\n" +"Last-Translator: Xəyyam Qocayev , 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 " -"
{!s}
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
{!s}
to use." -msgstr "
{!s}
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
{!s}
to use." -msgstr "" -"
{!s}
istifadə etmək üçün kök qoşulma nöqtəsi təyin edilməyib." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 " -"{arg!s} 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 "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"rc-update {arg!s} 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 {path!s}, which does not " -"exist." -msgstr "" -"{level!s} işləmə səviyyəsi üçün {path!s} 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 {path!s}, which does not " -"exist." -msgstr "{name!s} üçün {path!s} 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
{!s}
to use." +msgstr "
{!s}
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 "" "systemctl {arg!s} 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
{!s}
to use." +msgstr "" +"
{!s}
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 {arg!s} 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 " +"{arg!s} xidmət fəaliyyəti." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"rc-update {arg!s} 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 {path!s}, which does not " +"exist." +msgstr "" +"{level!s} işləmə səviyyəsi üçün {path!s} 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 {path!s}, which does not " +"exist." +msgstr "{name!s} üçün {path!s} 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
{!s}
" +"returned error code {!s}." +msgstr "" +"Bu paket meneceri yenilənmələri hazırlaya bilmədi.
{!s}
ə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
{!s}
" +" returned error code {!s}." +msgstr "" +"Paket meneceri sistemi yeniləyə bimədi.
{!s}
ə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
{!s}
returned error code {!s}." +msgstr "" +"Paket meneceri dəyişiklikləri sistemə tətbiq edə bilmədi.
{!s}
" +"ə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 " +"
{!s}
returned error code {!s}." +msgstr "" +"Önyükləyici quraşdırıla bilmədi. Quraşdırma əmri
{!s}
, 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
{!s}
configuration is given for
{!s}
to use." +msgstr "" +"İstifadə etmək üçün,
{!s}
tənzimləməsi,
{!s}
üçü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." diff --git a/lang/python/be/LC_MESSAGES/python.po b/lang/python/be/LC_MESSAGES/python.po index 3e90116c8..eae79316f 100644 --- a/lang/python/be/LC_MESSAGES/python.po +++ b/lang/python/be/LC_MESSAGES/python.po @@ -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 , 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 " -"
{!s}
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
{!s}
to use." -msgstr "Раздзелы для
{!s}
не вызначаныя." - -#: 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
{!s}
to use." -msgstr "Каранёвы пункт мантавання для
{!s}
не пададзены." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Невядомае дзеянне {arg!s} для службы {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 "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"rc-update {arg!s} пад 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 {path!s}, which does not " -"exist." -msgstr "Шлях {path!s} да ўзроўня запуску {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 {path!s}, which does not " -"exist." -msgstr "Шлях {path!s} да службы {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
{!s}
to use." +msgstr "Раздзелы для
{!s}
не вызначаныя." #: 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 "" "systemctl {arg!s} 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
{!s}
to use." +msgstr "Каранёвы пункт мантавання для
{!s}
не пададзены." + +#: 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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Невядомае дзеянне {arg!s} для службы {name!s} на ўзроўні " +"запуску {level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"rc-update {arg!s} пад 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 {path!s}, which does not " +"exist." +msgstr "Шлях {path!s} да ўзроўня запуску {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 {path!s}, which does not " +"exist." +msgstr "Шлях {path!s} да службы {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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "Захаванне сеткавай канфігурацыі." diff --git a/lang/python/bg/LC_MESSAGES/python.po b/lang/python/bg/LC_MESSAGES/python.po index 68333564d..e54c3e9a9 100644 --- a/lang/python/bg/LC_MESSAGES/python.po +++ b/lang/python/bg/LC_MESSAGES/python.po @@ -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 (Жоро) , 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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/bn/LC_MESSAGES/python.po b/lang/python/bn/LC_MESSAGES/python.po index 9f8642a63..aca9f91ff 100644 --- a/lang/python/bn/LC_MESSAGES/python.po +++ b/lang/python/bn/LC_MESSAGES/python.po @@ -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 , 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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/ca/LC_MESSAGES/python.po b/lang/python/ca/LC_MESSAGES/python.po index 3fe5d1465..0bc9f07fb 100644 --- a/lang/python/ca/LC_MESSAGES/python.po +++ b/lang/python/ca/LC_MESSAGES/python.po @@ -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 , 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 " -"
{!s}
returned error code {!s}." -msgstr "" -"No s'ha pogut instal·lar el carregador d'arrencada. L'ordre d'instal·lació " -"
{!s}
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
{!s}
to use." -msgstr "No s'han definit particions perquè les usi
{!s}
." - -#: 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
{!s}
to use." -msgstr "" -"No s'ha proporcionat el punt de muntatge perquè l'usi
{!s}
." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "" -"No hi ha cap configuració de
{!s}
perquè la usi
{!s}
." - #: 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
{!s}
" -"returned error code {!s}." -msgstr "" -"El gestor de paquets no ha pogut preparar les actualitzacions. " -"L'ordre
{!s}
ha retornat el codi d'error {!s}." - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" -"El gestor de paquets no ha pogut actualitzar el sistema. L'ordre " -"
{!s}
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 " -"
{!s}
returned error code {!s}." -msgstr "" -"El gestor de paquets podria fer canvis al sistema instal·lat. L'ordre " -"
{!s}
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 {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Servei - acció desconeguda {arg!s} 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 "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"La crida de rc-update {arg!s} 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 {path!s}, which does not " -"exist." -msgstr "" -"El camí per al nivell d'execució {level!s} és {path!s}, 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 {path!s}, which does not " -"exist." -msgstr "" -"El camí per al servei {name!s} és {path!s}, 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
{!s}
to use." +msgstr "No s'han definit particions perquè les usi
{!s}
." #: 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 "" "systemctl {arg!s} 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
{!s}
to use." +msgstr "" +"No s'ha proporcionat el punt de muntatge perquè l'usi
{!s}
." + +#: 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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Servei - acció desconeguda {arg!s} per al servei {name!s} al " +"nivell d'execució {level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"La crida de rc-update {arg!s} 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 {path!s}, which does not " +"exist." +msgstr "" +"El camí per al nivell d'execució {level!s} és {path!s}, 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 {path!s}, which does not " +"exist." +msgstr "" +"El camí per al servei {name!s} és {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" +"El gestor de paquets no ha pogut preparar les actualitzacions. " +"L'ordre
{!s}
ha retornat el codi d'error {!s}." + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" returned error code {!s}." +msgstr "" +"El gestor de paquets no ha pogut actualitzar el sistema. L'ordre " +"
{!s}
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
{!s}
returned error code {!s}." +msgstr "" +"El gestor de paquets no ha pogut fer canvis al sistema instal·lat. L'ordre " +"
{!s}
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 " +"
{!s}
returned error code {!s}." +msgstr "" +"No s'ha pogut instal·lar el carregador d'arrencada. L'ordre d'instal·lació " +"
{!s}
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
{!s}
configuration is given for
{!s}
to use." +msgstr "" +"No hi ha cap configuració de
{!s}
perquè la usi
{!s}
." + +#: 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." diff --git a/lang/python/ca@valencia/LC_MESSAGES/python.po b/lang/python/ca@valencia/LC_MESSAGES/python.po index 466e1dc91..871140a43 100644 --- a/lang/python/ca@valencia/LC_MESSAGES/python.po +++ b/lang/python/ca@valencia/LC_MESSAGES/python.po @@ -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 , 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 " -"
{!s}
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ó d’initramfs amb dracut." - -#: src/modules/dracut/main.py:49 -msgid "Failed to run dracut on the target" -msgstr "No s’ha 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 d’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 "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
{!s}
to use." -msgstr "No s'han definit particions perquè les use
{!s}
." - -#: 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
{!s}
to use." -msgstr "" -"No s'ha proporcionat el punt de muntatge perquè l'use
{!s}
." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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ó d’idioma." - -#: src/modules/luksopenswaphookcfg/main.py:26 -msgid "Configuring encrypted swap." -msgstr "S’està configurant l'intercanvi encriptat." - -#: src/modules/mkinitfs/main.py:27 -msgid "Creating initramfs with mkinitfs." -msgstr "Creació d’initramfs amb mkinitfs." - -#: src/modules/mkinitfs/main.py:49 -msgid "Failed to run mkinitfs on the target" -msgstr "No s’ha 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] "S’està eliminant un paquet." -msgstr[1] "S’està 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Servei - acció desconeguda {arg!s} 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 "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"La crida de rc-update {arg!s} 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 {path!s}, which does not " -"exist." -msgstr "" -"El camí per al nivell d'execució {level!s} és {path!s}, 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 {path!s}, which does not " -"exist." -msgstr "" -"El camí per al servei {name!s} és {path!s}, 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
{!s}
to use." +msgstr "No s'han definit particions perquè les use
{!s}
." #: 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 "" "systemctl {arg!s} 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
{!s}
to use." +msgstr "" +"No s'ha proporcionat el punt de muntatge perquè l'use
{!s}
." + +#: src/modules/luksopenswaphookcfg/main.py:26 +msgid "Configuring encrypted swap." +msgstr "S’està 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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Servei - acció desconeguda {arg!s} per al servei {name!s} al " +"nivell d'execució {level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"La crida de rc-update {arg!s} 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 {path!s}, which does not " +"exist." +msgstr "" +"El camí per al nivell d'execució {level!s} és {path!s}, 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 {path!s}, which does not " +"exist." +msgstr "" +"El camí per al servei {name!s} és {path!s}, 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] "S’està eliminant un paquet." +msgstr[1] "S’està 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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ó d’initramfs amb mkinitfs." + +#: src/modules/mkinitfs/main.py:49 +msgid "Failed to run mkinitfs on the target" +msgstr "No s’ha 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ó d’initramfs amb dracut." + +#: src/modules/dracut/main.py:49 +msgid "Failed to run dracut on the target" +msgstr "No s’ha 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 d’fstab." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
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ó d’idioma." + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "S'està guardant la configuració de la xarxa." diff --git a/lang/python/cs_CZ/LC_MESSAGES/python.po b/lang/python/cs_CZ/LC_MESSAGES/python.po index c2a0d8d6c..50002805d 100644 --- a/lang/python/cs_CZ/LC_MESSAGES/python.po +++ b/lang/python/cs_CZ/LC_MESSAGES/python.po @@ -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 , 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 " -"
{!s}
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
{!s}
to use." -msgstr "Pro
{!s}
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
{!s}
to use." -msgstr "Pro
{!s}
není zadán žádný přípojný bod." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Neznámá akce služby {arg!s} 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 "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"rc-update {arg!s} 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 {path!s}, which does not " -"exist." -msgstr "" -"Popis umístění pro úroveň chodu (runlevel) {level!s} je " -"{path!s}, 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 {path!s}, which does not " -"exist." -msgstr "" -"Popis umístění pro službu {name!s} je {path!s}, 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
{!s}
to use." +msgstr "Pro
{!s}
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 "" "systemctl {arg!s} 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
{!s}
to use." +msgstr "Pro
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Neznámá akce služby {arg!s} pro službu {name!s} v úrovni chodu " +"(runlevel) {level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"rc-update {arg!s} 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 {path!s}, which does not " +"exist." +msgstr "" +"Popis umístění pro úroveň chodu (runlevel) {level!s} je " +"{path!s}, 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 {path!s}, which does not " +"exist." +msgstr "" +"Popis umístění pro službu {name!s} je {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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ě." diff --git a/lang/python/da/LC_MESSAGES/python.po b/lang/python/da/LC_MESSAGES/python.po index abf1983f4..9cae3fb91 100644 --- a/lang/python/da/LC_MESSAGES/python.po +++ b/lang/python/da/LC_MESSAGES/python.po @@ -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 " -"
{!s}
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
{!s}
to use." -msgstr "Der er ikke angivet nogle partitioner som
{!s}
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
{!s}
to use." -msgstr "" -"Der er ikke angivet noget rodmonteringspunkt som
{!s}
kan bruge." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Ukendt tjenestehandling {arg!s} 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 "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"rc-update {arg!s}-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 {path!s}, which does not " -"exist." -msgstr "" -"Stien til kørselsniveauet {level!s} er {path!s}, 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 {path!s}, which does not " -"exist." -msgstr "" -"Stien til tjenesten {name!s} er {path!s}, 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
{!s}
to use." +msgstr "Der er ikke angivet nogle partitioner som
{!s}
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 "" "systemctl {arg!s} 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
{!s}
to use." +msgstr "" +"Der er ikke angivet noget rodmonteringspunkt som
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Ukendt tjenestehandling {arg!s} til tjenesten {name!s} i " +"kørselsniveauet {level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"rc-update {arg!s}-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 {path!s}, which does not " +"exist." +msgstr "" +"Stien til kørselsniveauet {level!s} er {path!s}, 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 {path!s}, which does not " +"exist." +msgstr "" +"Stien til tjenesten {name!s} er {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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." diff --git a/lang/python/de/LC_MESSAGES/python.po b/lang/python/de/LC_MESSAGES/python.po index 1aea8ca5d..555d4636f 100644 --- a/lang/python/de/LC_MESSAGES/python.po +++ b/lang/python/de/LC_MESSAGES/python.po @@ -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 , 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 " -"
{!s}
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
{!s}
to use." -msgstr "Für
{!s}
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
{!s}
to use." -msgstr "" -"Für
{!s}
wurde kein Einhängepunkt für die Root-Partition " -"angegeben." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Unbekannte Aktion {arg!s} 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 "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"rc-update {arg!s} 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 {path!s}, which does not " -"exist." -msgstr "" -"Der Pfad für Runlevel {level!s} ist {path!s}, 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 {path!s}, which does not " -"exist." -msgstr "" -"Der Pfad für den Dienst {name!s} is {path!s}, 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
{!s}
to use." +msgstr "Für
{!s}
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 "" "systemctl {arg!s} 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
{!s}
to use." +msgstr "" +"Für
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Unbekannte Aktion {arg!s} für Dienst {name!s} in Runlevel " +"{level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"rc-update {arg!s} 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 {path!s}, which does not " +"exist." +msgstr "" +"Der Pfad für Runlevel {level!s} ist {path!s}, 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 {path!s}, which does not " +"exist." +msgstr "" +"Der Pfad für den Dienst {name!s} is {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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." diff --git a/lang/python/el/LC_MESSAGES/python.po b/lang/python/el/LC_MESSAGES/python.po index 09352f418..5a9b39cf5 100644 --- a/lang/python/el/LC_MESSAGES/python.po +++ b/lang/python/el/LC_MESSAGES/python.po @@ -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 , 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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/en_GB/LC_MESSAGES/python.po b/lang/python/en_GB/LC_MESSAGES/python.po index 36e32abe5..88026773b 100644 --- a/lang/python/en_GB/LC_MESSAGES/python.po +++ b/lang/python/en_GB/LC_MESSAGES/python.po @@ -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: Jason Collins , 2018\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/calamares/teams/20061/en_GB/)\n" @@ -21,279 +21,42 @@ msgstr "" "Language: en_GB\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 " -"
{!s}
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 "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 "" - -#: 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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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 "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 "" - -#: src/modules/packages/main.py:589 -msgid "" -"The package manager could not prepare updates. The command
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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 "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 "" + +#: src/modules/packages/main.py:589 +msgid "" +"The package manager could not prepare updates. The command
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 step {}" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "" + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "" diff --git a/lang/python/eo/LC_MESSAGES/python.po b/lang/python/eo/LC_MESSAGES/python.po index bafb73d9e..7a2dd4348 100644 --- a/lang/python/eo/LC_MESSAGES/python.po +++ b/lang/python/eo/LC_MESSAGES/python.po @@ -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: Kurt Ankh Phoenix , 2018\n" "Language-Team: Esperanto (https://www.transifex.com/calamares/teams/20061/eo/)\n" @@ -21,279 +21,42 @@ msgstr "" "Language: eo\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 " -"
{!s}
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 "Formala python laboro." - -#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 -#: src/modules/dummypython/main.py:94 -msgid "Dummy python step {}" -msgstr "Formala python paŝo {}" - -#: 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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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 "Instali pakaĵoj." - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "Prilaborante pakaĵoj (%(count)d / %(total)d)" - -#: src/modules/packages/main.py:62 -#, python-format -msgid "Installing one package." -msgid_plural "Installing %(num)d packages." -msgstr[0] "Instalante unu pakaĵo." -msgstr[1] "Instalante %(num)d pakaĵoj." - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "Forigante unu pakaĵo." -msgstr[1] "Forigante %(num)d pakaĵoj." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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 "Instali pakaĵoj." + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "Prilaborante pakaĵoj (%(count)d / %(total)d)" + +#: src/modules/packages/main.py:62 +#, python-format +msgid "Installing one package." +msgid_plural "Installing %(num)d packages." +msgstr[0] "Instalante unu pakaĵo." +msgstr[1] "Instalante %(num)d pakaĵoj." + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "Forigante unu pakaĵo." +msgstr[1] "Forigante %(num)d pakaĵoj." + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
to use." +msgstr "" + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Formala python laboro." + +#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 +#: src/modules/dummypython/main.py:94 +msgid "Dummy python step {}" +msgstr "Formala python paŝo {}" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "" + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "" diff --git a/lang/python/es/LC_MESSAGES/python.po b/lang/python/es/LC_MESSAGES/python.po index 4ce37e51c..960e280c4 100644 --- a/lang/python/es/LC_MESSAGES/python.po +++ b/lang/python/es/LC_MESSAGES/python.po @@ -16,7 +16,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: Pier Jose Gotta Perez , 2020\n" "Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n" @@ -26,294 +26,42 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/bootloader/main.py:43 -msgid "Install bootloader." -msgstr "Instalar gestor de arranque." - -#: 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 " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "No se puede escribir el archivo de configuración KDM" - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "El archivo de configuración {!s} de KDM no existe" - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "No se puede escribir el archivo de configuración LXDM" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "El archivo de configuracion {!s} de LXDM no existe" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "No se puede escribir el archivo de configuración de LightDM" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "El archivo de configuración {!s} de LightDM no existe" - -#: src/modules/displaymanager/main.py:747 -msgid "Cannot configure LightDM" -msgstr "No se puede configurar LightDM" - -#: src/modules/displaymanager/main.py:748 -msgid "No LightDM greeter installed." -msgstr "No está instalado el menú de bienvenida LightDM" - -#: src/modules/displaymanager/main.py:779 -msgid "Cannot write SLIM configuration file" -msgstr "No se puede escribir el archivo de configuración de SLIM" - -#: src/modules/displaymanager/main.py:780 -msgid "SLIM config file {!s} does not exist" -msgstr "El archivo de configuración {!s} de SLIM no existe" - -#: src/modules/displaymanager/main.py:906 -msgid "No display managers selected for the displaymanager module." -msgstr "" -"No se ha seleccionado ningún gestor de pantalla para el modulo " -"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 gestor de pantalla estaba incompleta" - -#: src/modules/dracut/main.py:27 -msgid "Creating initramfs with dracut." -msgstr "" -"Creando initramfs - sistema de arranque - con dracut - su constructor -." - -#: src/modules/dracut/main.py:49 -msgid "Failed to run dracut on the target" -msgstr "Falló en ejecutar dracut - constructor de arranques - en el objetivo" - -#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50 -msgid "The exit code was {}" -msgstr "El código de salida fue {}" - -#: src/modules/dummypython/main.py:35 -msgid "Dummy python job." -msgstr "Tarea de python ficticia." - -#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 -#: src/modules/dummypython/main.py:94 -msgid "Dummy python step {}" -msgstr "Paso {} de python ficticio" - -#: src/modules/fstab/main.py:29 -msgid "Writing fstab." -msgstr "Escribiendo la tabla de particiones 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ón" - -#: 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
{!s}
to use." -msgstr "No hay definidas particiones en 1{!s}1 para usar." - -#: 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
{!s}
to use." -msgstr "" -"No se facilitó un punto de montaje raíz utilizable para
{!s}
" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "" - #: src/modules/grubcfg/main.py:28 msgid "Configure GRUB." msgstr "Configure GRUB - menú de arranque multisistema -" -#: src/modules/hwclock/main.py:26 -msgid "Setting hardware clock." -msgstr "Configurando el reloj de la computadora." - -#: src/modules/initcpiocfg/main.py:28 -msgid "Configuring mkinitcpio." -msgstr "Configurando mkinitcpio - sistema de arranque básico -." - -#: src/modules/initramfscfg/main.py:32 -msgid "Configuring initramfs." -msgstr "Configurando initramfs - sistema de inicio -." - -#: src/modules/localecfg/main.py:30 -msgid "Configuring locales." -msgstr "Configurando especificaciones locales o regionales." - -#: src/modules/luksopenswaphookcfg/main.py:26 -msgid "Configuring encrypted swap." -msgstr "Configurando la memoria de intercambio - swap - encriptada." - -#: 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 "Montando particiones" -#: src/modules/networkcfg/main.py:28 -msgid "Saving network configuration." -msgstr "Guardando la configuración de red." +#: 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ón" -#: src/modules/openrcdmcryptcfg/main.py:26 -msgid "Configuring OpenRC dmcrypt service." -msgstr "Configurando el servicio - de arranque encriptado -. OpenRC dmcrypt" - -#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 -#: src/modules/packages/main.py:69 -msgid "Install packages." -msgstr "Instalar 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] "Eliminando un paquete." -msgstr[1] "Eliminando %(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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/plymouthcfg/main.py:27 -msgid "Configure Plymouth theme" -msgstr "Configure el tema de Plymouth - menú de bienvenida." - -#: src/modules/rawfs/main.py:26 -msgid "Installing data." -msgstr "Instalando datos." - -#: src/modules/services-openrc/main.py:29 -msgid "Configure OpenRC services" -msgstr "Configure servicios del sistema de inicio OpenRC" - -#: src/modules/services-openrc/main.py:57 -msgid "Cannot add service {name!s} to run-level {level!s}." -msgstr "" -"No se puede/n añadir {name!s} de servicio/s al rango de ejecución " -"{level!s}." - -#: src/modules/services-openrc/main.py:59 -msgid "Cannot remove service {name!s} from run-level {level!s}." -msgstr "" -"No se puede/n borrar el/los servicio/s {name!s} de los rangos de ejecución " -"{level!s}." - -#: src/modules/services-openrc/main.py:61 -msgid "" -"Unknown service-action {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Acción desconocida d/e el/los servicio/s {arg!s} para el/los " -"servicio/s {name!s} en el/los rango/s de ejecución {level!s}." - -#: src/modules/services-openrc/main.py:93 -#: src/modules/services-systemd/main.py:59 -msgid "Cannot modify service" -msgstr "No se puede modificar el servicio" - -#: src/modules/services-openrc/main.py:94 -msgid "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"rc-update {arg!s} - orden de actualización - en chroot - raíz " -"cambiada - devolvió el código de error {num!s}." - -#: src/modules/services-openrc/main.py:101 -msgid "Target runlevel does not exist" -msgstr "El rango de ejecución objetivo no existe" - -#: src/modules/services-openrc/main.py:102 -msgid "" -"The path for runlevel {level!s} is {path!s}, which does not " -"exist." -msgstr "" -"La ruta hacia el rango de ejecución {level!s} es 1{path!s}1, y no existe." - -#: src/modules/services-openrc/main.py:110 -msgid "Target service does not exist" -msgstr "El servicio objetivo no existe" - -#: src/modules/services-openrc/main.py:111 -msgid "" -"The path for service {name!s} is {path!s}, which does not " -"exist." -msgstr "" -"La ruta hacia el/los servicio/s {name!s} es {path!s}, y no " -"existe." +#: 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
{!s}
to use." +msgstr "No hay definidas particiones en 1{!s}1 para usar." #: src/modules/services-systemd/main.py:26 msgid "Configure systemd services" msgstr "Configurar servicios de systemd" +#: src/modules/services-systemd/main.py:59 +#: src/modules/services-openrc/main.py:93 +msgid "Cannot modify service" +msgstr "No se puede modificar el servicio" + #: src/modules/services-systemd/main.py:60 msgid "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -415,3 +163,257 @@ msgstr "" #: src/modules/unpackfs/main.py:479 msgid "The destination \"{}\" in the target system is not a directory" msgstr "El destino \"{}\" en el sistema escogido no es una carpeta" + +#: src/modules/displaymanager/main.py:526 +msgid "Cannot write KDM configuration file" +msgstr "No se puede escribir el archivo de configuración KDM" + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "El archivo de configuración {!s} de KDM no existe" + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "No se puede escribir el archivo de configuración LXDM" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "El archivo de configuracion {!s} de LXDM no existe" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "No se puede escribir el archivo de configuración de LightDM" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "El archivo de configuración {!s} de LightDM no existe" + +#: src/modules/displaymanager/main.py:747 +msgid "Cannot configure LightDM" +msgstr "No se puede configurar LightDM" + +#: src/modules/displaymanager/main.py:748 +msgid "No LightDM greeter installed." +msgstr "No está instalado el menú de bienvenida LightDM" + +#: src/modules/displaymanager/main.py:779 +msgid "Cannot write SLIM configuration file" +msgstr "No se puede escribir el archivo de configuración de SLIM" + +#: src/modules/displaymanager/main.py:780 +msgid "SLIM config file {!s} does not exist" +msgstr "El archivo de configuración {!s} de SLIM no existe" + +#: src/modules/displaymanager/main.py:906 +msgid "No display managers selected for the displaymanager module." +msgstr "" +"No se ha seleccionado ningún gestor de pantalla para el modulo " +"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 gestor de pantalla estaba incompleta" + +#: src/modules/initcpiocfg/main.py:28 +msgid "Configuring mkinitcpio." +msgstr "Configurando mkinitcpio - sistema de arranque básico -." + +#: 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
{!s}
to use." +msgstr "" +"No se facilitó un punto de montaje raíz utilizable para
{!s}
" + +#: src/modules/luksopenswaphookcfg/main.py:26 +msgid "Configuring encrypted swap." +msgstr "Configurando la memoria de intercambio - swap - encriptada." + +#: src/modules/rawfs/main.py:26 +msgid "Installing data." +msgstr "Instalando datos." + +#: src/modules/services-openrc/main.py:29 +msgid "Configure OpenRC services" +msgstr "Configure servicios del sistema de inicio OpenRC" + +#: src/modules/services-openrc/main.py:57 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" +"No se puede/n añadir {name!s} de servicio/s al rango de ejecución " +"{level!s}." + +#: src/modules/services-openrc/main.py:59 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" +"No se puede/n borrar el/los servicio/s {name!s} de los rangos de ejecución " +"{level!s}." + +#: src/modules/services-openrc/main.py:61 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Acción desconocida d/e el/los servicio/s {arg!s} para el/los " +"servicio/s {name!s} en el/los rango/s de ejecución {level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"rc-update {arg!s} - orden de actualización - en chroot - raíz " +"cambiada - devolvió el código de error {num!s}." + +#: src/modules/services-openrc/main.py:101 +msgid "Target runlevel does not exist" +msgstr "El rango de ejecución objetivo no existe" + +#: src/modules/services-openrc/main.py:102 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"La ruta hacia el rango de ejecución {level!s} es 1{path!s}1, y no existe." + +#: src/modules/services-openrc/main.py:110 +msgid "Target service does not exist" +msgstr "El servicio objetivo no existe" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"La ruta hacia el/los servicio/s {name!s} es {path!s}, y no " +"existe." + +#: src/modules/plymouthcfg/main.py:27 +msgid "Configure Plymouth theme" +msgstr "Configure el tema de Plymouth - menú de bienvenida." + +#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 +#: src/modules/packages/main.py:69 +msgid "Install packages." +msgstr "Instalar 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] "Eliminando un paquete." +msgstr[1] "Eliminando %(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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/bootloader/main.py:43 +msgid "Install bootloader." +msgstr "Instalar gestor de arranque." + +#: 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 " +"
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "Configurando el reloj de la computadora." + +#: 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ódigo de salida fue {}" + +#: src/modules/dracut/main.py:27 +msgid "Creating initramfs with dracut." +msgstr "" +"Creando initramfs - sistema de arranque - con dracut - su constructor -." + +#: src/modules/dracut/main.py:49 +msgid "Failed to run dracut on the target" +msgstr "Falló en ejecutar dracut - constructor de arranques - en el objetivo" + +#: src/modules/initramfscfg/main.py:32 +msgid "Configuring initramfs." +msgstr "Configurando initramfs - sistema de inicio -." + +#: src/modules/openrcdmcryptcfg/main.py:26 +msgid "Configuring OpenRC dmcrypt service." +msgstr "Configurando el servicio - de arranque encriptado -. OpenRC dmcrypt" + +#: src/modules/fstab/main.py:29 +msgid "Writing fstab." +msgstr "Escribiendo la tabla de particiones fstab" + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
to use." +msgstr "" + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Tarea de python ficticia." + +#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 +#: src/modules/dummypython/main.py:94 +msgid "Dummy python step {}" +msgstr "Paso {} de python ficticio" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "Configurando especificaciones locales o regionales." + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "Guardando la configuración de red." diff --git a/lang/python/es_MX/LC_MESSAGES/python.po b/lang/python/es_MX/LC_MESSAGES/python.po index c4ed2cf7c..269b7964a 100644 --- a/lang/python/es_MX/LC_MESSAGES/python.po +++ b/lang/python/es_MX/LC_MESSAGES/python.po @@ -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: Erland Huaman , 2021\n" "Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n" @@ -23,281 +23,42 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/bootloader/main.py:43 -msgid "Install bootloader." -msgstr "Instalar el cargador de arranque." - -#: 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 " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "No se puede escribir el archivo de configuración de KDM" - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "El archivo de configuración de KDM {!s} no existe" - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "No se puede escribir el archivo de configuración de LXDM" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "El archivo de configuración de LXDM {!s} no existe" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "No se puede escribir el archivo de configuración de LightDM" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "El archivo de configuración de LightDM {!s} no existe" - -#: src/modules/displaymanager/main.py:747 -msgid "Cannot configure LightDM" -msgstr "No se puede configurar LightDM" - -#: src/modules/displaymanager/main.py:748 -msgid "No LightDM greeter installed." -msgstr "LightDM greeter no está instalado." - -#: src/modules/displaymanager/main.py:779 -msgid "Cannot write SLIM configuration file" -msgstr "No se puede escribir el archivo de configuración de SLIM" - -#: 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 "No se seleccionaron gestores para el módulo de gestor de pantalla." - -#: src/modules/displaymanager/main.py:907 -msgid "" -"The displaymanagers list is empty or undefined in both globalstorage and " -"displaymanager.conf." -msgstr "" -"La lista de gestores de pantalla está vacía o indefinida tanto en el " -"globalstorage como en el displaymanager.conf." - -#: src/modules/displaymanager/main.py:989 -msgid "Display manager configuration was incomplete" -msgstr "La configuración del gestor de pantalla estaba incompleta" - -#: src/modules/dracut/main.py:27 -msgid "Creating initramfs with dracut." -msgstr "Creando initramfs con dracut" - -#: src/modules/dracut/main.py:49 -msgid "Failed to run dracut on the target" -msgstr "Se falló al intentar correr dracut en el objetivo" - -#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50 -msgid "The exit code was {}" -msgstr "El código de salida fue {}" - -#: src/modules/dummypython/main.py:35 -msgid "Dummy python job." -msgstr "Trabajo python ficticio." - -#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 -#: src/modules/dummypython/main.py:94 -msgid "Dummy python step {}" -msgstr "Paso python ficticio {}" - -#: src/modules/fstab/main.py:29 -msgid "Writing fstab." -msgstr "Escribiento 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ón" - -#: 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
{!s}
to use." -msgstr "No hay particiones definidas para que
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "" - #: src/modules/grubcfg/main.py:28 msgid "Configure GRUB." msgstr "Configura GRUB." -#: src/modules/hwclock/main.py:26 -msgid "Setting hardware clock." -msgstr "Configurando el reloj del hardware." - -#: src/modules/initcpiocfg/main.py:28 -msgid "Configuring mkinitcpio." -msgstr "Configurando mkinitcpio" - -#: src/modules/initramfscfg/main.py:32 -msgid "Configuring initramfs." -msgstr "Configurando initramfs." - -#: src/modules/localecfg/main.py:30 -msgid "Configuring locales." -msgstr "Configurando locales." - -#: src/modules/luksopenswaphookcfg/main.py:26 -msgid "Configuring encrypted swap." -msgstr "Configurando la swap encriptada." - -#: src/modules/mkinitfs/main.py:27 -msgid "Creating initramfs with mkinitfs." -msgstr "Creando initramfs con mkinitfs." - -#: src/modules/mkinitfs/main.py:49 -msgid "Failed to run mkinitfs on the target" -msgstr "Se falló al intentar correr mkinitfs en el objetivo" - #: src/modules/mount/main.py:30 msgid "Mounting partitions." msgstr "Montando particiones." -#: src/modules/networkcfg/main.py:28 -msgid "Saving network configuration." -msgstr "Guardando configuración de red." +#: 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ón" -#: src/modules/openrcdmcryptcfg/main.py:26 -msgid "Configuring OpenRC dmcrypt service." -msgstr "Configurando el servicio OpenRc dmcrypt." - -#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 -#: src/modules/packages/main.py:69 -msgid "Install packages." -msgstr "Instalar 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] "Removiendo un paquete." -msgstr[1] "Removiendo %(num)dpaquetes." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/plymouthcfg/main.py:27 -msgid "Configure Plymouth theme" -msgstr "Configurando el tema de Plymouth" - -#: src/modules/rawfs/main.py:26 -msgid "Installing data." -msgstr "Instalando data." - -#: src/modules/services-openrc/main.py:29 -msgid "Configure OpenRC services" -msgstr "Configura los servicios de OpenRC" - -#: 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 {arg!s} 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 "No se puede modificar el servicio." - -#: src/modules/services-openrc/main.py:94 -msgid "" -"rc-update {arg!s} 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 de ejecución del objetivo no existe" - -#: src/modules/services-openrc/main.py:102 -msgid "" -"The path for runlevel {level!s} is {path!s}, which does not " -"exist." -msgstr "" - -#: src/modules/services-openrc/main.py:110 -msgid "Target service does not exist" -msgstr "El servicio objetivo no existe" - -#: src/modules/services-openrc/main.py:111 -msgid "" -"The path for service {name!s} is {path!s}, 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
{!s}
to use." +msgstr "No hay particiones definidas para que
{!s}
use." #: src/modules/services-systemd/main.py:26 msgid "Configure systemd services" msgstr "Configura los servicios de systemd" +#: src/modules/services-systemd/main.py:59 +#: src/modules/services-openrc/main.py:93 +msgid "Cannot modify service" +msgstr "No se puede modificar el servicio." + #: src/modules/services-systemd/main.py:60 msgid "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -398,3 +159,244 @@ msgstr "" #: src/modules/unpackfs/main.py:479 msgid "The destination \"{}\" in the target system is not a directory" msgstr "El destino \"{}\" en el sistema objetivo no es un directorio" + +#: src/modules/displaymanager/main.py:526 +msgid "Cannot write KDM configuration file" +msgstr "No se puede escribir el archivo de configuración de KDM" + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "El archivo de configuración de KDM {!s} no existe" + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "No se puede escribir el archivo de configuración de LXDM" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "El archivo de configuración de LXDM {!s} no existe" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "No se puede escribir el archivo de configuración de LightDM" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "El archivo de configuración de LightDM {!s} no existe" + +#: src/modules/displaymanager/main.py:747 +msgid "Cannot configure LightDM" +msgstr "No se puede configurar LightDM" + +#: src/modules/displaymanager/main.py:748 +msgid "No LightDM greeter installed." +msgstr "LightDM greeter no está instalado." + +#: src/modules/displaymanager/main.py:779 +msgid "Cannot write SLIM configuration file" +msgstr "No se puede escribir el archivo de configuración de SLIM" + +#: 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 "No se seleccionaron gestores para el módulo de gestor de pantalla." + +#: src/modules/displaymanager/main.py:907 +msgid "" +"The displaymanagers list is empty or undefined in both globalstorage and " +"displaymanager.conf." +msgstr "" +"La lista de gestores de pantalla está vacía o indefinida tanto en el " +"globalstorage como en el displaymanager.conf." + +#: src/modules/displaymanager/main.py:989 +msgid "Display manager configuration was incomplete" +msgstr "La configuración del gestor de pantalla estaba incompleta" + +#: 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
{!s}
to use." +msgstr "" + +#: src/modules/luksopenswaphookcfg/main.py:26 +msgid "Configuring encrypted swap." +msgstr "Configurando la swap encriptada." + +#: src/modules/rawfs/main.py:26 +msgid "Installing data." +msgstr "Instalando data." + +#: src/modules/services-openrc/main.py:29 +msgid "Configure OpenRC services" +msgstr "Configura los servicios de OpenRC" + +#: 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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 de ejecución del objetivo no existe" + +#: src/modules/services-openrc/main.py:102 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target service does not exist" +msgstr "El servicio objetivo no existe" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:27 +msgid "Configure Plymouth theme" +msgstr "Configurando el tema de Plymouth" + +#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 +#: src/modules/packages/main.py:69 +msgid "Install packages." +msgstr "Instalar 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] "Removiendo un paquete." +msgstr[1] "Removiendo %(num)dpaquetes." + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/bootloader/main.py:43 +msgid "Install bootloader." +msgstr "Instalar el cargador de arranque." + +#: 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 " +"
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "Configurando el reloj del hardware." + +#: src/modules/mkinitfs/main.py:27 +msgid "Creating initramfs with mkinitfs." +msgstr "Creando initramfs con mkinitfs." + +#: src/modules/mkinitfs/main.py:49 +msgid "Failed to run mkinitfs on the target" +msgstr "Se falló al intentar correr mkinitfs en el objetivo" + +#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50 +msgid "The exit code was {}" +msgstr "El código de salida fue {}" + +#: src/modules/dracut/main.py:27 +msgid "Creating initramfs with dracut." +msgstr "Creando initramfs con dracut" + +#: src/modules/dracut/main.py:49 +msgid "Failed to run dracut on the target" +msgstr "Se falló al intentar correr dracut en el objetivo" + +#: src/modules/initramfscfg/main.py:32 +msgid "Configuring initramfs." +msgstr "Configurando initramfs." + +#: src/modules/openrcdmcryptcfg/main.py:26 +msgid "Configuring OpenRC dmcrypt service." +msgstr "Configurando el servicio OpenRc dmcrypt." + +#: src/modules/fstab/main.py:29 +msgid "Writing fstab." +msgstr "Escribiento fstab." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
to use." +msgstr "" + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Trabajo python ficticio." + +#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 +#: src/modules/dummypython/main.py:94 +msgid "Dummy python step {}" +msgstr "Paso python ficticio {}" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "Configurando locales." + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "Guardando configuración de red." diff --git a/lang/python/es_PE/LC_MESSAGES/python.po b/lang/python/es_PE/LC_MESSAGES/python.po index eba343ac1..02528a757 100644 --- a/lang/python/es_PE/LC_MESSAGES/python.po +++ b/lang/python/es_PE/LC_MESSAGES/python.po @@ -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: 2017-08-09 10:34+0000\n" "Language-Team: Spanish (Peru) (https://www.transifex.com/calamares/teams/20061/es_PE/)\n" "MIME-Version: 1.0\n" @@ -17,279 +17,42 @@ msgstr "" "Language: es_PE\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -380,3 +143,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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/es_PR/LC_MESSAGES/python.po b/lang/python/es_PR/LC_MESSAGES/python.po index ef354d34a..ed3c1e041 100644 --- a/lang/python/es_PR/LC_MESSAGES/python.po +++ b/lang/python/es_PR/LC_MESSAGES/python.po @@ -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: 2017-08-09 10:34+0000\n" "Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/calamares/teams/20061/es_PR/)\n" "MIME-Version: 1.0\n" @@ -17,279 +17,42 @@ msgstr "" "Language: es_PR\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -380,3 +143,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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/et/LC_MESSAGES/python.po b/lang/python/et/LC_MESSAGES/python.po index fd9875913..ee5b372c5 100644 --- a/lang/python/et/LC_MESSAGES/python.po +++ b/lang/python/et/LC_MESSAGES/python.po @@ -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: Madis Otenurm, 2019\n" "Language-Team: Estonian (https://www.transifex.com/calamares/teams/20061/et/)\n" @@ -21,279 +21,42 @@ msgstr "" "Language: et\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 " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "KDM-konfiguratsioonifaili ei saa kirjutada" - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "KDM-konfiguratsioonifail {!s} puudub" - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "LXDM-konfiguratsioonifaili ei saa kirjutada" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "LXDM-konfiguratsioonifail {!s} puudub" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "LightDM-konfiguratsioonifaili ei saa kirjutada" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "LightDM-konfiguratsioonifail {!s} puudub" - -#: src/modules/displaymanager/main.py:747 -msgid "Cannot configure LightDM" -msgstr "LightDM seadistamine ebaõnnestus" - -#: 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 "SLIM-konfiguratsioonifaili ei saa kirjutada" - -#: src/modules/displaymanager/main.py:780 -msgid "SLIM config file {!s} does not exist" -msgstr "SLIM-konfiguratsioonifail {!s} puudub" - -#: 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 "Testiv python'i töö." - -#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 -#: src/modules/dummypython/main.py:94 -msgid "Dummy python step {}" -msgstr "Testiv python'i aste {}" - -#: 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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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 "Paigalda paketid." - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "Pakkide töötlemine (%(count)d / %(total)d)" - -#: src/modules/packages/main.py:62 -#, python-format -msgid "Installing one package." -msgid_plural "Installing %(num)d packages." -msgstr[0] "Paigaldan ühe paketi." -msgstr[1] "Paigaldan %(num)d paketti." - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "Eemaldan ühe paketi." -msgstr[1] "Eemaldan %(num)d paketti." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} 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 "KDM-konfiguratsioonifaili ei saa kirjutada" + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "KDM-konfiguratsioonifail {!s} puudub" + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "LXDM-konfiguratsioonifaili ei saa kirjutada" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "LXDM-konfiguratsioonifail {!s} puudub" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "LightDM-konfiguratsioonifaili ei saa kirjutada" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "LightDM-konfiguratsioonifail {!s} puudub" + +#: src/modules/displaymanager/main.py:747 +msgid "Cannot configure LightDM" +msgstr "LightDM seadistamine ebaõnnestus" + +#: 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 "SLIM-konfiguratsioonifaili ei saa kirjutada" + +#: src/modules/displaymanager/main.py:780 +msgid "SLIM config file {!s} does not exist" +msgstr "SLIM-konfiguratsioonifail {!s} puudub" + +#: 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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 "Paigalda paketid." + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "Pakkide töötlemine (%(count)d / %(total)d)" + +#: src/modules/packages/main.py:62 +#, python-format +msgid "Installing one package." +msgid_plural "Installing %(num)d packages." +msgstr[0] "Paigaldan ühe paketi." +msgstr[1] "Paigaldan %(num)d paketti." + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "Eemaldan ühe paketi." +msgstr[1] "Eemaldan %(num)d paketti." + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
to use." +msgstr "" + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Testiv python'i töö." + +#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 +#: src/modules/dummypython/main.py:94 +msgid "Dummy python step {}" +msgstr "Testiv python'i aste {}" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "" + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "" diff --git a/lang/python/eu/LC_MESSAGES/python.po b/lang/python/eu/LC_MESSAGES/python.po index 1fb9125b4..3e5ac0ac2 100644 --- a/lang/python/eu/LC_MESSAGES/python.po +++ b/lang/python/eu/LC_MESSAGES/python.po @@ -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: Ander Elortondo, 2019\n" "Language-Team: Basque (https://www.transifex.com/calamares/teams/20061/eu/)\n" @@ -21,280 +21,42 @@ msgstr "" "Language: eu\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 " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "Ezin da KDM konfigurazio fitxategia idatzi" - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "KDM konfigurazio fitxategia {!s} ez da existitzen" - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "Ezin da LXDM konfigurazio fitxategia idatzi" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "LXDM konfigurazio fitxategia {!s} ez da existitzen" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "Ezin da LightDM konfigurazio fitxategia idatzi" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "LightDM konfigurazio fitxategia {!s} ez da existitzen" - -#: src/modules/displaymanager/main.py:747 -msgid "Cannot configure LightDM" -msgstr "Ezin da LightDM konfiguratu" - -#: src/modules/displaymanager/main.py:748 -msgid "No LightDM greeter installed." -msgstr "Ez dago LightDM harrera instalatua." - -#: src/modules/displaymanager/main.py:779 -msgid "Cannot write SLIM configuration file" -msgstr "Ezin da SLIM konfigurazio fitxategia idatzi" - -#: src/modules/displaymanager/main.py:780 -msgid "SLIM config file {!s} does not exist" -msgstr "SLIM konfigurazio fitxategia {!s} ez da existitzen" - -#: src/modules/displaymanager/main.py:906 -msgid "No display managers selected for the displaymanager module." -msgstr "" -"Ez da pantaila kudeatzailerik aukeratu pantaila-kudeatzaile modulurako." - -#: 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 "Pantaila kudeatzaile konfigurazioa osotu gabe" - -#: 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 "Dummy python lana." - -#: 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 urratsa {}" - -#: 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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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 "Instalatu paketeak" - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "Paketeak prozesatzen (%(count)d/ %(total)d) " - -#: src/modules/packages/main.py:62 -#, python-format -msgid "Installing one package." -msgid_plural "Installing %(num)d packages." -msgstr[0] "Pakete bat instalatzen." -msgstr[1] "%(num)dpakete instalatzen." - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "Pakete bat kentzen." -msgstr[1] "%(num)dpakete kentzen." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -385,3 +147,243 @@ 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 "Ezin da KDM konfigurazio fitxategia idatzi" + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "KDM konfigurazio fitxategia {!s} ez da existitzen" + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "Ezin da LXDM konfigurazio fitxategia idatzi" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "LXDM konfigurazio fitxategia {!s} ez da existitzen" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "Ezin da LightDM konfigurazio fitxategia idatzi" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "LightDM konfigurazio fitxategia {!s} ez da existitzen" + +#: src/modules/displaymanager/main.py:747 +msgid "Cannot configure LightDM" +msgstr "Ezin da LightDM konfiguratu" + +#: src/modules/displaymanager/main.py:748 +msgid "No LightDM greeter installed." +msgstr "Ez dago LightDM harrera instalatua." + +#: src/modules/displaymanager/main.py:779 +msgid "Cannot write SLIM configuration file" +msgstr "Ezin da SLIM konfigurazio fitxategia idatzi" + +#: src/modules/displaymanager/main.py:780 +msgid "SLIM config file {!s} does not exist" +msgstr "SLIM konfigurazio fitxategia {!s} ez da existitzen" + +#: src/modules/displaymanager/main.py:906 +msgid "No display managers selected for the displaymanager module." +msgstr "" +"Ez da pantaila kudeatzailerik aukeratu pantaila-kudeatzaile modulurako." + +#: 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 "Pantaila kudeatzaile konfigurazioa osotu gabe" + +#: 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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 "Instalatu paketeak" + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "Paketeak prozesatzen (%(count)d/ %(total)d) " + +#: src/modules/packages/main.py:62 +#, python-format +msgid "Installing one package." +msgid_plural "Installing %(num)d packages." +msgstr[0] "Pakete bat instalatzen." +msgstr[1] "%(num)dpakete instalatzen." + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "Pakete bat kentzen." +msgstr[1] "%(num)dpakete kentzen." + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
to use." +msgstr "" + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Dummy python lana." + +#: 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 urratsa {}" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "" + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "" diff --git a/lang/python/fa/LC_MESSAGES/python.po b/lang/python/fa/LC_MESSAGES/python.po index eb4253986..92d71c9c1 100644 --- a/lang/python/fa/LC_MESSAGES/python.po +++ b/lang/python/fa/LC_MESSAGES/python.po @@ -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: alireza jamshidi , 2020\n" "Language-Team: Persian (https://www.transifex.com/calamares/teams/20061/fa/)\n" @@ -22,279 +22,42 @@ msgstr "" "Language: fa\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 " -"
{!s}
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 "پروندهٔ پیکربندی {!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 "پروندهٔ پیکربندی {!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 "پروندهٔ پیکربندی {!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 "نمی‌توان پروندهٔ پیکربندی LightDM را نوشت" - -#: src/modules/displaymanager/main.py:780 -msgid "SLIM config file {!s} does not exist" -msgstr "پروندهٔ پیکربندی {!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 "در حال ایجاد 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 "کار پایتونی الکی." - -#: 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 "در حال نوشتن 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
{!s}
to use." -msgstr "هیچ افرازی برای استفادهٔ
{!s}
تعریف نشده." - -#: 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
{!s}
to use." -msgstr "هیچ نقطهٔ اتّصال ریشه‌ای برای استفادهٔ
{!s}
داده نشده." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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 "پیکربندی 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 "در حال پیکربندی خدمت dmcrypt OpenRC." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 "پیکربندی خدمات 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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
to use." +msgstr "هیچ افرازی برای استفادهٔ
{!s}
تعریف نشده." #: 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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -389,3 +152,242 @@ msgstr "شکست در یافتن unsquashfs. مطمئن شوید بستهٔ squa #: 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 "پروندهٔ پیکربندی {!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 "پروندهٔ پیکربندی {!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 "پروندهٔ پیکربندی {!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 "نمی‌توان پروندهٔ پیکربندی LightDM را نوشت" + +#: src/modules/displaymanager/main.py:780 +msgid "SLIM config file {!s} does not exist" +msgstr "پروندهٔ پیکربندی {!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
{!s}
to use." +msgstr "هیچ نقطهٔ اتّصال ریشه‌ای برای استفادهٔ
{!s}
داده نشده." + +#: 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 "نمی‌توان خدمت {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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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 "در حال ایجاد 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 "در حال پیکربندی خدمت dmcrypt OpenRC." + +#: src/modules/fstab/main.py:29 +msgid "Writing fstab." +msgstr "در حال نوشتن fstab." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
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 "در حال ذخیرهٔ پیکربندی شبکه." diff --git a/lang/python/fi_FI/LC_MESSAGES/python.po b/lang/python/fi_FI/LC_MESSAGES/python.po index ae0b10775..9646e5c64 100644 --- a/lang/python/fi_FI/LC_MESSAGES/python.po +++ b/lang/python/fi_FI/LC_MESSAGES/python.po @@ -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: Kimmo Kujansuu , 2021\n" "Language-Team: Finnish (Finland) (https://www.transifex.com/calamares/teams/20061/fi_FI/)\n" @@ -21,286 +21,42 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/bootloader/main.py:43 -msgid "Install bootloader." -msgstr "Asenna 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 " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "KDM-määritystiedostoa ei voi kirjoittaa" - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "KDM-määritystiedostoa {!s} ei ole olemassa" - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "LXDM-määritystiedostoa ei voi kirjoittaa" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "LXDM-määritystiedostoa {!s} ei ole olemassa" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "LightDM-määritystiedostoa ei voi kirjoittaa" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "LightDM-määritystiedostoa {!s} ei ole olemassa" - -#: src/modules/displaymanager/main.py:747 -msgid "Cannot configure LightDM" -msgstr "LightDM määritysvirhe" - -#: src/modules/displaymanager/main.py:748 -msgid "No LightDM greeter installed." -msgstr "LightDM ei ole asennettu." - -#: src/modules/displaymanager/main.py:779 -msgid "Cannot write SLIM configuration file" -msgstr "SLIM-määritystiedostoa ei voi kirjoittaa" - -#: src/modules/displaymanager/main.py:780 -msgid "SLIM config file {!s} does not exist" -msgstr "SLIM-määritystiedostoa {!s} ei ole olemassa" - -#: src/modules/displaymanager/main.py:906 -msgid "No display managers selected for the displaymanager module." -msgstr "Displaymanager-moduulia varten ei ole valittu näyttönhallintaa." - -#: src/modules/displaymanager/main.py:907 -msgid "" -"The displaymanagers list is empty or undefined in both globalstorage and " -"displaymanager.conf." -msgstr "" -"Luettelo on tyhjä tai määrittelemätön, sekä globalstorage, että " -"displaymanager.conf tiedostossa." - -#: src/modules/displaymanager/main.py:989 -msgid "Display manager configuration was incomplete" -msgstr "Näytönhallinnan kokoonpano oli puutteellinen" - -#: src/modules/dracut/main.py:27 -msgid "Creating initramfs with dracut." -msgstr "Initramfs luominen dracut:lla." - -#: src/modules/dracut/main.py:49 -msgid "Failed to run dracut on the target" -msgstr "Dracut-ohjelman suorittaminen ei onnistunut" - -#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50 -msgid "The exit code was {}" -msgstr "Poistumiskoodi oli {}" - -#: src/modules/dummypython/main.py:35 -msgid "Dummy python job." -msgstr "Harjoitus 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 "Harjoitus python vaihe {}" - -#: src/modules/fstab/main.py:29 -msgid "Writing fstab." -msgstr "Fstab kirjoittaminen." - -#: 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 "Määritysvirhe" - -#: 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
{!s}
to use." -msgstr "Ei ole määritetty käyttämään osioita
{!s}
." - -#: 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
{!s}
to use." -msgstr "" -"Root-juuri kiinnityspistettä
{!s}
ei ole annettu käytettäväksi." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "" - #: src/modules/grubcfg/main.py:28 msgid "Configure GRUB." msgstr "Määritä GRUB." -#: src/modules/hwclock/main.py:26 -msgid "Setting hardware clock." -msgstr "Laitteiston kellon asettaminen." - -#: src/modules/initcpiocfg/main.py:28 -msgid "Configuring mkinitcpio." -msgstr "Määritetään mkinitcpio." - -#: src/modules/initramfscfg/main.py:32 -msgid "Configuring initramfs." -msgstr "Määritetään initramfs." - -#: src/modules/localecfg/main.py:30 -msgid "Configuring locales." -msgstr "Määritetään locales." - -#: src/modules/luksopenswaphookcfg/main.py:26 -msgid "Configuring encrypted swap." -msgstr "Salatun swapin määrittäminen." - -#: src/modules/mkinitfs/main.py:27 -msgid "Creating initramfs with mkinitfs." -msgstr "Initramfs luominen mkinitfs avulla." - -#: src/modules/mkinitfs/main.py:49 -msgid "Failed to run mkinitfs on the target" -msgstr "Kohteen mkinitfs-suoritus epäonnistui." - #: src/modules/mount/main.py:30 msgid "Mounting partitions." msgstr "Yhdistä osiot." -#: src/modules/networkcfg/main.py:28 -msgid "Saving network configuration." -msgstr "Tallennetaan verkon määrityksiä." +#: 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 "Määritysvirhe" -#: src/modules/openrcdmcryptcfg/main.py:26 -msgid "Configuring OpenRC dmcrypt service." -msgstr "OpenRC dmcrypt-palvelun määrittäminen." - -#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 -#: src/modules/packages/main.py:69 -msgid "Install packages." -msgstr "Asenna paketit." - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "Pakettien käsittely (%(count)d / %(total)d)" - -#: src/modules/packages/main.py:62 -#, python-format -msgid "Installing one package." -msgid_plural "Installing %(num)d packages." -msgstr[0] "Asentaa " -msgstr[1] "Asentaa %(num)d paketteja." - -#: 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] "Poistaa %(num)d paketteja." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/plymouthcfg/main.py:27 -msgid "Configure Plymouth theme" -msgstr "Määritä Plymouthin teema" - -#: src/modules/rawfs/main.py:26 -msgid "Installing data." -msgstr "Asennetaan tietoja." - -#: src/modules/services-openrc/main.py:29 -msgid "Configure OpenRC services" -msgstr "Määritä OpenRC-palvelut" - -#: src/modules/services-openrc/main.py:57 -msgid "Cannot add service {name!s} to run-level {level!s}." -msgstr "Palvelua {name!s} ei-voi lisätä suorituksen tasolle {level!s}." - -#: src/modules/services-openrc/main.py:59 -msgid "Cannot remove service {name!s} from run-level {level!s}." -msgstr "Ei voi poistaa palvelua {name!s} ajo-tasolla {level!s}." - -#: src/modules/services-openrc/main.py:61 -msgid "" -"Unknown service-action {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Tuntematon huoltotoiminto{arg!s} palvelun {name!s} " -"palvelutasolle {level!s}." - -#: src/modules/services-openrc/main.py:93 -#: src/modules/services-systemd/main.py:59 -msgid "Cannot modify service" -msgstr "Palvelua ei voi muokata" - -#: src/modules/services-openrc/main.py:94 -msgid "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"rc-update {arg!s} palautti chrootissa virhekoodin {num!s}." - -#: src/modules/services-openrc/main.py:101 -msgid "Target runlevel does not exist" -msgstr "Kohde runlevel ei ole olemassa" - -#: src/modules/services-openrc/main.py:102 -msgid "" -"The path for runlevel {level!s} is {path!s}, which does not " -"exist." -msgstr "Ajotason polku {level!s} on {path!s}, jota ei ole." - -#: src/modules/services-openrc/main.py:110 -msgid "Target service does not exist" -msgstr "Kohdepalvelua ei ole" - -#: src/modules/services-openrc/main.py:111 -msgid "" -"The path for service {name!s} is {path!s}, which does not " -"exist." -msgstr "" -"Palvelun polku {name!s} on {path!s}, jota ei ole olemassa." +#: 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
{!s}
to use." +msgstr "Ei ole määritetty käyttämään osioita
{!s}
." #: src/modules/services-systemd/main.py:26 msgid "Configure systemd services" msgstr "Määritä systemd palvelut" +#: src/modules/services-systemd/main.py:59 +#: src/modules/services-openrc/main.py:93 +msgid "Cannot modify service" +msgstr "Palvelua ei voi muokata" + #: src/modules/services-systemd/main.py:60 msgid "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -395,3 +151,257 @@ msgstr "" #: src/modules/unpackfs/main.py:479 msgid "The destination \"{}\" in the target system is not a directory" msgstr "Kohdejärjestelmän \"{}\" kohde ei ole hakemisto" + +#: src/modules/displaymanager/main.py:526 +msgid "Cannot write KDM configuration file" +msgstr "KDM-määritystiedostoa ei voi kirjoittaa" + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "KDM-määritystiedostoa {!s} ei ole olemassa" + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "LXDM-määritystiedostoa ei voi kirjoittaa" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "LXDM-määritystiedostoa {!s} ei ole olemassa" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "LightDM-määritystiedostoa ei voi kirjoittaa" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "LightDM-määritystiedostoa {!s} ei ole olemassa" + +#: src/modules/displaymanager/main.py:747 +msgid "Cannot configure LightDM" +msgstr "LightDM määritysvirhe" + +#: src/modules/displaymanager/main.py:748 +msgid "No LightDM greeter installed." +msgstr "LightDM ei ole asennettu." + +#: src/modules/displaymanager/main.py:779 +msgid "Cannot write SLIM configuration file" +msgstr "SLIM-määritystiedostoa ei voi kirjoittaa" + +#: src/modules/displaymanager/main.py:780 +msgid "SLIM config file {!s} does not exist" +msgstr "SLIM-määritystiedostoa {!s} ei ole olemassa" + +#: src/modules/displaymanager/main.py:906 +msgid "No display managers selected for the displaymanager module." +msgstr "Displaymanager-moduulia varten ei ole valittu näyttönhallintaa." + +#: src/modules/displaymanager/main.py:907 +msgid "" +"The displaymanagers list is empty or undefined in both globalstorage and " +"displaymanager.conf." +msgstr "" +"Luettelo on tyhjä tai määrittelemätön, sekä globalstorage, että " +"displaymanager.conf tiedostossa." + +#: src/modules/displaymanager/main.py:989 +msgid "Display manager configuration was incomplete" +msgstr "Näytönhallinnan kokoonpano oli puutteellinen" + +#: src/modules/initcpiocfg/main.py:28 +msgid "Configuring mkinitcpio." +msgstr "Määritetää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
{!s}
to use." +msgstr "" +"Root-juuri kiinnityspistettä
{!s}
ei ole annettu käytettäväksi." + +#: src/modules/luksopenswaphookcfg/main.py:26 +msgid "Configuring encrypted swap." +msgstr "Salatun swapin määrittäminen." + +#: src/modules/rawfs/main.py:26 +msgid "Installing data." +msgstr "Asennetaan tietoja." + +#: src/modules/services-openrc/main.py:29 +msgid "Configure OpenRC services" +msgstr "Määritä OpenRC-palvelut" + +#: src/modules/services-openrc/main.py:57 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "Palvelua {name!s} ei-voi lisätä suorituksen tasolle {level!s}." + +#: src/modules/services-openrc/main.py:59 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "Ei voi poistaa palvelua {name!s} ajo-tasolla {level!s}." + +#: src/modules/services-openrc/main.py:61 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Tuntematon huoltotoiminto{arg!s} palvelun {name!s} " +"palvelutasolle {level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"rc-update {arg!s} palautti chrootissa virhekoodin {num!s}." + +#: src/modules/services-openrc/main.py:101 +msgid "Target runlevel does not exist" +msgstr "Kohde runlevel ei ole olemassa" + +#: src/modules/services-openrc/main.py:102 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "Ajotason polku {level!s} on {path!s}, jota ei ole." + +#: src/modules/services-openrc/main.py:110 +msgid "Target service does not exist" +msgstr "Kohdepalvelua ei ole" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"Palvelun polku {name!s} on {path!s}, jota ei ole olemassa." + +#: src/modules/plymouthcfg/main.py:27 +msgid "Configure Plymouth theme" +msgstr "Määritä Plymouthin teema" + +#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 +#: src/modules/packages/main.py:69 +msgid "Install packages." +msgstr "Asenna paketit." + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "Pakettien käsittely (%(count)d / %(total)d)" + +#: src/modules/packages/main.py:62 +#, python-format +msgid "Installing one package." +msgid_plural "Installing %(num)d packages." +msgstr[0] "Asentaa " +msgstr[1] "Asentaa %(num)d paketteja." + +#: 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] "Poistaa %(num)d paketteja." + +#: src/modules/packages/main.py:588 src/modules/packages/main.py:600 +#: src/modules/packages/main.py:628 +msgid "Package Manager error" +msgstr "Paketinhallinnan virhe" + +#: src/modules/packages/main.py:589 +msgid "" +"The package manager could not prepare updates. The command
{!s}
" +"returned error code {!s}." +msgstr "" +"Paketinhallinta ei voinut valmistella päivityksiä. Komento
{!s}
" +"palautti virhekoodin {!s}." + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" returned error code {!s}." +msgstr "" +"Paketinhallinta ei voinut päivittää järjestelmää. Komento
{!s}
" +"palautti virhekoodin {!s}." + +#: src/modules/packages/main.py:629 +msgid "" +"The package manager could not make changes to the installed system. The " +"command
{!s}
returned error code {!s}." +msgstr "" +"Paketinhallinta ei voinut tehdä muutoksia asennettuun järjestelmään. Komento" +"
{!s}
palautti virhekoodin {!s}." + +#: src/modules/bootloader/main.py:43 +msgid "Install bootloader." +msgstr "Asenna bootloader." + +#: src/modules/bootloader/main.py:502 +msgid "Bootloader installation error" +msgstr "Bootloader asennusvirhe" + +#: src/modules/bootloader/main.py:503 +msgid "" +"The bootloader could not be installed. The installation command " +"
{!s}
returned error code {!s}." +msgstr "" +"Bootloaderia ei voitu asentaa. Asennuskomento
{!s}
palautti " +"virhekoodin {!s}." + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "Laitteiston kellon asettaminen." + +#: src/modules/mkinitfs/main.py:27 +msgid "Creating initramfs with mkinitfs." +msgstr "Initramfs luominen mkinitfs avulla." + +#: src/modules/mkinitfs/main.py:49 +msgid "Failed to run mkinitfs on the target" +msgstr "Kohteen mkinitfs-suoritus epäonnistui." + +#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50 +msgid "The exit code was {}" +msgstr "Poistumiskoodi oli {}" + +#: src/modules/dracut/main.py:27 +msgid "Creating initramfs with dracut." +msgstr "Initramfs luominen dracut:lla." + +#: src/modules/dracut/main.py:49 +msgid "Failed to run dracut on the target" +msgstr "Dracut-ohjelman suorittaminen ei onnistunut" + +#: src/modules/initramfscfg/main.py:32 +msgid "Configuring initramfs." +msgstr "Määritetään initramfs." + +#: src/modules/openrcdmcryptcfg/main.py:26 +msgid "Configuring OpenRC dmcrypt service." +msgstr "OpenRC dmcrypt-palvelun määrittäminen." + +#: src/modules/fstab/main.py:29 +msgid "Writing fstab." +msgstr "Fstab kirjoittaminen." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
to use." +msgstr "Ei
{!s}
määritys annetaan
{!s}
varten." + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Harjoitus 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 "Harjoitus python vaihe {}" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "Määritetään locales." + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "Tallennetaan verkon määrityksiä." diff --git a/lang/python/fr/LC_MESSAGES/python.po b/lang/python/fr/LC_MESSAGES/python.po index 469799254..300c553f7 100644 --- a/lang/python/fr/LC_MESSAGES/python.po +++ b/lang/python/fr/LC_MESSAGES/python.po @@ -20,7 +20,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: roxfr , 2021\n" "Language-Team: French (https://www.transifex.com/calamares/teams/20061/fr/)\n" @@ -30,294 +30,43 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: src/modules/bootloader/main.py:43 -msgid "Install bootloader." -msgstr "Installation du 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 " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "Impossible d'écrire le fichier de configuration KDM" - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "Le fichier de configuration KDM n'existe pas" - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "Impossible d'écrire le fichier de configuration LXDM" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "Le fichier de configuration LXDM n'existe pas" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "Impossible d'écrire le fichier de configuration LightDM" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "Le fichier de configuration LightDM {!S} n'existe pas" - -#: src/modules/displaymanager/main.py:747 -msgid "Cannot configure LightDM" -msgstr "Impossible de configurer LightDM" - -#: src/modules/displaymanager/main.py:748 -msgid "No LightDM greeter installed." -msgstr "Aucun hôte LightDM est installé" - -#: src/modules/displaymanager/main.py:779 -msgid "Cannot write SLIM configuration file" -msgstr "Impossible d'écrire le fichier de configuration SLIM" - -#: src/modules/displaymanager/main.py:780 -msgid "SLIM config file {!s} does not exist" -msgstr "Le fichier de configuration SLIM {!S} n'existe pas" - -#: src/modules/displaymanager/main.py:906 -msgid "No display managers selected for the displaymanager module." -msgstr "" -"Aucun gestionnaire d'affichage n'a été sélectionné pour le module de " -"gestionnaire d'affichage" - -#: src/modules/displaymanager/main.py:907 -msgid "" -"The displaymanagers list is empty or undefined in both globalstorage and " -"displaymanager.conf." -msgstr "" -"La liste des gestionnaires d'affichage est vide ou indéfinie à la fois dans " -"globalstorage et displaymanager.conf." - -#: src/modules/displaymanager/main.py:989 -msgid "Display manager configuration was incomplete" -msgstr "La configuration du gestionnaire d'affichage était incomplète" - -#: src/modules/dracut/main.py:27 -msgid "Creating initramfs with dracut." -msgstr "Configuration du initramfs avec dracut." - -#: src/modules/dracut/main.py:49 -msgid "Failed to run dracut on the target" -msgstr "Erreur d'exécution de dracut sur la cible." - -#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50 -msgid "The exit code was {}" -msgstr "Le code de sortie était {}" - -#: src/modules/dummypython/main.py:35 -msgid "Dummy python job." -msgstr "Tâche factice de python" - -#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 -#: src/modules/dummypython/main.py:94 -msgid "Dummy python step {}" -msgstr "Étape factice de python {}" - -#: src/modules/fstab/main.py:29 -msgid "Writing fstab." -msgstr "Écriture du 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 "Erreur de configuration" - -#: 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
{!s}
to use." -msgstr "" -"Aucune partition n'est définie pour être utilisée par
{!s}
." - -#: 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
{!s}
to use." -msgstr "" -"Aucun point de montage racine n'a été donné pour être utilisé par " -"
{!s}
." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "" - #: src/modules/grubcfg/main.py:28 msgid "Configure GRUB." msgstr "Configuration du GRUB." -#: src/modules/hwclock/main.py:26 -msgid "Setting hardware clock." -msgstr "Configuration de l'horloge matériel." - -#: src/modules/initcpiocfg/main.py:28 -msgid "Configuring mkinitcpio." -msgstr "Configuration de mkinitcpio." - -#: src/modules/initramfscfg/main.py:32 -msgid "Configuring initramfs." -msgstr "Configuration du initramfs." - -#: src/modules/localecfg/main.py:30 -msgid "Configuring locales." -msgstr "Configuration des locales." - -#: src/modules/luksopenswaphookcfg/main.py:26 -msgid "Configuring encrypted swap." -msgstr "Configuration du swap chiffrée." - -#: src/modules/mkinitfs/main.py:27 -msgid "Creating initramfs with mkinitfs." -msgstr "Création d'initramfs avec mkinitfs." - -#: src/modules/mkinitfs/main.py:49 -msgid "Failed to run mkinitfs on the target" -msgstr "Échec de l'exécution de mkinitfs sur la cible" - #: src/modules/mount/main.py:30 msgid "Mounting partitions." msgstr "Montage des partitions." -#: src/modules/networkcfg/main.py:28 -msgid "Saving network configuration." -msgstr "Sauvegarde de la configuration du réseau en cours." +#: 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 "Erreur de configuration" -#: src/modules/openrcdmcryptcfg/main.py:26 -msgid "Configuring OpenRC dmcrypt service." -msgstr "Configuration du service OpenRC dmcrypt." - -#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 -#: src/modules/packages/main.py:69 -msgid "Install packages." -msgstr "Installer les paquets." - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "Traitement des 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] "Installation d'un paquet." -msgstr[1] "Installation de %(num)d paquets." - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "Suppression d'un paquet." -msgstr[1] "Suppression de %(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" +#: 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
{!s}
to use." msgstr "" - -#: src/modules/packages/main.py:589 -msgid "" -"The package manager could not prepare updates. The command
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/plymouthcfg/main.py:27 -msgid "Configure Plymouth theme" -msgstr "Configurer le thème Plymouth" - -#: src/modules/rawfs/main.py:26 -msgid "Installing data." -msgstr "Installation de données." - -#: src/modules/services-openrc/main.py:29 -msgid "Configure OpenRC services" -msgstr "Configurer les services OpenRC" - -#: src/modules/services-openrc/main.py:57 -msgid "Cannot add service {name!s} to run-level {level!s}." -msgstr "Impossible d'ajouter le service {name!s} au run-level {level!s}." - -#: src/modules/services-openrc/main.py:59 -msgid "Cannot remove service {name!s} from run-level {level!s}." -msgstr "Impossible de retirer le service {name!s} du run-level {level!s}." - -#: src/modules/services-openrc/main.py:61 -msgid "" -"Unknown service-action {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Service-action {arg!s} inconnue pour le service {name!s} dans " -"le run-level {level!s}." - -#: src/modules/services-openrc/main.py:93 -#: src/modules/services-systemd/main.py:59 -msgid "Cannot modify service" -msgstr "Impossible de modifier le service" - -#: src/modules/services-openrc/main.py:94 -msgid "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"L'appel rc-update {arg!s} dans chroot a renvoyé le code " -"d'erreur {num!s}." - -#: src/modules/services-openrc/main.py:101 -msgid "Target runlevel does not exist" -msgstr "Le runlevel cible n'existe pas" - -#: src/modules/services-openrc/main.py:102 -msgid "" -"The path for runlevel {level!s} is {path!s}, which does not " -"exist." -msgstr "" -"Le chemin pour le runlevel {level!s} est {path!s}, qui n'existe" -" pas." - -#: src/modules/services-openrc/main.py:110 -msgid "Target service does not exist" -msgstr "Le service cible n'existe pas" - -#: src/modules/services-openrc/main.py:111 -msgid "" -"The path for service {name!s} is {path!s}, which does not " -"exist." -msgstr "" -"Le chemin pour le service {name!s} est {path!s}, qui n'existe " -"pas." +"Aucune partition n'est définie pour être utilisée par
{!s}
." #: src/modules/services-systemd/main.py:26 msgid "Configure systemd services" msgstr "Configurer les services systemd" +#: src/modules/services-systemd/main.py:59 +#: src/modules/services-openrc/main.py:93 +msgid "Cannot modify service" +msgstr "Impossible de modifier le service" + #: src/modules/services-systemd/main.py:60 msgid "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -416,3 +165,256 @@ msgstr "" #: src/modules/unpackfs/main.py:479 msgid "The destination \"{}\" in the target system is not a directory" msgstr "La destination \"{}\" dans le système cible n'est pas un répertoire" + +#: src/modules/displaymanager/main.py:526 +msgid "Cannot write KDM configuration file" +msgstr "Impossible d'écrire le fichier de configuration KDM" + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "Le fichier de configuration KDM n'existe pas" + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "Impossible d'écrire le fichier de configuration LXDM" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "Le fichier de configuration LXDM n'existe pas" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "Impossible d'écrire le fichier de configuration LightDM" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "Le fichier de configuration LightDM {!S} n'existe pas" + +#: src/modules/displaymanager/main.py:747 +msgid "Cannot configure LightDM" +msgstr "Impossible de configurer LightDM" + +#: src/modules/displaymanager/main.py:748 +msgid "No LightDM greeter installed." +msgstr "Aucun hôte LightDM est installé" + +#: src/modules/displaymanager/main.py:779 +msgid "Cannot write SLIM configuration file" +msgstr "Impossible d'écrire le fichier de configuration SLIM" + +#: src/modules/displaymanager/main.py:780 +msgid "SLIM config file {!s} does not exist" +msgstr "Le fichier de configuration SLIM {!S} n'existe pas" + +#: src/modules/displaymanager/main.py:906 +msgid "No display managers selected for the displaymanager module." +msgstr "" +"Aucun gestionnaire d'affichage n'a été sélectionné pour le module de " +"gestionnaire d'affichage" + +#: src/modules/displaymanager/main.py:907 +msgid "" +"The displaymanagers list is empty or undefined in both globalstorage and " +"displaymanager.conf." +msgstr "" +"La liste des gestionnaires d'affichage est vide ou indéfinie à la fois dans " +"globalstorage et displaymanager.conf." + +#: src/modules/displaymanager/main.py:989 +msgid "Display manager configuration was incomplete" +msgstr "La configuration du gestionnaire d'affichage était incomplète" + +#: src/modules/initcpiocfg/main.py:28 +msgid "Configuring mkinitcpio." +msgstr "Configuration de 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
{!s}
to use." +msgstr "" +"Aucun point de montage racine n'a été donné pour être utilisé par " +"
{!s}
." + +#: src/modules/luksopenswaphookcfg/main.py:26 +msgid "Configuring encrypted swap." +msgstr "Configuration du swap chiffrée." + +#: src/modules/rawfs/main.py:26 +msgid "Installing data." +msgstr "Installation de données." + +#: src/modules/services-openrc/main.py:29 +msgid "Configure OpenRC services" +msgstr "Configurer les services OpenRC" + +#: src/modules/services-openrc/main.py:57 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "Impossible d'ajouter le service {name!s} au run-level {level!s}." + +#: src/modules/services-openrc/main.py:59 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "Impossible de retirer le service {name!s} du run-level {level!s}." + +#: src/modules/services-openrc/main.py:61 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Service-action {arg!s} inconnue pour le service {name!s} dans " +"le run-level {level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"L'appel rc-update {arg!s} dans chroot a renvoyé le code " +"d'erreur {num!s}." + +#: src/modules/services-openrc/main.py:101 +msgid "Target runlevel does not exist" +msgstr "Le runlevel cible n'existe pas" + +#: src/modules/services-openrc/main.py:102 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"Le chemin pour le runlevel {level!s} est {path!s}, qui n'existe" +" pas." + +#: src/modules/services-openrc/main.py:110 +msgid "Target service does not exist" +msgstr "Le service cible n'existe pas" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"Le chemin pour le service {name!s} est {path!s}, qui n'existe " +"pas." + +#: src/modules/plymouthcfg/main.py:27 +msgid "Configure Plymouth theme" +msgstr "Configurer le thème Plymouth" + +#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 +#: src/modules/packages/main.py:69 +msgid "Install packages." +msgstr "Installer les paquets." + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "Traitement des 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] "Installation d'un paquet." +msgstr[1] "Installation de %(num)d paquets." + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "Suppression d'un paquet." +msgstr[1] "Suppression de %(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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/bootloader/main.py:43 +msgid "Install bootloader." +msgstr "Installation du 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 " +"
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "Configuration de l'horloge matériel." + +#: src/modules/mkinitfs/main.py:27 +msgid "Creating initramfs with mkinitfs." +msgstr "Création d'initramfs avec mkinitfs." + +#: src/modules/mkinitfs/main.py:49 +msgid "Failed to run mkinitfs on the target" +msgstr "Échec de l'exécution de mkinitfs sur la cible" + +#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50 +msgid "The exit code was {}" +msgstr "Le code de sortie était {}" + +#: src/modules/dracut/main.py:27 +msgid "Creating initramfs with dracut." +msgstr "Configuration du initramfs avec dracut." + +#: src/modules/dracut/main.py:49 +msgid "Failed to run dracut on the target" +msgstr "Erreur d'exécution de dracut sur la cible." + +#: src/modules/initramfscfg/main.py:32 +msgid "Configuring initramfs." +msgstr "Configuration du initramfs." + +#: src/modules/openrcdmcryptcfg/main.py:26 +msgid "Configuring OpenRC dmcrypt service." +msgstr "Configuration du service OpenRC dmcrypt." + +#: src/modules/fstab/main.py:29 +msgid "Writing fstab." +msgstr "Écriture du fstab." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
to use." +msgstr "" + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Tâche factice de python" + +#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 +#: src/modules/dummypython/main.py:94 +msgid "Dummy python step {}" +msgstr "Étape factice de python {}" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "Configuration des locales." + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "Sauvegarde de la configuration du réseau en cours." diff --git a/lang/python/fr_CH/LC_MESSAGES/python.po b/lang/python/fr_CH/LC_MESSAGES/python.po index 57ada0388..1e9cdb4df 100644 --- a/lang/python/fr_CH/LC_MESSAGES/python.po +++ b/lang/python/fr_CH/LC_MESSAGES/python.po @@ -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: 2017-08-09 10:34+0000\n" "Language-Team: French (Switzerland) (https://www.transifex.com/calamares/teams/20061/fr_CH/)\n" "MIME-Version: 1.0\n" @@ -17,279 +17,42 @@ msgstr "" "Language: fr_CH\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -380,3 +143,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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/fur/LC_MESSAGES/python.po b/lang/python/fur/LC_MESSAGES/python.po index d22dfa2a0..455138a9d 100644 --- a/lang/python/fur/LC_MESSAGES/python.po +++ b/lang/python/fur/LC_MESSAGES/python.po @@ -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: Fabio Tomat , 2020\n" "Language-Team: Friulian (https://www.transifex.com/calamares/teams/20061/fur/)\n" @@ -21,288 +21,42 @@ msgstr "" "Language: fur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/bootloader/main.py:43 -msgid "Install bootloader." -msgstr "Instale il 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 " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "Impussibil scrivi il file di configurazion di KDM" - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "Il file di configurazion di KDM {!s} nol esist" - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "Impussibil scrivi il file di configurazion di LXDM" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "Il file di configurazion di LXDM {!s} nol esist" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "Impussibil scrivi il file di configurazion di LightDM" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "Il file di configurazion di LightDM {!s} nol esist" - -#: src/modules/displaymanager/main.py:747 -msgid "Cannot configure LightDM" -msgstr "Impussibil configurâ LightDM" - -#: src/modules/displaymanager/main.py:748 -msgid "No LightDM greeter installed." -msgstr "Nissun menù di benvignût par LightDM instalât." - -#: src/modules/displaymanager/main.py:779 -msgid "Cannot write SLIM configuration file" -msgstr "Impussibil scrivi il file di configurazion SLIM" - -#: src/modules/displaymanager/main.py:780 -msgid "SLIM config file {!s} does not exist" -msgstr "Il file di configurazion di SLIM {!s} nol esist" - -#: src/modules/displaymanager/main.py:906 -msgid "No display managers selected for the displaymanager module." -msgstr "Nissun gjestôr di visôrs selezionât pal modul displaymanager." - -#: src/modules/displaymanager/main.py:907 -msgid "" -"The displaymanagers list is empty or undefined in both globalstorage and " -"displaymanager.conf." -msgstr "" -"La liste dai gjestôrs di visôrs e je vueide o no je definide sedi in " -"globalstorage che in displaymanager.conf." - -#: src/modules/displaymanager/main.py:989 -msgid "Display manager configuration was incomplete" -msgstr "La configurazion dal gjestôr dai visôrs no jere complete" - -#: src/modules/dracut/main.py:27 -msgid "Creating initramfs with dracut." -msgstr "Daûr a creâ initramfs cun dracut." - -#: src/modules/dracut/main.py:49 -msgid "Failed to run dracut on the target" -msgstr "No si è rivâts a eseguî dracut su la destinazion" - -#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50 -msgid "The exit code was {}" -msgstr "Il codiç di jessude al jere {}" - -#: src/modules/dummypython/main.py:35 -msgid "Dummy python job." -msgstr "Lavôr di python pustiç." - -#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 -#: src/modules/dummypython/main.py:94 -msgid "Dummy python step {}" -msgstr "Passaç di python pustiç {}" - -#: src/modules/fstab/main.py:29 -msgid "Writing fstab." -msgstr "Daûr a scrivi 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 "Erôr di configurazion" - -#: 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
{!s}
to use." -msgstr "No je stade definide nissune partizion di doprâ par
{!s}
." - -#: 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
{!s}
to use." -msgstr "" -"Nol è stât indicât nissun pont di montaç di doprâ par
{!s}
." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "" - #: src/modules/grubcfg/main.py:28 msgid "Configure GRUB." msgstr "Configure GRUB." -#: src/modules/hwclock/main.py:26 -msgid "Setting hardware clock." -msgstr "Daûr a configurâ l'orloi hardware." - -#: src/modules/initcpiocfg/main.py:28 -msgid "Configuring mkinitcpio." -msgstr "Daûr a configurâ di mkinitcpio." - -#: src/modules/initramfscfg/main.py:32 -msgid "Configuring initramfs." -msgstr "Daûr a configurâ initramfs." - -#: src/modules/localecfg/main.py:30 -msgid "Configuring locales." -msgstr "Daûr a configurâ la localizazion." - -#: src/modules/luksopenswaphookcfg/main.py:26 -msgid "Configuring encrypted swap." -msgstr "Daûr a configurâ la memorie di scambi (swap) cifrade." - -#: src/modules/mkinitfs/main.py:27 -msgid "Creating initramfs with mkinitfs." -msgstr "Daûr a creâ il initramfs cun mkinitfs." - -#: src/modules/mkinitfs/main.py:49 -msgid "Failed to run mkinitfs on the target" -msgstr "No si è rivâts a eseguî mkinitfs su la destinazion" - #: src/modules/mount/main.py:30 msgid "Mounting partitions." msgstr "Montaç des partizions." -#: src/modules/networkcfg/main.py:28 -msgid "Saving network configuration." -msgstr "Salvament de configurazion di rê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 "Erôr di configurazion" -#: src/modules/openrcdmcryptcfg/main.py:26 -msgid "Configuring OpenRC dmcrypt service." -msgstr "Daûr a configurâ il servizi dmcrypt di OpenRC." - -#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 -#: src/modules/packages/main.py:69 -msgid "Install packages." -msgstr "Instale pachets." - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "Elaborazion dai pachets (%(count)d / %(total)d)" - -#: src/modules/packages/main.py:62 -#, python-format -msgid "Installing one package." -msgid_plural "Installing %(num)d packages." -msgstr[0] "Daûr a instalâ un pachet." -msgstr[1] "Daûr a instalâ %(num)d pachets." - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "Daûr a gjavâ un pachet." -msgstr[1] "Daûr a gjavâ %(num)d pachets." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/plymouthcfg/main.py:27 -msgid "Configure Plymouth theme" -msgstr "Configure il teme di Plymouth" - -#: src/modules/rawfs/main.py:26 -msgid "Installing data." -msgstr "Daûr a instalâ i dâts." - -#: src/modules/services-openrc/main.py:29 -msgid "Configure OpenRC services" -msgstr "Configure i servizis OpenRC" - -#: src/modules/services-openrc/main.py:57 -msgid "Cannot add service {name!s} to run-level {level!s}." -msgstr "Impussibil zontâ il servizi {name!s} al run-level {level!s}." - -#: src/modules/services-openrc/main.py:59 -msgid "Cannot remove service {name!s} from run-level {level!s}." -msgstr "Impussibil gjavâ il servizi {name!s} dal run-level {level!s}." - -#: src/modules/services-openrc/main.py:61 -msgid "" -"Unknown service-action {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Azion dal servizi {arg!s} no cognossude pal servizi {name!s} " -"tal run-level {level!s}." - -#: src/modules/services-openrc/main.py:93 -#: src/modules/services-systemd/main.py:59 -msgid "Cannot modify service" -msgstr "Impussibil modificâ il servizi" - -#: src/modules/services-openrc/main.py:94 -msgid "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"La clamade rc-update {arg!s} in chroot e à tornât il codiç di " -"erôr {num!s}." - -#: src/modules/services-openrc/main.py:101 -msgid "Target runlevel does not exist" -msgstr "Il runlevel di destinazion nol esist" - -#: src/modules/services-openrc/main.py:102 -msgid "" -"The path for runlevel {level!s} is {path!s}, which does not " -"exist." -msgstr "" -"Il percors pal runlevel {level!s} al è {path!s}, che nol esist." - -#: src/modules/services-openrc/main.py:110 -msgid "Target service does not exist" -msgstr "Il servizi di destinazion nol esist" - -#: src/modules/services-openrc/main.py:111 -msgid "" -"The path for service {name!s} is {path!s}, which does not " -"exist." -msgstr "" -"Il percors pal servizi {name!s} al è {path!s}, che nol esist." +#: 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
{!s}
to use." +msgstr "No je stade definide nissune partizion di doprâ par
{!s}
." #: src/modules/services-systemd/main.py:26 msgid "Configure systemd services" msgstr "Configure i servizis di systemd" +#: src/modules/services-systemd/main.py:59 +#: src/modules/services-openrc/main.py:93 +msgid "Cannot modify service" +msgstr "Impussibil modificâ il servizi" + #: src/modules/services-systemd/main.py:60 msgid "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -401,3 +155,251 @@ msgstr "" #: src/modules/unpackfs/main.py:479 msgid "The destination \"{}\" in the target system is not a directory" msgstr "La destinazion \"{}\" tal sisteme che si va a creâ no je une cartele" + +#: src/modules/displaymanager/main.py:526 +msgid "Cannot write KDM configuration file" +msgstr "Impussibil scrivi il file di configurazion di KDM" + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "Il file di configurazion di KDM {!s} nol esist" + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "Impussibil scrivi il file di configurazion di LXDM" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "Il file di configurazion di LXDM {!s} nol esist" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "Impussibil scrivi il file di configurazion di LightDM" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "Il file di configurazion di LightDM {!s} nol esist" + +#: src/modules/displaymanager/main.py:747 +msgid "Cannot configure LightDM" +msgstr "Impussibil configurâ LightDM" + +#: src/modules/displaymanager/main.py:748 +msgid "No LightDM greeter installed." +msgstr "Nissun menù di benvignût par LightDM instalât." + +#: src/modules/displaymanager/main.py:779 +msgid "Cannot write SLIM configuration file" +msgstr "Impussibil scrivi il file di configurazion SLIM" + +#: src/modules/displaymanager/main.py:780 +msgid "SLIM config file {!s} does not exist" +msgstr "Il file di configurazion di SLIM {!s} nol esist" + +#: src/modules/displaymanager/main.py:906 +msgid "No display managers selected for the displaymanager module." +msgstr "Nissun gjestôr di visôrs selezionât pal modul displaymanager." + +#: src/modules/displaymanager/main.py:907 +msgid "" +"The displaymanagers list is empty or undefined in both globalstorage and " +"displaymanager.conf." +msgstr "" +"La liste dai gjestôrs di visôrs e je vueide o no je definide sedi in " +"globalstorage che in displaymanager.conf." + +#: src/modules/displaymanager/main.py:989 +msgid "Display manager configuration was incomplete" +msgstr "La configurazion dal gjestôr dai visôrs no jere complete" + +#: src/modules/initcpiocfg/main.py:28 +msgid "Configuring mkinitcpio." +msgstr "Daûr a configurâ di 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
{!s}
to use." +msgstr "" +"Nol è stât indicât nissun pont di montaç di doprâ par
{!s}
." + +#: src/modules/luksopenswaphookcfg/main.py:26 +msgid "Configuring encrypted swap." +msgstr "Daûr a configurâ la memorie di scambi (swap) cifrade." + +#: src/modules/rawfs/main.py:26 +msgid "Installing data." +msgstr "Daûr a instalâ i dâts." + +#: src/modules/services-openrc/main.py:29 +msgid "Configure OpenRC services" +msgstr "Configure i servizis OpenRC" + +#: src/modules/services-openrc/main.py:57 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "Impussibil zontâ il servizi {name!s} al run-level {level!s}." + +#: src/modules/services-openrc/main.py:59 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "Impussibil gjavâ il servizi {name!s} dal run-level {level!s}." + +#: src/modules/services-openrc/main.py:61 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Azion dal servizi {arg!s} no cognossude pal servizi {name!s} " +"tal run-level {level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"La clamade rc-update {arg!s} in chroot e à tornât il codiç di " +"erôr {num!s}." + +#: src/modules/services-openrc/main.py:101 +msgid "Target runlevel does not exist" +msgstr "Il runlevel di destinazion nol esist" + +#: src/modules/services-openrc/main.py:102 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"Il percors pal runlevel {level!s} al è {path!s}, che nol esist." + +#: src/modules/services-openrc/main.py:110 +msgid "Target service does not exist" +msgstr "Il servizi di destinazion nol esist" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"Il percors pal servizi {name!s} al è {path!s}, che nol esist." + +#: src/modules/plymouthcfg/main.py:27 +msgid "Configure Plymouth theme" +msgstr "Configure il teme di Plymouth" + +#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 +#: src/modules/packages/main.py:69 +msgid "Install packages." +msgstr "Instale pachets." + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "Elaborazion dai pachets (%(count)d / %(total)d)" + +#: src/modules/packages/main.py:62 +#, python-format +msgid "Installing one package." +msgid_plural "Installing %(num)d packages." +msgstr[0] "Daûr a instalâ un pachet." +msgstr[1] "Daûr a instalâ %(num)d pachets." + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "Daûr a gjavâ un pachet." +msgstr[1] "Daûr a gjavâ %(num)d pachets." + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/bootloader/main.py:43 +msgid "Install bootloader." +msgstr "Instale il 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 " +"
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "Daûr a configurâ l'orloi hardware." + +#: src/modules/mkinitfs/main.py:27 +msgid "Creating initramfs with mkinitfs." +msgstr "Daûr a creâ il initramfs cun mkinitfs." + +#: src/modules/mkinitfs/main.py:49 +msgid "Failed to run mkinitfs on the target" +msgstr "No si è rivâts a eseguî mkinitfs su la destinazion" + +#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50 +msgid "The exit code was {}" +msgstr "Il codiç di jessude al jere {}" + +#: src/modules/dracut/main.py:27 +msgid "Creating initramfs with dracut." +msgstr "Daûr a creâ initramfs cun dracut." + +#: src/modules/dracut/main.py:49 +msgid "Failed to run dracut on the target" +msgstr "No si è rivâts a eseguî dracut su la destinazion" + +#: src/modules/initramfscfg/main.py:32 +msgid "Configuring initramfs." +msgstr "Daûr a configurâ initramfs." + +#: src/modules/openrcdmcryptcfg/main.py:26 +msgid "Configuring OpenRC dmcrypt service." +msgstr "Daûr a configurâ il servizi dmcrypt di OpenRC." + +#: src/modules/fstab/main.py:29 +msgid "Writing fstab." +msgstr "Daûr a scrivi fstab." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
to use." +msgstr "" + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Lavôr di python pustiç." + +#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 +#: src/modules/dummypython/main.py:94 +msgid "Dummy python step {}" +msgstr "Passaç di python pustiç {}" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "Daûr a configurâ la localizazion." + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "Salvament de configurazion di rêt." diff --git a/lang/python/gl/LC_MESSAGES/python.po b/lang/python/gl/LC_MESSAGES/python.po index 2646ae598..653794610 100644 --- a/lang/python/gl/LC_MESSAGES/python.po +++ b/lang/python/gl/LC_MESSAGES/python.po @@ -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: Xosé, 2018\n" "Language-Team: Galician (https://www.transifex.com/calamares/teams/20061/gl/)\n" @@ -21,280 +21,42 @@ msgstr "" "Language: gl\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 " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "Non é posíbel escribir o ficheiro de configuración de KDM" - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "O ficheiro de configuración de KDM {!s} non existe" - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "Non é posíbel escribir o ficheiro de configuración de LXDM" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "O ficheiro de configuración de LXDM {!s} non existe" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "Non é posíbel escribir o ficheiro de configuración de LightDM" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "O ficheiro de configuración de LightDM {!s} non existe" - -#: src/modules/displaymanager/main.py:747 -msgid "Cannot configure LightDM" -msgstr "Non é posíbel configurar LightDM" - -#: src/modules/displaymanager/main.py:748 -msgid "No LightDM greeter installed." -msgstr "Non se instalou o saudador de LightDM." - -#: src/modules/displaymanager/main.py:779 -msgid "Cannot write SLIM configuration file" -msgstr "Non é posíbel escribir o ficheiro de configuración de SLIM" - -#: src/modules/displaymanager/main.py:780 -msgid "SLIM config file {!s} does not exist" -msgstr "O ficheiro de configuración de SLIM {!s} non existe" - -#: src/modules/displaymanager/main.py:906 -msgid "No display managers selected for the displaymanager module." -msgstr "" -"Non hai xestores de pantalla seleccionados para o módulo 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 "A configuración do xestor de pantalla foi incompleta" - -#: 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 "Tarefa parva de python." - -#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 -#: src/modules/dummypython/main.py:94 -msgid "Dummy python step {}" -msgstr "Paso parvo de 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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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 "Instalar paquetes." - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "A procesar 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] "A instalar un paquete." -msgstr[1] "A instalar %(num)d paquetes." - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "A retirar un paquete." -msgstr[1] "A retirar %(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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -385,3 +147,243 @@ 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 "Non é posíbel escribir o ficheiro de configuración de KDM" + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "O ficheiro de configuración de KDM {!s} non existe" + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "Non é posíbel escribir o ficheiro de configuración de LXDM" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "O ficheiro de configuración de LXDM {!s} non existe" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "Non é posíbel escribir o ficheiro de configuración de LightDM" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "O ficheiro de configuración de LightDM {!s} non existe" + +#: src/modules/displaymanager/main.py:747 +msgid "Cannot configure LightDM" +msgstr "Non é posíbel configurar LightDM" + +#: src/modules/displaymanager/main.py:748 +msgid "No LightDM greeter installed." +msgstr "Non se instalou o saudador de LightDM." + +#: src/modules/displaymanager/main.py:779 +msgid "Cannot write SLIM configuration file" +msgstr "Non é posíbel escribir o ficheiro de configuración de SLIM" + +#: src/modules/displaymanager/main.py:780 +msgid "SLIM config file {!s} does not exist" +msgstr "O ficheiro de configuración de SLIM {!s} non existe" + +#: src/modules/displaymanager/main.py:906 +msgid "No display managers selected for the displaymanager module." +msgstr "" +"Non hai xestores de pantalla seleccionados para o módulo 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 "A configuración do xestor de pantalla foi incompleta" + +#: 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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 "Instalar paquetes." + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "A procesar 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] "A instalar un paquete." +msgstr[1] "A instalar %(num)d paquetes." + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "A retirar un paquete." +msgstr[1] "A retirar %(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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
to use." +msgstr "" + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Tarefa parva de python." + +#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 +#: src/modules/dummypython/main.py:94 +msgid "Dummy python step {}" +msgstr "Paso parvo de python {}" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "" + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "" diff --git a/lang/python/gu/LC_MESSAGES/python.po b/lang/python/gu/LC_MESSAGES/python.po index 0bbae30e3..8a08b7bf6 100644 --- a/lang/python/gu/LC_MESSAGES/python.po +++ b/lang/python/gu/LC_MESSAGES/python.po @@ -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: 2017-08-09 10:34+0000\n" "Language-Team: Gujarati (https://www.transifex.com/calamares/teams/20061/gu/)\n" "MIME-Version: 1.0\n" @@ -17,279 +17,42 @@ msgstr "" "Language: gu\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -380,3 +143,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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/he/LC_MESSAGES/python.po b/lang/python/he/LC_MESSAGES/python.po index 28e0acf8e..e84547385 100644 --- a/lang/python/he/LC_MESSAGES/python.po +++ b/lang/python/he/LC_MESSAGES/python.po @@ -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: Yaron Shahrabani , 2021\n" "Language-Team: Hebrew (https://www.transifex.com/calamares/teams/20061/he/)\n" @@ -23,298 +23,42 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 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 " -"
{!s}
returned error code {!s}." -msgstr "" -"לא ניתן להתקין את מנהל האתחול. פקודת ההתקנה
{!s}
החזירה את קוד " -"השגיאה {!s}." - -#: 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 "קובץ התצורה {!s} של SLIM אינו קיים" - -#: 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 "" -"רשימת מנהלי התצוגה ריקה או שאינה מוגדרת גם באחסון הכללי (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 "משימת דמה של 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
{!s}
to use." -msgstr "לא הוגדרו מחיצות לשימוש של
{!s}
." - -#: 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
{!s}
to use." -msgstr "לא סופקה נקודת עגינת שורש לשימוש של
{!s}
." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "לא סופקה תצורת
{!s}
לשימוש
{!s}
." - #: 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 "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 "שירות dmcrypt ל־OpenRC מוגדר." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" -"מנהל החבילות לא הצליח להכין את העדכונים. הפקודה
{!s}
החזירה את " -"קוד השגיאה {!s}." - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" -"מנהל החבילות לא הצליח לעדכן את המערכת. הפקודה
{!s}
החזירה את קוד " -"השגיאה {!s}." - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "" -"מנהל החבילות לא הצליח לערוך שינויים במערכת המותקנת. הפקודה
{!s}
" -"החזירה את קוד השגיאה {!s}." - -#: 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 {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"service-action‏ (פעולת שירות) {arg!s} בלתי ידועה עבור השירות " -"{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 "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"הקריאה rc-update {arg!s} במצב 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 {path!s}, which does not " -"exist." -msgstr "" -"הנתיב לשכבת ההפעלה {level!s} הוא {path!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 {path!s}, which does not " -"exist." -msgstr "הנתיב לשירות {name!s} הוא {path!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
{!s}
to use." +msgstr "לא הוגדרו מחיצות לשימוש של
{!s}
." #: 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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -408,3 +152,261 @@ msgstr "איתור unsquashfs לא צלח, נא לוודא שהחבילה squash #: 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 "קובץ התצורה {!s} של SLIM אינו קיים" + +#: 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 "" +"רשימת מנהלי התצוגה ריקה או שאינה מוגדרת גם באחסון הכללי (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
{!s}
to use." +msgstr "לא סופקה נקודת עגינת שורש לשימוש של
{!s}
." + +#: 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 "לא ניתן להוסיף את השירות {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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"service-action‏ (פעולת שירות) {arg!s} בלתי ידועה עבור השירות " +"{name!s} בשכבת ההפעלה {level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"הקריאה rc-update {arg!s} במצב 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 {path!s}, which does not " +"exist." +msgstr "" +"הנתיב לשכבת ההפעלה {level!s} הוא {path!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 {path!s}, which does not " +"exist." +msgstr "הנתיב לשירות {name!s} הוא {path!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
{!s}
" +"returned error code {!s}." +msgstr "" +"מנהל החבילות לא הצליח להכין את העדכונים. הפקודה
{!s}
החזירה את " +"קוד השגיאה {!s}." + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" returned error code {!s}." +msgstr "" +"מנהל החבילות לא הצליח לעדכן את המערכת. הפקודה
{!s}
החזירה את קוד " +"השגיאה {!s}." + +#: src/modules/packages/main.py:629 +msgid "" +"The package manager could not make changes to the installed system. The " +"command
{!s}
returned error code {!s}." +msgstr "" +"מנהל החבילות לא הצליח לערוך שינויים במערכת המותקנת. הפקודה
{!s}
" +"החזירה את קוד השגיאה {!s}." + +#: 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 " +"
{!s}
returned error code {!s}." +msgstr "" +"לא ניתן להתקין את מנהל האתחול. פקודת ההתקנה
{!s}
החזירה את קוד " +"השגיאה {!s}." + +#: 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 "שירות dmcrypt ל־OpenRC מוגדר." + +#: src/modules/fstab/main.py:29 +msgid "Writing fstab." +msgstr "fstab נכתב." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
to use." +msgstr "לא סופקה תצורת
{!s}
לשימוש
{!s}
." + +#: 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 "הגדרות הרשת נשמרות." diff --git a/lang/python/hi/LC_MESSAGES/python.po b/lang/python/hi/LC_MESSAGES/python.po index 470500c5f..fc9607a8b 100644 --- a/lang/python/hi/LC_MESSAGES/python.po +++ b/lang/python/hi/LC_MESSAGES/python.po @@ -4,16 +4,16 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Panwar108 , 2020 +# Panwar108 , 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: Panwar108 , 2020\n" +"Last-Translator: Panwar108 , 2021\n" "Language-Team: Hindi (https://www.transifex.com/calamares/teams/20061/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,285 +21,42 @@ msgstr "" "Language: hi\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 " -"
{!s}
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 "" -"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 "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 "डमी पाइथन प्रक्रिया ।" - -#: 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 "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
{!s}
to use." -msgstr "
{!s}
के उपयोग हेतु कोई विभाजन परिभाषित नहीं हैं।" - -#: 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
{!s}
to use." -msgstr "" -"
{!s}
के उपयोग हेतु कोई रुट माउंट पॉइंट प्रदान नहीं किया गया।" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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 "mkinitfs के साथ initramfs बनाना।" - -#: 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 पैकेज इंस्टॉल किए जा रहे हैं।" - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 "रन-लेवल {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 {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"रन-लेवल {level!s} में सेवा {name!s} हेतु अज्ञात सेवा-कार्य " -"{arg!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 "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "chroot में rc-update {arg!s} कॉल त्रुटि कोड {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 {path!s}, which does not " -"exist." -msgstr "" -"रनलेवल {level!s} हेतु पथ {path!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 {path!s}, which does not " -"exist." -msgstr "सेवा {name!s} हेतु पथ {path!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
{!s}
to use." +msgstr "
{!s}
के उपयोग हेतु कोई विभाजन परिभाषित नहीं हैं।" #: 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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -393,3 +150,258 @@ 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 "" +"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
{!s}
to use." +msgstr "" +"
{!s}
के उपयोग हेतु कोई रुट माउंट पॉइंट प्रदान नहीं किया गया।" + +#: 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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"रन-लेवल {level!s} में सेवा {name!s} हेतु अज्ञात सेवा-कार्य " +"{arg!s}।" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "chroot में rc-update {arg!s} कॉल त्रुटि कोड {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 {path!s}, which does not " +"exist." +msgstr "" +"रनलेवल {level!s} हेतु पथ {path!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 {path!s}, which does not " +"exist." +msgstr "सेवा {name!s} हेतु पथ {path!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 पैकेज इंस्टॉल किए जा रहे हैं।" + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" +"पैकेज प्रबंधक द्वारा अपडेट तैयार करना विफल। कमांड
{!s}
हेतु " +"त्रुटि कोड {!s} प्राप्त।" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" returned error code {!s}." +msgstr "" +"पैकेज प्रबंधक द्वारा सिस्टम अपडेट करना विफल। कमांड
{!s}
हेतु " +"त्रुटि कोड {!s} प्राप्त।" + +#: src/modules/packages/main.py:629 +msgid "" +"The package manager could not make changes to the installed system. The " +"command
{!s}
returned error code {!s}." +msgstr "" +"पैकेज प्रबंधक द्वारा इंस्टॉल हो रखें सिस्टम पर परिवर्तन करना विफल। कमांड " +"
{!s}
हेतु त्रुटि कोड {!s} प्राप्त।" + +#: 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 " +"
{!s}
returned error code {!s}." +msgstr "" +"बूट लोडर इंस्टॉल करना विफल। इंस्टॉल कमांड
{!s}
हेतु त्रुटि कोड " +"{!s} प्राप्त।" + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "हार्डवेयर घड़ी सेट करना।" + +#: src/modules/mkinitfs/main.py:27 +msgid "Creating initramfs with mkinitfs." +msgstr "mkinitfs के साथ initramfs बनाना।" + +#: 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 "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
{!s}
configuration is given for
{!s}
to use." +msgstr "" +"कोई
{!s}
विन्यास प्रदान नहीं किया गया
{!s}
के उपयोग " +"हेतु।" + +#: 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 "नेटवर्क विन्यास सेटिंग्स संचित करना।" diff --git a/lang/python/hr/LC_MESSAGES/python.po b/lang/python/hr/LC_MESSAGES/python.po index 70fe6b047..0bfbe0ee2 100644 --- a/lang/python/hr/LC_MESSAGES/python.po +++ b/lang/python/hr/LC_MESSAGES/python.po @@ -4,16 +4,16 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Lovro Kudelić , 2020 +# Lovro Kudelić , 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: Lovro Kudelić , 2020\n" +"Last-Translator: Lovro Kudelić , 2021\n" "Language-Team: Croatian (https://www.transifex.com/calamares/teams/20061/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,291 +21,42 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: src/modules/bootloader/main.py:43 -msgid "Install bootloader." -msgstr "Instaliram 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 " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "Ne mogu zapisati KDM konfiguracijsku datoteku" - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "KDM konfiguracijska datoteka {!s} ne postoji" - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "Ne mogu zapisati LXDM konfiguracijsku datoteku" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "LXDM konfiguracijska datoteka {!s} ne postoji" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "Ne moku zapisati LightDM konfiguracijsku datoteku" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "LightDM konfiguracijska datoteka {!s} ne postoji" - -#: src/modules/displaymanager/main.py:747 -msgid "Cannot configure LightDM" -msgstr "Ne mogu konfigurirati LightDM" - -#: src/modules/displaymanager/main.py:748 -msgid "No LightDM greeter installed." -msgstr "Nije instaliran LightDM pozdravnik." - -#: src/modules/displaymanager/main.py:779 -msgid "Cannot write SLIM configuration file" -msgstr "Ne mogu zapisati SLIM konfiguracijsku datoteku" - -#: src/modules/displaymanager/main.py:780 -msgid "SLIM config file {!s} does not exist" -msgstr "SLIM konfiguracijska datoteka {!s} ne postoji" - -#: src/modules/displaymanager/main.py:906 -msgid "No display managers selected for the displaymanager module." -msgstr "Nisu odabrani upravitelji zaslona za modul displaymanager." - -#: src/modules/displaymanager/main.py:907 -msgid "" -"The displaymanagers list is empty or undefined in both globalstorage and " -"displaymanager.conf." -msgstr "" -"Popis upravitelja zaslona je prazan ili nedefiniran u oba globalstorage i " -"displaymanager.conf." - -#: src/modules/displaymanager/main.py:989 -msgid "Display manager configuration was incomplete" -msgstr "Konfiguracija upravitelja zaslona nije bila potpuna" - -#: src/modules/dracut/main.py:27 -msgid "Creating initramfs with dracut." -msgstr "Stvaranje initramfs s dracut." - -#: src/modules/dracut/main.py:49 -msgid "Failed to run dracut on the target" -msgstr "Nije uspjelo pokretanje dracuta na ciljanom sustavu" - -#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50 -msgid "The exit code was {}" -msgstr "Izlazni kod bio je {}" - -#: src/modules/dummypython/main.py:35 -msgid "Dummy python job." -msgstr "Testni python posao." - -#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 -#: src/modules/dummypython/main.py:94 -msgid "Dummy python step {}" -msgstr "Testni python korak {}" - -#: src/modules/fstab/main.py:29 -msgid "Writing fstab." -msgstr "Zapisujem 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 "Greška konfiguracije" - -#: 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
{!s}
to use." -msgstr "Nema definiranih particija za
{!s}
korištenje." - -#: 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
{!s}
to use." -msgstr "" -"Nijedna root točka montiranja nije definirana za
{!s}
korištenje." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "" - #: src/modules/grubcfg/main.py:28 msgid "Configure GRUB." msgstr "Konfigurirajte GRUB." -#: src/modules/hwclock/main.py:26 -msgid "Setting hardware clock." -msgstr "Postavljanje hardverskog sata." - -#: src/modules/initcpiocfg/main.py:28 -msgid "Configuring mkinitcpio." -msgstr "Konfiguriranje mkinitcpio." - -#: src/modules/initramfscfg/main.py:32 -msgid "Configuring initramfs." -msgstr "Konfiguriranje initramfs." - -#: src/modules/localecfg/main.py:30 -msgid "Configuring locales." -msgstr "Konfiguriranje lokalizacije." - -#: src/modules/luksopenswaphookcfg/main.py:26 -msgid "Configuring encrypted swap." -msgstr "Konfiguriranje šifriranog swapa." - -#: src/modules/mkinitfs/main.py:27 -msgid "Creating initramfs with mkinitfs." -msgstr "Stvaranje initramfs s mkinitfs." - -#: src/modules/mkinitfs/main.py:49 -msgid "Failed to run mkinitfs on the target" -msgstr "Pokretanje mkinitfs na ciljanom sustavu nije uspjelo" - #: src/modules/mount/main.py:30 msgid "Mounting partitions." msgstr "Montiranje particija." -#: src/modules/networkcfg/main.py:28 -msgid "Saving network configuration." -msgstr "Spremanje mrežne konfiguracije." +#: 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 "Greška konfiguracije" -#: src/modules/openrcdmcryptcfg/main.py:26 -msgid "Configuring OpenRC dmcrypt service." -msgstr "Konfiguriranje servisa OpenRC dmcrypt." - -#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 -#: src/modules/packages/main.py:69 -msgid "Install packages." -msgstr "Instaliraj pakete." - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "Obrađujem 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] "Instaliram paket." -msgstr[1] "Instaliram %(num)d pakete." -msgstr[2] "Instaliram %(num)d pakete." - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "Uklanjam paket." -msgstr[1] "Uklanjam %(num)d pakete." -msgstr[2] "Uklanjam %(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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/plymouthcfg/main.py:27 -msgid "Configure Plymouth theme" -msgstr "Konfigurirajte Plymouth temu" - -#: src/modules/rawfs/main.py:26 -msgid "Installing data." -msgstr "Instaliranje podataka." - -#: src/modules/services-openrc/main.py:29 -msgid "Configure OpenRC services" -msgstr "Konfigurirajte OpneRC servise" - -#: src/modules/services-openrc/main.py:57 -msgid "Cannot add service {name!s} to run-level {level!s}." -msgstr "Ne mogu dodati servis {name!s} u run-level {level!s}." - -#: src/modules/services-openrc/main.py:59 -msgid "Cannot remove service {name!s} from run-level {level!s}." -msgstr "Ne mogu ukloniti servis {name!s} iz run-level-a {level!s}." - -#: src/modules/services-openrc/main.py:61 -msgid "" -"Unknown service-action {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Nepoznat service-action {arg!s} za servis {name!s} u run-level " -"{level!s}." - -#: src/modules/services-openrc/main.py:93 -#: src/modules/services-systemd/main.py:59 -msgid "Cannot modify service" -msgstr "Ne mogu modificirati servis" - -#: src/modules/services-openrc/main.py:94 -msgid "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"rc-update {arg!s} poziv u chroot-u vratio je kod pogreške " -"{num!s}." - -#: src/modules/services-openrc/main.py:101 -msgid "Target runlevel does not exist" -msgstr "Ciljni runlevel ne postoji" - -#: src/modules/services-openrc/main.py:102 -msgid "" -"The path for runlevel {level!s} is {path!s}, which does not " -"exist." -msgstr "" -"Putanja za runlevel {level!s} je {path!s}, međutim ona ne " -"postoji." - -#: src/modules/services-openrc/main.py:110 -msgid "Target service does not exist" -msgstr "Ciljni servis ne postoji" - -#: src/modules/services-openrc/main.py:111 -msgid "" -"The path for service {name!s} is {path!s}, which does not " -"exist." -msgstr "" -"Putanja servisa {name!s} je {path!s}, međutim ona ne postoji." +#: 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
{!s}
to use." +msgstr "Nema definiranih particija za
{!s}
korištenje." #: src/modules/services-systemd/main.py:26 msgid "Configure systemd services" msgstr "Konfiguriraj systemd servise" +#: src/modules/services-systemd/main.py:59 +#: src/modules/services-openrc/main.py:93 +msgid "Cannot modify service" +msgstr "Ne mogu modificirati servis" + #: src/modules/services-systemd/main.py:60 msgid "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -402,3 +153,262 @@ msgstr "" #: src/modules/unpackfs/main.py:479 msgid "The destination \"{}\" in the target system is not a directory" msgstr "Odredište \"{}\" u ciljnom sustavu nije direktorij" + +#: src/modules/displaymanager/main.py:526 +msgid "Cannot write KDM configuration file" +msgstr "Ne mogu zapisati KDM konfiguracijsku datoteku" + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "KDM konfiguracijska datoteka {!s} ne postoji" + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "Ne mogu zapisati LXDM konfiguracijsku datoteku" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "LXDM konfiguracijska datoteka {!s} ne postoji" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "Ne moku zapisati LightDM konfiguracijsku datoteku" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "LightDM konfiguracijska datoteka {!s} ne postoji" + +#: src/modules/displaymanager/main.py:747 +msgid "Cannot configure LightDM" +msgstr "Ne mogu konfigurirati LightDM" + +#: src/modules/displaymanager/main.py:748 +msgid "No LightDM greeter installed." +msgstr "Nije instaliran LightDM pozdravnik." + +#: src/modules/displaymanager/main.py:779 +msgid "Cannot write SLIM configuration file" +msgstr "Ne mogu zapisati SLIM konfiguracijsku datoteku" + +#: src/modules/displaymanager/main.py:780 +msgid "SLIM config file {!s} does not exist" +msgstr "SLIM konfiguracijska datoteka {!s} ne postoji" + +#: src/modules/displaymanager/main.py:906 +msgid "No display managers selected for the displaymanager module." +msgstr "Nisu odabrani upravitelji zaslona za modul displaymanager." + +#: src/modules/displaymanager/main.py:907 +msgid "" +"The displaymanagers list is empty or undefined in both globalstorage and " +"displaymanager.conf." +msgstr "" +"Popis upravitelja zaslona je prazan ili nedefiniran u oba globalstorage i " +"displaymanager.conf." + +#: src/modules/displaymanager/main.py:989 +msgid "Display manager configuration was incomplete" +msgstr "Konfiguracija upravitelja zaslona nije bila potpuna" + +#: src/modules/initcpiocfg/main.py:28 +msgid "Configuring mkinitcpio." +msgstr "Konfiguriranje 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
{!s}
to use." +msgstr "" +"Nijedna root točka montiranja nije definirana za
{!s}
korištenje." + +#: src/modules/luksopenswaphookcfg/main.py:26 +msgid "Configuring encrypted swap." +msgstr "Konfiguriranje šifriranog swapa." + +#: src/modules/rawfs/main.py:26 +msgid "Installing data." +msgstr "Instaliranje podataka." + +#: src/modules/services-openrc/main.py:29 +msgid "Configure OpenRC services" +msgstr "Konfigurirajte OpneRC servise" + +#: src/modules/services-openrc/main.py:57 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "Ne mogu dodati servis {name!s} u run-level {level!s}." + +#: src/modules/services-openrc/main.py:59 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "Ne mogu ukloniti servis {name!s} iz run-level-a {level!s}." + +#: src/modules/services-openrc/main.py:61 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Nepoznat service-action {arg!s} za servis {name!s} u run-level " +"{level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"rc-update {arg!s} poziv u chroot-u vratio je kod pogreške " +"{num!s}." + +#: src/modules/services-openrc/main.py:101 +msgid "Target runlevel does not exist" +msgstr "Ciljni runlevel ne postoji" + +#: src/modules/services-openrc/main.py:102 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"Putanja za runlevel {level!s} je {path!s}, međutim ona ne " +"postoji." + +#: src/modules/services-openrc/main.py:110 +msgid "Target service does not exist" +msgstr "Ciljni servis ne postoji" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"Putanja servisa {name!s} je {path!s}, međutim ona ne postoji." + +#: src/modules/plymouthcfg/main.py:27 +msgid "Configure Plymouth theme" +msgstr "Konfigurirajte Plymouth temu" + +#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 +#: src/modules/packages/main.py:69 +msgid "Install packages." +msgstr "Instaliraj pakete." + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "Obrađujem 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] "Instaliram paket." +msgstr[1] "Instaliram %(num)d pakete." +msgstr[2] "Instaliram %(num)d pakete." + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "Uklanjam paket." +msgstr[1] "Uklanjam %(num)d pakete." +msgstr[2] "Uklanjam %(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 "Pogreška upravitelja paketa" + +#: src/modules/packages/main.py:589 +msgid "" +"The package manager could not prepare updates. The command
{!s}
" +"returned error code {!s}." +msgstr "" +"Upravitelj paketa nije mogao pripremiti ažuriranja. Naredba
{!s}
" +"je vratila kôd pogreške {!s}." + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" returned error code {!s}." +msgstr "" +"Upravitelj paketa nije mogao ažurirati sustav. Naredba
{!s}
je " +"vratila kod pogreške {!s}." + +#: src/modules/packages/main.py:629 +msgid "" +"The package manager could not make changes to the installed system. The " +"command
{!s}
returned error code {!s}." +msgstr "" +"Upravitelj paketa nije mogao izvršiti promjene na instaliranom sustavu. " +"Naredba
{!s}
je vratila kôd pogreške {!s}." + +#: src/modules/bootloader/main.py:43 +msgid "Install bootloader." +msgstr "Instaliram bootloader." + +#: src/modules/bootloader/main.py:502 +msgid "Bootloader installation error" +msgstr "Greška prilikom instalacije bootloadera" + +#: src/modules/bootloader/main.py:503 +msgid "" +"The bootloader could not be installed. The installation command " +"
{!s}
returned error code {!s}." +msgstr "" +"Bootloader nije mogao biti instaliran. Instalacijska naredba
{!s}
" +" je vratila kod pogreške {!s}." + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "Postavljanje hardverskog sata." + +#: src/modules/mkinitfs/main.py:27 +msgid "Creating initramfs with mkinitfs." +msgstr "Stvaranje initramfs s mkinitfs." + +#: src/modules/mkinitfs/main.py:49 +msgid "Failed to run mkinitfs on the target" +msgstr "Pokretanje mkinitfs na ciljanom sustavu nije uspjelo" + +#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50 +msgid "The exit code was {}" +msgstr "Izlazni kod bio je {}" + +#: src/modules/dracut/main.py:27 +msgid "Creating initramfs with dracut." +msgstr "Stvaranje initramfs s dracut." + +#: src/modules/dracut/main.py:49 +msgid "Failed to run dracut on the target" +msgstr "Nije uspjelo pokretanje dracuta na ciljanom sustavu" + +#: src/modules/initramfscfg/main.py:32 +msgid "Configuring initramfs." +msgstr "Konfiguriranje initramfs." + +#: src/modules/openrcdmcryptcfg/main.py:26 +msgid "Configuring OpenRC dmcrypt service." +msgstr "Konfiguriranje servisa OpenRC dmcrypt." + +#: src/modules/fstab/main.py:29 +msgid "Writing fstab." +msgstr "Zapisujem fstab." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
to use." +msgstr "Nije dana konfiguracija
{!s}
za
{!s}
upotrebu." + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Testni python posao." + +#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 +#: src/modules/dummypython/main.py:94 +msgid "Dummy python step {}" +msgstr "Testni python korak {}" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "Konfiguriranje lokalizacije." + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "Spremanje mrežne konfiguracije." diff --git a/lang/python/hu/LC_MESSAGES/python.po b/lang/python/hu/LC_MESSAGES/python.po index d6d519bb5..70b3ec2f7 100644 --- a/lang/python/hu/LC_MESSAGES/python.po +++ b/lang/python/hu/LC_MESSAGES/python.po @@ -14,7 +14,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: Lajos Pasztor , 2019\n" "Language-Team: Hungarian (https://www.transifex.com/calamares/teams/20061/hu/)\n" @@ -24,285 +24,42 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/bootloader/main.py:43 -msgid "Install bootloader." -msgstr "Rendszerbetöltő telepítése." - -#: 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 " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "A KDM konfigurációs fájl nem írható" - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "A(z) {!s} KDM konfigurációs fájl nem létezik" - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "Az LXDM konfigurációs fájl nem írható" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "A(z) {!s} LXDM konfigurációs fájl nem létezik" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "A LightDM konfigurációs fájl nem írható" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "A(z) {!s} LightDM konfigurációs fájl nem létezik" - -#: src/modules/displaymanager/main.py:747 -msgid "Cannot configure LightDM" -msgstr "A LightDM nem állítható be" - -#: src/modules/displaymanager/main.py:748 -msgid "No LightDM greeter installed." -msgstr "Nincs LightDM üdvözlő telepítve." - -#: src/modules/displaymanager/main.py:779 -msgid "Cannot write SLIM configuration file" -msgstr "A SLIM konfigurációs fájl nem írható" - -#: src/modules/displaymanager/main.py:780 -msgid "SLIM config file {!s} does not exist" -msgstr "A(z) {!s} SLIM konfigurációs fájl nem létezik" - -#: src/modules/displaymanager/main.py:906 -msgid "No display managers selected for the displaymanager module." -msgstr "Nincs kijelzőkezelő kiválasztva a kijelzőkezelő modulhoz." - -#: 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 "A kijelzőkezelő konfigurációja hiányos volt" - -#: src/modules/dracut/main.py:27 -msgid "Creating initramfs with dracut." -msgstr "initramfs létrehozása ezzel: dracut." - -#: src/modules/dracut/main.py:49 -msgid "Failed to run dracut on the target" -msgstr "dracut futtatása nem sikerült a célon." - -#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50 -msgid "The exit code was {}" -msgstr "A kilépési kód {} volt." - -#: src/modules/dummypython/main.py:35 -msgid "Dummy python job." -msgstr "Hamis Python feladat." - -#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 -#: src/modules/dummypython/main.py:94 -msgid "Dummy python step {}" -msgstr "Hamis {}. Python lépés" - -#: src/modules/fstab/main.py:29 -msgid "Writing fstab." -msgstr "fstab írása." - -#: 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 "Konfigurációs hiba" - -#: 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
{!s}
to use." -msgstr "Nincsenek partíciók meghatározva a
{!s}
használatához." - -#: 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
{!s}
to use." -msgstr "Nincs root csatolási pont megadva a
{!s}
használatához." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "" - #: src/modules/grubcfg/main.py:28 msgid "Configure GRUB." msgstr "GRUB konfigurálása." -#: src/modules/hwclock/main.py:26 -msgid "Setting hardware clock." -msgstr "Rendszeridő beállítása." - -#: src/modules/initcpiocfg/main.py:28 -msgid "Configuring mkinitcpio." -msgstr "mkinitcpio konfigurálása." - -#: src/modules/initramfscfg/main.py:32 -msgid "Configuring initramfs." -msgstr "initramfs konfigurálása." - -#: src/modules/localecfg/main.py:30 -msgid "Configuring locales." -msgstr "nyelvi értékek konfigurálása." - -#: src/modules/luksopenswaphookcfg/main.py:26 -msgid "Configuring encrypted swap." -msgstr "Titkosított swap konfigurálása." - -#: 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 "Partíciók csatolása." -#: src/modules/networkcfg/main.py:28 -msgid "Saving network configuration." -msgstr "Hálózati konfiguráció mentése." +#: 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 "Konfigurációs hiba" -#: src/modules/openrcdmcryptcfg/main.py:26 -msgid "Configuring OpenRC dmcrypt service." -msgstr "OpenRC dmcrypt szolgáltatás konfigurálása." - -#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 -#: src/modules/packages/main.py:69 -msgid "Install packages." -msgstr "Csomagok telepítése." - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "Csomagok feldolgozása (%(count)d / %(total)d)" - -#: src/modules/packages/main.py:62 -#, python-format -msgid "Installing one package." -msgid_plural "Installing %(num)d packages." -msgstr[0] "Egy csomag telepítése." -msgstr[1] "%(num)d csomag telepítése." - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "Egy csomag eltávolítása." -msgstr[1] "%(num)d csomag eltávolítása." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/plymouthcfg/main.py:27 -msgid "Configure Plymouth theme" -msgstr "Plymouth téma beállítása" - -#: src/modules/rawfs/main.py:26 -msgid "Installing data." -msgstr "Adatok telepítése." - -#: src/modules/services-openrc/main.py:29 -msgid "Configure OpenRC services" -msgstr "OpenRC szolgáltatások beállítása" - -#: src/modules/services-openrc/main.py:57 -msgid "Cannot add service {name!s} to run-level {level!s}." -msgstr "Nem lehet {name!s} szolgáltatást hozzáadni a run-level {level!s}." - -#: src/modules/services-openrc/main.py:59 -msgid "Cannot remove service {name!s} from run-level {level!s}." -msgstr "Nem lehet törölni a {name!s} szolgáltatást a {level!s} futás-szintből" - -#: src/modules/services-openrc/main.py:61 -msgid "" -"Unknown service-action {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Ismeretlen service-action {arg!s} a szolgáltatáshoz {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 "a szolgáltatást nem lehet módosítani" - -#: src/modules/services-openrc/main.py:94 -msgid "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"rc-update {arg!s} hívás a chroot-ban hibakódot adott: {num!s}." - -#: src/modules/services-openrc/main.py:101 -msgid "Target runlevel does not exist" -msgstr "A cél futási szint nem létezik" - -#: src/modules/services-openrc/main.py:102 -msgid "" -"The path for runlevel {level!s} is {path!s}, which does not " -"exist." -msgstr "" -"A futási-szint elérési útja {level!s} ami {path!s}, nem " -"létezik." - -#: src/modules/services-openrc/main.py:110 -msgid "Target service does not exist" -msgstr "A cél szolgáltatás nem létezik" - -#: src/modules/services-openrc/main.py:111 -msgid "" -"The path for service {name!s} is {path!s}, which does not " -"exist." -msgstr "" -"A szolgáltatás {name!s} elérési útja {path!s}, nem létezik." +#: 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
{!s}
to use." +msgstr "Nincsenek partíciók meghatározva a
{!s}
használatához." #: src/modules/services-systemd/main.py:26 msgid "Configure systemd services" msgstr "systemd szolgáltatások beállítása" +#: src/modules/services-systemd/main.py:59 +#: src/modules/services-openrc/main.py:93 +msgid "Cannot modify service" +msgstr "a szolgáltatást nem lehet módosítani" + #: src/modules/services-systemd/main.py:60 msgid "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -400,3 +157,248 @@ msgstr "" #: src/modules/unpackfs/main.py:479 msgid "The destination \"{}\" in the target system is not a directory" msgstr "Az elérés \"{}\" nem létező könyvtár a cél rendszerben" + +#: src/modules/displaymanager/main.py:526 +msgid "Cannot write KDM configuration file" +msgstr "A KDM konfigurációs fájl nem írható" + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "A(z) {!s} KDM konfigurációs fájl nem létezik" + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "Az LXDM konfigurációs fájl nem írható" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "A(z) {!s} LXDM konfigurációs fájl nem létezik" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "A LightDM konfigurációs fájl nem írható" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "A(z) {!s} LightDM konfigurációs fájl nem létezik" + +#: src/modules/displaymanager/main.py:747 +msgid "Cannot configure LightDM" +msgstr "A LightDM nem állítható be" + +#: src/modules/displaymanager/main.py:748 +msgid "No LightDM greeter installed." +msgstr "Nincs LightDM üdvözlő telepítve." + +#: src/modules/displaymanager/main.py:779 +msgid "Cannot write SLIM configuration file" +msgstr "A SLIM konfigurációs fájl nem írható" + +#: src/modules/displaymanager/main.py:780 +msgid "SLIM config file {!s} does not exist" +msgstr "A(z) {!s} SLIM konfigurációs fájl nem létezik" + +#: src/modules/displaymanager/main.py:906 +msgid "No display managers selected for the displaymanager module." +msgstr "Nincs kijelzőkezelő kiválasztva a kijelzőkezelő modulhoz." + +#: 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 "A kijelzőkezelő konfigurációja hiányos volt" + +#: src/modules/initcpiocfg/main.py:28 +msgid "Configuring mkinitcpio." +msgstr "mkinitcpio konfigurálása." + +#: 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
{!s}
to use." +msgstr "Nincs root csatolási pont megadva a
{!s}
használatához." + +#: src/modules/luksopenswaphookcfg/main.py:26 +msgid "Configuring encrypted swap." +msgstr "Titkosított swap konfigurálása." + +#: src/modules/rawfs/main.py:26 +msgid "Installing data." +msgstr "Adatok telepítése." + +#: src/modules/services-openrc/main.py:29 +msgid "Configure OpenRC services" +msgstr "OpenRC szolgáltatások beállítása" + +#: src/modules/services-openrc/main.py:57 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "Nem lehet {name!s} szolgáltatást hozzáadni a run-level {level!s}." + +#: src/modules/services-openrc/main.py:59 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "Nem lehet törölni a {name!s} szolgáltatást a {level!s} futás-szintből" + +#: src/modules/services-openrc/main.py:61 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Ismeretlen service-action {arg!s} a szolgáltatáshoz {name!s} in" +" run-level {level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"rc-update {arg!s} hívás a chroot-ban hibakódot adott: {num!s}." + +#: src/modules/services-openrc/main.py:101 +msgid "Target runlevel does not exist" +msgstr "A cél futási szint nem létezik" + +#: src/modules/services-openrc/main.py:102 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"A futási-szint elérési útja {level!s} ami {path!s}, nem " +"létezik." + +#: src/modules/services-openrc/main.py:110 +msgid "Target service does not exist" +msgstr "A cél szolgáltatás nem létezik" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"A szolgáltatás {name!s} elérési útja {path!s}, nem létezik." + +#: src/modules/plymouthcfg/main.py:27 +msgid "Configure Plymouth theme" +msgstr "Plymouth téma beállítása" + +#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 +#: src/modules/packages/main.py:69 +msgid "Install packages." +msgstr "Csomagok telepítése." + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "Csomagok feldolgozása (%(count)d / %(total)d)" + +#: src/modules/packages/main.py:62 +#, python-format +msgid "Installing one package." +msgid_plural "Installing %(num)d packages." +msgstr[0] "Egy csomag telepítése." +msgstr[1] "%(num)d csomag telepítése." + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "Egy csomag eltávolítása." +msgstr[1] "%(num)d csomag eltávolítása." + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/bootloader/main.py:43 +msgid "Install bootloader." +msgstr "Rendszerbetöltő telepítése." + +#: 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 " +"
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "Rendszeridő beállítása." + +#: 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 "A kilépési kód {} volt." + +#: src/modules/dracut/main.py:27 +msgid "Creating initramfs with dracut." +msgstr "initramfs létrehozása ezzel: dracut." + +#: src/modules/dracut/main.py:49 +msgid "Failed to run dracut on the target" +msgstr "dracut futtatása nem sikerült a célon." + +#: src/modules/initramfscfg/main.py:32 +msgid "Configuring initramfs." +msgstr "initramfs konfigurálása." + +#: src/modules/openrcdmcryptcfg/main.py:26 +msgid "Configuring OpenRC dmcrypt service." +msgstr "OpenRC dmcrypt szolgáltatás konfigurálása." + +#: src/modules/fstab/main.py:29 +msgid "Writing fstab." +msgstr "fstab írása." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
to use." +msgstr "" + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Hamis Python feladat." + +#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 +#: src/modules/dummypython/main.py:94 +msgid "Dummy python step {}" +msgstr "Hamis {}. Python lépés" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "nyelvi értékek konfigurálása." + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "Hálózati konfiguráció mentése." diff --git a/lang/python/id/LC_MESSAGES/python.po b/lang/python/id/LC_MESSAGES/python.po index 2501a445a..8496ab104 100644 --- a/lang/python/id/LC_MESSAGES/python.po +++ b/lang/python/id/LC_MESSAGES/python.po @@ -14,7 +14,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: Drajat Hasan , 2021\n" "Language-Team: Indonesian (https://www.transifex.com/calamares/teams/20061/id/)\n" @@ -24,277 +24,42 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\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 " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "Gak bisa menulis file konfigurasi KDM" - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "File {!s} config KDM belum ada" - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "Gak bisa menulis file konfigurasi LXDM" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "File {!s} config LXDM enggak ada" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "Gak bisa menulis file konfigurasi LightDM" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "File {!s} config LightDM belum ada" - -#: src/modules/displaymanager/main.py:747 -msgid "Cannot configure LightDM" -msgstr "Gak bisa mengkonfigurasi LightDM" - -#: src/modules/displaymanager/main.py:748 -msgid "No LightDM greeter installed." -msgstr "Tiada LightDM greeter yang terinstal." - -#: src/modules/displaymanager/main.py:779 -msgid "Cannot write SLIM configuration file" -msgstr "Gak bisa menulis file konfigurasi SLIM" - -#: src/modules/displaymanager/main.py:780 -msgid "SLIM config file {!s} does not exist" -msgstr "File {!s} config SLIM belum ada" - -#: src/modules/displaymanager/main.py:906 -msgid "No display managers selected for the displaymanager module." -msgstr "Tiada display manager yang dipilih untuk modul 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 "Konfigurasi display manager belum rampung" - -#: 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 "Tugas dumi python." - -#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 -#: src/modules/dummypython/main.py:94 -msgid "Dummy python step {}" -msgstr "Langkah {} dumi 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 "Kesalahan Konfigurasi" - -#: 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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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 "Kesalahan Konfigurasi" -#: 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 "Instal paket-paket." - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "Paket pemrosesan (%(count)d/%(total)d)" - -#: src/modules/packages/main.py:62 -#, python-format -msgid "Installing one package." -msgid_plural "Installing %(num)d packages." -msgstr[0] "Menginstal paket %(num)d" - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "mencopot %(num)d paket" - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -385,3 +150,240 @@ 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 "Gak bisa menulis file konfigurasi KDM" + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "File {!s} config KDM belum ada" + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "Gak bisa menulis file konfigurasi LXDM" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "File {!s} config LXDM enggak ada" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "Gak bisa menulis file konfigurasi LightDM" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "File {!s} config LightDM belum ada" + +#: src/modules/displaymanager/main.py:747 +msgid "Cannot configure LightDM" +msgstr "Gak bisa mengkonfigurasi LightDM" + +#: src/modules/displaymanager/main.py:748 +msgid "No LightDM greeter installed." +msgstr "Tiada LightDM greeter yang terinstal." + +#: src/modules/displaymanager/main.py:779 +msgid "Cannot write SLIM configuration file" +msgstr "Gak bisa menulis file konfigurasi SLIM" + +#: src/modules/displaymanager/main.py:780 +msgid "SLIM config file {!s} does not exist" +msgstr "File {!s} config SLIM belum ada" + +#: src/modules/displaymanager/main.py:906 +msgid "No display managers selected for the displaymanager module." +msgstr "Tiada display manager yang dipilih untuk modul 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 "Konfigurasi display manager belum rampung" + +#: 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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 "Instal paket-paket." + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "Paket pemrosesan (%(count)d/%(total)d)" + +#: src/modules/packages/main.py:62 +#, python-format +msgid "Installing one package." +msgid_plural "Installing %(num)d packages." +msgstr[0] "Menginstal paket %(num)d" + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "mencopot %(num)d paket" + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
to use." +msgstr "" + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Tugas dumi python." + +#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 +#: src/modules/dummypython/main.py:94 +msgid "Dummy python step {}" +msgstr "Langkah {} dumi python" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "" + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "" diff --git a/lang/python/id_ID/LC_MESSAGES/python.po b/lang/python/id_ID/LC_MESSAGES/python.po index 4c78ec042..0d18c4490 100644 --- a/lang/python/id_ID/LC_MESSAGES/python.po +++ b/lang/python/id_ID/LC_MESSAGES/python.po @@ -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: 2017-08-09 10:34+0000\n" "Language-Team: Indonesian (Indonesia) (https://www.transifex.com/calamares/teams/20061/id_ID/)\n" "MIME-Version: 1.0\n" @@ -17,277 +17,42 @@ msgstr "" "Language: id_ID\n" "Plural-Forms: nplurals=1; plural=0;\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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] "" - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "" - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -378,3 +143,240 @@ 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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] "" + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "" + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/ie/LC_MESSAGES/python.po b/lang/python/ie/LC_MESSAGES/python.po index ee8ba7f27..9bf156d17 100644 --- a/lang/python/ie/LC_MESSAGES/python.po +++ b/lang/python/ie/LC_MESSAGES/python.po @@ -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: Caarmi, 2020\n" "Language-Team: Interlingue (https://www.transifex.com/calamares/teams/20061/ie/)\n" @@ -21,281 +21,42 @@ msgstr "" "Language: ie\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/bootloader/main.py:43 -msgid "Install bootloader." -msgstr "Installante li 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 " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "Ne successat scrir li file de configuration de KDM" - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "File del configuration de KDM {!s} ne existe" - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "Ne successat scrir li file de configuration de LXDM" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "File del configuration de LXDM {!s} ne existe" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "Ne successat scrir li file de configuration de LightDM" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "File del configuration de LightDM {!s} ne existe" - -#: 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 "File del configuration de SLIM {!s} ne existe" - -#: 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 "Li code de termination esset {}" - -#: 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 "Scrition de 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 "Errore de configuration" - -#: 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
{!s}
to use." -msgstr "Null partition es definit por usa de
{!s}
." - -#: 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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "" - #: src/modules/grubcfg/main.py:28 msgid "Configure GRUB." msgstr "Configurante GRUB." -#: src/modules/hwclock/main.py:26 -msgid "Setting hardware clock." -msgstr "" - -#: src/modules/initcpiocfg/main.py:28 -msgid "Configuring mkinitcpio." -msgstr "Configurante mkinitcpio." - -#: src/modules/initramfscfg/main.py:32 -msgid "Configuring initramfs." -msgstr "Configurante initramfs." - -#: src/modules/localecfg/main.py:30 -msgid "Configuring locales." -msgstr "Configurante locales." - -#: 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 "Montente partitiones." -#: 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 "Errore de configuration" -#: 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 "Installante paccages." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/plymouthcfg/main.py:27 -msgid "Configure Plymouth theme" -msgstr "Configurante li tema de Plymouth" - -#: src/modules/rawfs/main.py:26 -msgid "Installing data." -msgstr "Installante li data." - -#: src/modules/services-openrc/main.py:29 -msgid "Configure OpenRC services" -msgstr "Configurante servicios de OpenRC" - -#: 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 {arg!s} 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 "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"Invocation de rc-update {arg!s} in chroot retrodat li code " -"{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 {path!s}, 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 {path!s}, 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
{!s}
to use." +msgstr "Null partition es definit por usa de
{!s}
." #: src/modules/services-systemd/main.py:26 msgid "Configure systemd services" msgstr "Configurante servicios de 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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -388,3 +149,244 @@ 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 "Ne successat scrir li file de configuration de KDM" + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "File del configuration de KDM {!s} ne existe" + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "Ne successat scrir li file de configuration de LXDM" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "File del configuration de LXDM {!s} ne existe" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "Ne successat scrir li file de configuration de LightDM" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "File del configuration de LightDM {!s} ne existe" + +#: 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 "File del configuration de SLIM {!s} ne existe" + +#: 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 "Configurante 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
{!s}
to use." +msgstr "" + +#: src/modules/luksopenswaphookcfg/main.py:26 +msgid "Configuring encrypted swap." +msgstr "" + +#: src/modules/rawfs/main.py:26 +msgid "Installing data." +msgstr "Installante li data." + +#: src/modules/services-openrc/main.py:29 +msgid "Configure OpenRC services" +msgstr "Configurante servicios de OpenRC" + +#: 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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"Invocation de rc-update {arg!s} in chroot retrodat li code " +"{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 {path!s}, 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 {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:27 +msgid "Configure Plymouth theme" +msgstr "Configurante li tema de Plymouth" + +#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 +#: src/modules/packages/main.py:69 +msgid "Install packages." +msgstr "Installante paccages." + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/bootloader/main.py:43 +msgid "Install bootloader." +msgstr "Installante li 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 " +"
{!s}
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 "Li code de termination esset {}" + +#: 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 "Configurante initramfs." + +#: src/modules/openrcdmcryptcfg/main.py:26 +msgid "Configuring OpenRC dmcrypt service." +msgstr "" + +#: src/modules/fstab/main.py:29 +msgid "Writing fstab." +msgstr "Scrition de fstab." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
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 "Configurante locales." + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "" diff --git a/lang/python/is/LC_MESSAGES/python.po b/lang/python/is/LC_MESSAGES/python.po index 3b6bdcec7..a2b35e4a9 100644 --- a/lang/python/is/LC_MESSAGES/python.po +++ b/lang/python/is/LC_MESSAGES/python.po @@ -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: Kristján Magnússon, 2018\n" "Language-Team: Icelandic (https://www.transifex.com/calamares/teams/20061/is/)\n" @@ -21,279 +21,42 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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 "Setja upp pakka." - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "Vinnslupakkar (%(count)d / %(total)d)" - -#: src/modules/packages/main.py:62 -#, python-format -msgid "Installing one package." -msgid_plural "Installing %(num)d packages." -msgstr[0] "Setja upp einn pakka." -msgstr[1] "Setur upp %(num)d pakka." - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "Fjarlægi einn pakka." -msgstr[1] "Fjarlægi %(num)d pakka." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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 "Setja upp pakka." + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "Vinnslupakkar (%(count)d / %(total)d)" + +#: src/modules/packages/main.py:62 +#, python-format +msgid "Installing one package." +msgid_plural "Installing %(num)d packages." +msgstr[0] "Setja upp einn pakka." +msgstr[1] "Setur upp %(num)d pakka." + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "Fjarlægi einn pakka." +msgstr[1] "Fjarlægi %(num)d pakka." + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/it_IT/LC_MESSAGES/python.po b/lang/python/it_IT/LC_MESSAGES/python.po index b947aae01..87c9e38b0 100644 --- a/lang/python/it_IT/LC_MESSAGES/python.po +++ b/lang/python/it_IT/LC_MESSAGES/python.po @@ -14,7 +14,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: Giuseppe Pignataro , 2021\n" "Language-Team: Italian (Italy) (https://www.transifex.com/calamares/teams/20061/it_IT/)\n" @@ -24,288 +24,42 @@ msgstr "" "Language: it_IT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/bootloader/main.py:43 -msgid "Install bootloader." -msgstr "Installa il 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 " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "Impossibile scrivere il file di configurazione di KDM" - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "Il file di configurazione di KDM {!s} non esiste" - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "Impossibile scrivere il file di configurazione di LXDM" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "Il file di configurazione di LXDM {!s} non esiste" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "Impossibile scrivere il file di configurazione di LightDM" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "Il file di configurazione di LightDM {!s} non esiste" - -#: src/modules/displaymanager/main.py:747 -msgid "Cannot configure LightDM" -msgstr "Impossibile configurare LightDM" - -#: src/modules/displaymanager/main.py:748 -msgid "No LightDM greeter installed." -msgstr "Nessun LightDM greeter installato." - -#: src/modules/displaymanager/main.py:779 -msgid "Cannot write SLIM configuration file" -msgstr "Impossibile scrivere il file di configurazione di SLIM" - -#: src/modules/displaymanager/main.py:780 -msgid "SLIM config file {!s} does not exist" -msgstr "Il file di configurazione di SLIM {!s} non esiste" - -#: src/modules/displaymanager/main.py:906 -msgid "No display managers selected for the displaymanager module." -msgstr "" -"Non è stato selezionato alcun display manager per il modulo displaymanager" - -#: src/modules/displaymanager/main.py:907 -msgid "" -"The displaymanagers list is empty or undefined in both globalstorage and " -"displaymanager.conf." -msgstr "" -"L'elenco dei display manager è vuota o non definita sia in globalstorage che" -" in displaymanager.conf." - -#: src/modules/displaymanager/main.py:989 -msgid "Display manager configuration was incomplete" -msgstr "La configurazione del display manager è incompleta" - -#: src/modules/dracut/main.py:27 -msgid "Creating initramfs with dracut." -msgstr "Creazione di initramfs con dracut." - -#: src/modules/dracut/main.py:49 -msgid "Failed to run dracut on the target" -msgstr "Impossibile eseguire dracut sulla destinazione" - -#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50 -msgid "The exit code was {}" -msgstr "Il codice di uscita era {}" - -#: src/modules/dummypython/main.py:35 -msgid "Dummy python job." -msgstr "Job python fittizio." - -#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 -#: src/modules/dummypython/main.py:94 -msgid "Dummy python step {}" -msgstr "Python step {} fittizio" - -#: src/modules/fstab/main.py:29 -msgid "Writing fstab." -msgstr "Scrittura di 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 "Errore di Configurazione" - -#: 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
{!s}
to use." -msgstr "Nessuna partizione definita per l'uso con
{!s}
." - -#: 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
{!s}
to use." -msgstr "Nessun punto di mount root è dato in l'uso per
{!s}
" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "" - #: src/modules/grubcfg/main.py:28 msgid "Configure GRUB." msgstr "Configura GRUB." -#: src/modules/hwclock/main.py:26 -msgid "Setting hardware clock." -msgstr "Impostazione del clock hardware." - -#: src/modules/initcpiocfg/main.py:28 -msgid "Configuring mkinitcpio." -msgstr "Configurazione di mkinitcpio." - -#: src/modules/initramfscfg/main.py:32 -msgid "Configuring initramfs." -msgstr "Configurazione di initramfs." - -#: src/modules/localecfg/main.py:30 -msgid "Configuring locales." -msgstr "Configurazione della localizzazione." - -#: src/modules/luksopenswaphookcfg/main.py:26 -msgid "Configuring encrypted swap." -msgstr "Configurazione per lo swap cifrato." - -#: src/modules/mkinitfs/main.py:27 -msgid "Creating initramfs with mkinitfs." -msgstr "Sto creando initramfs con mkinitfs." - -#: src/modules/mkinitfs/main.py:49 -msgid "Failed to run mkinitfs on the target" -msgstr "Impossibile eseguire mkinitfs sulla destinazione" - #: src/modules/mount/main.py:30 msgid "Mounting partitions." msgstr "Montaggio partizioni." -#: src/modules/networkcfg/main.py:28 -msgid "Saving network configuration." -msgstr "Salvataggio della configurazione di rete." +#: 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 "Errore di Configurazione" -#: src/modules/openrcdmcryptcfg/main.py:26 -msgid "Configuring OpenRC dmcrypt service." -msgstr "Configurazione del servizio OpenRC dmcrypt." - -#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 -#: src/modules/packages/main.py:69 -msgid "Install packages." -msgstr "Installa pacchetti." - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "Elaborazione dei pacchetti (%(count)d / %(total)d)" - -#: src/modules/packages/main.py:62 -#, python-format -msgid "Installing one package." -msgid_plural "Installing %(num)d packages." -msgstr[0] "Installando un pacchetto." -msgstr[1] "Installazione di %(num)d pacchetti." - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "Rimuovendo un pacchetto." -msgstr[1] "Rimozione di %(num)d pacchetti." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/plymouthcfg/main.py:27 -msgid "Configure Plymouth theme" -msgstr "Configura il tema Plymouth" - -#: src/modules/rawfs/main.py:26 -msgid "Installing data." -msgstr "Installazione dei dati." - -#: src/modules/services-openrc/main.py:29 -msgid "Configure OpenRC services" -msgstr "Configura i servizi OpenRC" - -#: src/modules/services-openrc/main.py:57 -msgid "Cannot add service {name!s} to run-level {level!s}." -msgstr "Impossibile aggiungere il servizio {name!s} al run-level {level!s}." - -#: src/modules/services-openrc/main.py:59 -msgid "Cannot remove service {name!s} from run-level {level!s}." -msgstr "Impossibile rimuovere il servizio {name!s} dal run-level {level!s}." - -#: src/modules/services-openrc/main.py:61 -msgid "" -"Unknown service-action {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Service-action sconosciuta {arg!s} per il servizio {name!s} nel" -" run-level {level!s}." - -#: src/modules/services-openrc/main.py:93 -#: src/modules/services-systemd/main.py:59 -msgid "Cannot modify service" -msgstr "Impossibile modificare il servizio" - -#: src/modules/services-openrc/main.py:94 -msgid "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"La chiamata rc-update {arg!s} in chroot ha ritornato il codice " -"di errore {num!s}." - -#: src/modules/services-openrc/main.py:101 -msgid "Target runlevel does not exist" -msgstr "Il runlevel target non esiste" - -#: src/modules/services-openrc/main.py:102 -msgid "" -"The path for runlevel {level!s} is {path!s}, which does not " -"exist." -msgstr "" -"Il percorso del runlevel {level!s} è {path!s}, ma non esiste." - -#: src/modules/services-openrc/main.py:110 -msgid "Target service does not exist" -msgstr "Il servizio target non esiste" - -#: src/modules/services-openrc/main.py:111 -msgid "" -"The path for service {name!s} is {path!s}, which does not " -"exist." -msgstr "" -"Il percorso del servizio {name!s} è {path!s}, ma non esiste." +#: 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
{!s}
to use." +msgstr "Nessuna partizione definita per l'uso con
{!s}
." #: src/modules/services-systemd/main.py:26 msgid "Configure systemd services" msgstr "Configura servizi systemd" +#: src/modules/services-systemd/main.py:59 +#: src/modules/services-openrc/main.py:93 +msgid "Cannot modify service" +msgstr "Impossibile modificare il servizio" + #: src/modules/services-systemd/main.py:60 msgid "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -405,3 +159,251 @@ msgstr "" #: src/modules/unpackfs/main.py:479 msgid "The destination \"{}\" in the target system is not a directory" msgstr "La destinazione del sistema \"{}\" non è una directory" + +#: src/modules/displaymanager/main.py:526 +msgid "Cannot write KDM configuration file" +msgstr "Impossibile scrivere il file di configurazione di KDM" + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "Il file di configurazione di KDM {!s} non esiste" + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "Impossibile scrivere il file di configurazione di LXDM" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "Il file di configurazione di LXDM {!s} non esiste" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "Impossibile scrivere il file di configurazione di LightDM" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "Il file di configurazione di LightDM {!s} non esiste" + +#: src/modules/displaymanager/main.py:747 +msgid "Cannot configure LightDM" +msgstr "Impossibile configurare LightDM" + +#: src/modules/displaymanager/main.py:748 +msgid "No LightDM greeter installed." +msgstr "Nessun LightDM greeter installato." + +#: src/modules/displaymanager/main.py:779 +msgid "Cannot write SLIM configuration file" +msgstr "Impossibile scrivere il file di configurazione di SLIM" + +#: src/modules/displaymanager/main.py:780 +msgid "SLIM config file {!s} does not exist" +msgstr "Il file di configurazione di SLIM {!s} non esiste" + +#: src/modules/displaymanager/main.py:906 +msgid "No display managers selected for the displaymanager module." +msgstr "" +"Non è stato selezionato alcun display manager per il modulo displaymanager" + +#: src/modules/displaymanager/main.py:907 +msgid "" +"The displaymanagers list is empty or undefined in both globalstorage and " +"displaymanager.conf." +msgstr "" +"L'elenco dei display manager è vuota o non definita sia in globalstorage che" +" in displaymanager.conf." + +#: src/modules/displaymanager/main.py:989 +msgid "Display manager configuration was incomplete" +msgstr "La configurazione del display manager è incompleta" + +#: src/modules/initcpiocfg/main.py:28 +msgid "Configuring mkinitcpio." +msgstr "Configurazione di 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
{!s}
to use." +msgstr "Nessun punto di mount root è dato in l'uso per
{!s}
" + +#: src/modules/luksopenswaphookcfg/main.py:26 +msgid "Configuring encrypted swap." +msgstr "Configurazione per lo swap cifrato." + +#: src/modules/rawfs/main.py:26 +msgid "Installing data." +msgstr "Installazione dei dati." + +#: src/modules/services-openrc/main.py:29 +msgid "Configure OpenRC services" +msgstr "Configura i servizi OpenRC" + +#: src/modules/services-openrc/main.py:57 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "Impossibile aggiungere il servizio {name!s} al run-level {level!s}." + +#: src/modules/services-openrc/main.py:59 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "Impossibile rimuovere il servizio {name!s} dal run-level {level!s}." + +#: src/modules/services-openrc/main.py:61 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Service-action sconosciuta {arg!s} per il servizio {name!s} nel" +" run-level {level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"La chiamata rc-update {arg!s} in chroot ha ritornato il codice " +"di errore {num!s}." + +#: src/modules/services-openrc/main.py:101 +msgid "Target runlevel does not exist" +msgstr "Il runlevel target non esiste" + +#: src/modules/services-openrc/main.py:102 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"Il percorso del runlevel {level!s} è {path!s}, ma non esiste." + +#: src/modules/services-openrc/main.py:110 +msgid "Target service does not exist" +msgstr "Il servizio target non esiste" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"Il percorso del servizio {name!s} è {path!s}, ma non esiste." + +#: src/modules/plymouthcfg/main.py:27 +msgid "Configure Plymouth theme" +msgstr "Configura il tema Plymouth" + +#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 +#: src/modules/packages/main.py:69 +msgid "Install packages." +msgstr "Installa pacchetti." + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "Elaborazione dei pacchetti (%(count)d / %(total)d)" + +#: src/modules/packages/main.py:62 +#, python-format +msgid "Installing one package." +msgid_plural "Installing %(num)d packages." +msgstr[0] "Installando un pacchetto." +msgstr[1] "Installazione di %(num)d pacchetti." + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "Rimuovendo un pacchetto." +msgstr[1] "Rimozione di %(num)d pacchetti." + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/bootloader/main.py:43 +msgid "Install bootloader." +msgstr "Installa il 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 " +"
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "Impostazione del clock hardware." + +#: src/modules/mkinitfs/main.py:27 +msgid "Creating initramfs with mkinitfs." +msgstr "Sto creando initramfs con mkinitfs." + +#: src/modules/mkinitfs/main.py:49 +msgid "Failed to run mkinitfs on the target" +msgstr "Impossibile eseguire mkinitfs sulla destinazione" + +#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50 +msgid "The exit code was {}" +msgstr "Il codice di uscita era {}" + +#: src/modules/dracut/main.py:27 +msgid "Creating initramfs with dracut." +msgstr "Creazione di initramfs con dracut." + +#: src/modules/dracut/main.py:49 +msgid "Failed to run dracut on the target" +msgstr "Impossibile eseguire dracut sulla destinazione" + +#: src/modules/initramfscfg/main.py:32 +msgid "Configuring initramfs." +msgstr "Configurazione di initramfs." + +#: src/modules/openrcdmcryptcfg/main.py:26 +msgid "Configuring OpenRC dmcrypt service." +msgstr "Configurazione del servizio OpenRC dmcrypt." + +#: src/modules/fstab/main.py:29 +msgid "Writing fstab." +msgstr "Scrittura di fstab." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
to use." +msgstr "" + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Job python fittizio." + +#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 +#: src/modules/dummypython/main.py:94 +msgid "Dummy python step {}" +msgstr "Python step {} fittizio" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "Configurazione della localizzazione." + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "Salvataggio della configurazione di rete." diff --git a/lang/python/ja/LC_MESSAGES/python.po b/lang/python/ja/LC_MESSAGES/python.po index a57e4d132..3732bc8d0 100644 --- a/lang/python/ja/LC_MESSAGES/python.po +++ b/lang/python/ja/LC_MESSAGES/python.po @@ -6,16 +6,16 @@ # Translators: # ブラシックデービッド, 2019 # Takefumi Nagata, 2019 -# UTUMI Hirosi , 2020 +# UTUMI Hirosi , 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: UTUMI Hirosi , 2020\n" +"Last-Translator: UTUMI Hirosi , 2021\n" "Language-Team: Japanese (https://www.transifex.com/calamares/teams/20061/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,278 +23,42 @@ msgstr "" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\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 " -"
{!s}
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 "globalstorage と displaymanager.conf の両方で、displaymanagers リストが空か未定義です。" - -#: 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 "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 "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
{!s}
to use." -msgstr "
{!s}
に使用するパーティションが定義されていません。" - -#: 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
{!s}
to use." -msgstr "
{!s}
を使用するのにルートマウントポイントが与えられていません。" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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 "mkinitfsを使用してinitramfsを作成します。" - -#: 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] " %(num)d パッケージをインストールしています。" - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] " %(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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 "ランレベル {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 {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"ランレベル {level!s} 内のサービス {name!s} に対する未知のサービスアクション {arg!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 "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "chrootで rc-update {arg!s} を呼び出すとエラーコード {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 {path!s}, which does not " -"exist." -msgstr "ランレベル {level!s} のパスが {path!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 {path!s}, which does not " -"exist." -msgstr "サービス {name!s} のパスが {path!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
{!s}
to use." +msgstr "
{!s}
に使用するパーティションが定義されていません。" #: 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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -388,3 +152,246 @@ msgstr "unsquashfs が見つかりませんでした。 squashfs-toolsがイン #: 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 "globalstorage と displaymanager.conf の両方で、displaymanagers リストが空か未定義です。" + +#: 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
{!s}
to use." +msgstr "
{!s}
を使用するのにルートマウントポイントが与えられていません。" + +#: 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 "ランレベル {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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"ランレベル {level!s} 内のサービス {name!s} に対する未知のサービスアクション {arg!s}。" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "chrootで rc-update {arg!s} を呼び出すとエラーコード {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 {path!s}, which does not " +"exist." +msgstr "ランレベル {level!s} のパスが {path!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 {path!s}, which does not " +"exist." +msgstr "サービス {name!s} のパスが {path!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] " %(num)d パッケージをインストールしています。" + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] " %(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
{!s}
" +"returned error code {!s}." +msgstr "" +"パッケージマネージャーはアップデートを準備できませんでした。コマンド
{!s}
はエラーコード {!s} を返しました。" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" returned error code {!s}." +msgstr "" +"パッケージマネージャーはシステムをアップデートできませんでした。 コマンド
{!s}
はエラーコード {!s} を返しました。" + +#: src/modules/packages/main.py:629 +msgid "" +"The package manager could not make changes to the installed system. The " +"command
{!s}
returned error code {!s}." +msgstr "" +"パッケージマネージャーはインストールされているシステムに変更を加えられませんでした。コマンド
{!s}
はエラーコード {!s} " +"を返しました。" + +#: 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 " +"
{!s}
returned error code {!s}." +msgstr "" +"ブートローダーをインストールできませんでした。インストールコマンド
{!s}
がエラーコード {!s} を返しました。" + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "ハードウェアクロックの設定" + +#: src/modules/mkinitfs/main.py:27 +msgid "Creating initramfs with mkinitfs." +msgstr "mkinitfsを使用してinitramfsを作成します。" + +#: 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 "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
{!s}
configuration is given for
{!s}
to use." +msgstr "
{!s}
が使用する
{!s}
設定が指定されていません。" + +#: 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 "ロケールを設定しています。" + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "ネットワーク設定を保存しています。" diff --git a/lang/python/kk/LC_MESSAGES/python.po b/lang/python/kk/LC_MESSAGES/python.po index d4981db3c..7017f998e 100644 --- a/lang/python/kk/LC_MESSAGES/python.po +++ b/lang/python/kk/LC_MESSAGES/python.po @@ -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: 2017-08-09 10:34+0000\n" "Language-Team: Kazakh (https://www.transifex.com/calamares/teams/20061/kk/)\n" "MIME-Version: 1.0\n" @@ -17,279 +17,42 @@ msgstr "" "Language: kk\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -380,3 +143,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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/kn/LC_MESSAGES/python.po b/lang/python/kn/LC_MESSAGES/python.po index 593f86ec1..38989f06c 100644 --- a/lang/python/kn/LC_MESSAGES/python.po +++ b/lang/python/kn/LC_MESSAGES/python.po @@ -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: 2017-08-09 10:34+0000\n" "Language-Team: Kannada (https://www.transifex.com/calamares/teams/20061/kn/)\n" "MIME-Version: 1.0\n" @@ -17,279 +17,42 @@ msgstr "" "Language: kn\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -380,3 +143,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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/ko/LC_MESSAGES/python.po b/lang/python/ko/LC_MESSAGES/python.po index d29cefce7..e6f1f1c8b 100644 --- a/lang/python/ko/LC_MESSAGES/python.po +++ b/lang/python/ko/LC_MESSAGES/python.po @@ -5,16 +5,16 @@ # # Translators: # Ji-Hyeon Gim , 2018 -# JungHee Lee , 2020 +# JungHee Lee , 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: JungHee Lee , 2020\n" +"Last-Translator: JungHee Lee , 2021\n" "Language-Team: Korean (https://www.transifex.com/calamares/teams/20061/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,281 +22,42 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\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 " -"
{!s}
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 "LMLDM 구성 파일을 쓸 수 없습니다." - -#: 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 "displaymanager 모듈에 대해 선택된 디스플레이 관리자가 없습니다." - -#: src/modules/displaymanager/main.py:907 -msgid "" -"The displaymanagers list is empty or undefined in both globalstorage and " -"displaymanager.conf." -msgstr "" -"displaymanagers 목록이 비어 있거나 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 "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 "더미 파이썬 작업." - -#: 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 "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
{!s}
to use." -msgstr "사용할
{!s}
에 대해 정의된 파티션이 없음." - -#: 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
{!s}
to use." -msgstr "
{!s}
에서 사용할 루트 마운트 지점이 제공되지 않음." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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 "mkinitfs로 initramfs 생성 중." - -#: 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] "%(num)d개의 패키지들을 설치하는 중입니다." - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "%(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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 "OpenRC 서비스 구성" - -#: src/modules/services-openrc/main.py:57 -msgid "Cannot add service {name!s} to run-level {level!s}." -msgstr "run-level {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 {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"run-level {level!s}의 service {name!s}에 대해 알 수 없는 service-action " -"{arg!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 "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "chroot의 rc-update {arg!s} 호출이 오류 코드 {num!s}를 반환 했습니다." - -#: 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 {path!s}, which does not " -"exist." -msgstr "runlevel {level!s}의 경로는 존재하지 않는 {path!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 {path!s}, which does not " -"exist." -msgstr "{name!s} 서비스에 대한 경로는 {path!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
{!s}
to use." +msgstr "사용할
{!s}
에 대해 정의된 파티션이 없음." #: 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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -389,3 +150,244 @@ msgstr "unsquashfs를 찾지 못했습니다. squashfs-tools 패키지가 설치 #: 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 "LMLDM 구성 파일을 쓸 수 없습니다." + +#: 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 "displaymanager 모듈에 대해 선택된 디스플레이 관리자가 없습니다." + +#: src/modules/displaymanager/main.py:907 +msgid "" +"The displaymanagers list is empty or undefined in both globalstorage and " +"displaymanager.conf." +msgstr "" +"displaymanagers 목록이 비어 있거나 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
{!s}
to use." +msgstr "
{!s}
에서 사용할 루트 마운트 지점이 제공되지 않음." + +#: 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 "run-level {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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"run-level {level!s}의 service {name!s}에 대해 알 수 없는 service-action " +"{arg!s}입니다." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "chroot의 rc-update {arg!s} 호출이 오류 코드 {num!s}를 반환 했습니다." + +#: 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 {path!s}, which does not " +"exist." +msgstr "runlevel {level!s}의 경로는 존재하지 않는 {path!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 {path!s}, which does not " +"exist." +msgstr "{name!s} 서비스에 대한 경로는 {path!s}이고, 존재하지 않습니다." + +#: 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] "%(num)d개의 패키지들을 설치하는 중입니다." + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "%(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
{!s}
" +"returned error code {!s}." +msgstr "패키지 관리자가 업데이트를 준비할 수 없습니다.
{!s}
명령에서 {!s} 오류 코드를 반환했습니다." + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" returned error code {!s}." +msgstr "패키지 관리자가 시스템을 업데이트할 수 없습니다.
{!s}
명령에서 {!s} 오류 코드를 반환했습니다." + +#: src/modules/packages/main.py:629 +msgid "" +"The package manager could not make changes to the installed system. The " +"command
{!s}
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 " +"
{!s}
returned error code {!s}." +msgstr "부트로더를 설치할 수 없습니다.
{!s}
설치 명령에서 {!s} 오류 코드를 반환했습니다." + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "하드웨어 클럭 설정 중." + +#: src/modules/mkinitfs/main.py:27 +msgid "Creating initramfs with mkinitfs." +msgstr "mkinitfs로 initramfs 생성 중." + +#: 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 "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
{!s}
configuration is given for
{!s}
to use." +msgstr "
{!s}
구성 없음은
{!s}
을(를) 사용할 수 있도록 제공됩니다." + +#: 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 "네트워크 구성 저장 중." diff --git a/lang/python/ko_KR/LC_MESSAGES/python.po b/lang/python/ko_KR/LC_MESSAGES/python.po new file mode 100644 index 000000000..75302ae60 --- /dev/null +++ b/lang/python/ko_KR/LC_MESSAGES/python.po @@ -0,0 +1,382 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-14 12:55+0200\n" +"PO-Revision-Date: 2017-08-09 10:34+0000\n" +"Language-Team: Korean (Korea) (https://www.transifex.com/calamares/teams/20061/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/modules/grubcfg/main.py:28 +msgid "Configure GRUB." +msgstr "" + +#: src/modules/mount/main.py:30 +msgid "Mounting partitions." +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/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
{!s}
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 "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:63 +#: src/modules/services-systemd/main.py:67 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:65 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:71 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:73 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:31 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:35 +msgid "Filling up filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:255 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:300 +msgid "Unpacking image {}/{}, file {}/{}" +msgstr "" + +#: src/modules/unpackfs/main.py:315 +msgid "Starting to unpack {}" +msgstr "" + +#: src/modules/unpackfs/main.py:324 src/modules/unpackfs/main.py:464 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:431 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:432 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:437 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:438 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:454 src/modules/unpackfs/main.py:458 +#: src/modules/unpackfs/main.py:478 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:455 +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "" + +#: src/modules/unpackfs/main.py:459 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:465 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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] "" + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "" + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/lo/LC_MESSAGES/python.po b/lang/python/lo/LC_MESSAGES/python.po index eff5c79dd..c4515f106 100644 --- a/lang/python/lo/LC_MESSAGES/python.po +++ b/lang/python/lo/LC_MESSAGES/python.po @@ -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: 2017-08-09 10:34+0000\n" "Language-Team: Lao (https://www.transifex.com/calamares/teams/20061/lo/)\n" "MIME-Version: 1.0\n" @@ -17,277 +17,42 @@ msgstr "" "Language: lo\n" "Plural-Forms: nplurals=1; plural=0;\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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] "" - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "" - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -378,3 +143,240 @@ 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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] "" + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "" + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/lt/LC_MESSAGES/python.po b/lang/python/lt/LC_MESSAGES/python.po index abed5af2e..6ceb39a27 100644 --- a/lang/python/lt/LC_MESSAGES/python.po +++ b/lang/python/lt/LC_MESSAGES/python.po @@ -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: Moo, 2021\n" "Language-Team: Lithuanian (https://www.transifex.com/calamares/teams/20061/lt/)\n" @@ -22,302 +22,42 @@ msgstr "" "Language: lt\n" "Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" -#: src/modules/bootloader/main.py:43 -msgid "Install bootloader." -msgstr "Įdiegti operacinės sistemos paleidyklę." - -#: src/modules/bootloader/main.py:502 -msgid "Bootloader installation error" -msgstr "Operacinės sistemos paleidyklės diegimo klaida" - -#: src/modules/bootloader/main.py:503 -msgid "" -"The bootloader could not be installed. The installation command " -"
{!s}
returned error code {!s}." -msgstr "" -"Nepavyko įdiegti operacinės sistemos paleidyklės. Diegimo komanda " -"
{!s}
grąžino klaidos kodą {!s}." - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "Nepavyksta įrašyti KDM konfigūracijos failą" - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "KDM konfigūracijos failo {!s} nėra" - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "Nepavyksta įrašyti LXDM konfigūracijos failą" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "LXDM konfigūracijos failo {!s} nėra" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "Nepavyksta įrašyti LightDM konfigūracijos failą" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "LightDM konfigūracijos failo {!s} nėra" - -#: src/modules/displaymanager/main.py:747 -msgid "Cannot configure LightDM" -msgstr "Nepavyksta konfigūruoti LightDM" - -#: src/modules/displaymanager/main.py:748 -msgid "No LightDM greeter installed." -msgstr "Neįdiegtas joks LightDM pasisveikinimas." - -#: src/modules/displaymanager/main.py:779 -msgid "Cannot write SLIM configuration file" -msgstr "Nepavyksta įrašyti SLIM konfigūracijos failą" - -#: src/modules/displaymanager/main.py:780 -msgid "SLIM config file {!s} does not exist" -msgstr "SLIM konfigūracijos failo {!s} nėra" - -#: src/modules/displaymanager/main.py:906 -msgid "No display managers selected for the displaymanager module." -msgstr "Displaymanagers moduliui nėra pasirinkta jokių ekranų tvarkytuvių." - -#: src/modules/displaymanager/main.py:907 -msgid "" -"The displaymanagers list is empty or undefined in both globalstorage and " -"displaymanager.conf." -msgstr "" -"Displaymanagers sąrašas yra tuščias arba neapibrėžtas tiek globalstorage, " -"tiek ir displaymanager.conf faile." - -#: src/modules/displaymanager/main.py:989 -msgid "Display manager configuration was incomplete" -msgstr "Ekranų tvarkytuvės konfigūracija yra nepilna" - -#: src/modules/dracut/main.py:27 -msgid "Creating initramfs with dracut." -msgstr "Sukuriama initramfs naudojant dracut." - -#: src/modules/dracut/main.py:49 -msgid "Failed to run dracut on the target" -msgstr "Nepavyko paskirties vietoje paleisti dracut" - -#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50 -msgid "The exit code was {}" -msgstr "Išėjimo kodas buvo {}" - -#: src/modules/dummypython/main.py:35 -msgid "Dummy python job." -msgstr "Fiktyvi python užduotis." - -#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 -#: src/modules/dummypython/main.py:94 -msgid "Dummy python step {}" -msgstr "Fiktyvus python žingsnis {}" - -#: src/modules/fstab/main.py:29 -msgid "Writing fstab." -msgstr "Rašoma 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 "Konfigūracijos klaida" - -#: 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
{!s}
to use." -msgstr "Nėra apibrėžta jokių skaidinių, skirtų
{!s}
naudojimui." - -#: 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
{!s}
to use." -msgstr "" -"Nėra nurodyta jokių šaknies prijungimo taškų, skirtų
{!s}
" -"naudojimui." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "" -"Nenurodyta jokia
{!s}
konfigūracija, kurią
{!s}
galėtų" -" naudoti." - #: src/modules/grubcfg/main.py:28 msgid "Configure GRUB." msgstr "Konfigūruoti GRUB." -#: src/modules/hwclock/main.py:26 -msgid "Setting hardware clock." -msgstr "Nustatomas aparatinės įrangos laikrodis." - -#: src/modules/initcpiocfg/main.py:28 -msgid "Configuring mkinitcpio." -msgstr "Konfigūruojama mkinitcpio." - -#: src/modules/initramfscfg/main.py:32 -msgid "Configuring initramfs." -msgstr "Konfigūruojama initramfs." - -#: src/modules/localecfg/main.py:30 -msgid "Configuring locales." -msgstr "Konfigūruojamos lokalės." - -#: src/modules/luksopenswaphookcfg/main.py:26 -msgid "Configuring encrypted swap." -msgstr "Konfigūruojamas šifruotas sukeitimų skaidinys." - -#: src/modules/mkinitfs/main.py:27 -msgid "Creating initramfs with mkinitfs." -msgstr "Kuriama initramfs naudojant mkinitfs." - -#: src/modules/mkinitfs/main.py:49 -msgid "Failed to run mkinitfs on the target" -msgstr "Nepavyko paskirties vietoje paleisti mkinitfs" - #: src/modules/mount/main.py:30 msgid "Mounting partitions." msgstr "Prijungiami skaidiniai." -#: src/modules/networkcfg/main.py:28 -msgid "Saving network configuration." -msgstr "Įrašoma tinklo konfigūracija." +#: 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 "Konfigūracijos klaida" -#: src/modules/openrcdmcryptcfg/main.py:26 -msgid "Configuring OpenRC dmcrypt service." -msgstr "Konfigūruojama OpenRC dmcrypt tarnyba." - -#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 -#: src/modules/packages/main.py:69 -msgid "Install packages." -msgstr "Įdiegti paketus." - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "Apdorojami paketai (%(count)d / %(total)d)" - -#: src/modules/packages/main.py:62 -#, python-format -msgid "Installing one package." -msgid_plural "Installing %(num)d packages." -msgstr[0] "Įdiegiamas %(num)d paketas." -msgstr[1] "Įdiegiami %(num)d paketai." -msgstr[2] "Įdiegiama %(num)d paketų." -msgstr[3] "Įdiegiama %(num)d paketų." - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "Šalinamas %(num)d paketas." -msgstr[1] "Šalinami %(num)d paketai." -msgstr[2] "Šalinama %(num)d paketų." -msgstr[3] "Šalinama %(num)d paketų." - -#: src/modules/packages/main.py:588 src/modules/packages/main.py:600 -#: src/modules/packages/main.py:628 -msgid "Package Manager error" -msgstr "Paketų tvarkytuvės klaida" - -#: src/modules/packages/main.py:589 -msgid "" -"The package manager could not prepare updates. The command
{!s}
" -"returned error code {!s}." -msgstr "" -"Paketų tvarkytuvei nepavyko paruošti atnaujinimų. Komanda
{!s}
" -"grąžino klaidos kodą {!s}." - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" -"Paketų tvarkytuvei nepavyko atnaujinti sistemos. Komanda
{!s}
" -"grąžino klaidos kodą {!s}." - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/plymouthcfg/main.py:27 -msgid "Configure Plymouth theme" -msgstr "Konfigūruoti Plymouth temą" - -#: src/modules/rawfs/main.py:26 -msgid "Installing data." -msgstr "Įdiegiami duomenys." - -#: src/modules/services-openrc/main.py:29 -msgid "Configure OpenRC services" -msgstr "Konfigūruoti OpenRC tarnybas" - -#: src/modules/services-openrc/main.py:57 -msgid "Cannot add service {name!s} to run-level {level!s}." -msgstr "Nepavyksta pridėti tarnybą {name!s} į vykdymo lygmenį {level!s}." - -#: src/modules/services-openrc/main.py:59 -msgid "Cannot remove service {name!s} from run-level {level!s}." -msgstr "Nepavyksta pašalinti tarnybą {name!s} iš vykdymo lygmens {level!s}." - -#: src/modules/services-openrc/main.py:61 -msgid "" -"Unknown service-action {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Nežinomas tarnybos veiksmas {arg!s}, skirtas tarnybai {name!s} " -"vykdymo lygmenyje {level!s}." - -#: src/modules/services-openrc/main.py:93 -#: src/modules/services-systemd/main.py:59 -msgid "Cannot modify service" -msgstr "Nepavyksta modifikuoti tarnybos" - -#: src/modules/services-openrc/main.py:94 -msgid "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"rc-update {arg!s} iškvieta, esanti chroot, grąžino klaidos kodą" -" {num!s}." - -#: src/modules/services-openrc/main.py:101 -msgid "Target runlevel does not exist" -msgstr "Paskirties vykdymo lygmens nėra" - -#: src/modules/services-openrc/main.py:102 -msgid "" -"The path for runlevel {level!s} is {path!s}, which does not " -"exist." -msgstr "" -"Vykdymo lygmens {level!s} kelias yra {path!s}, kurio savo " -"ruožtu nėra." - -#: src/modules/services-openrc/main.py:110 -msgid "Target service does not exist" -msgstr "Paskirties tarnybos nėra" - -#: src/modules/services-openrc/main.py:111 -msgid "" -"The path for service {name!s} is {path!s}, which does not " -"exist." -msgstr "" -"Tarnybos {name!s} kelias yra {path!s}, kurio savo ruožtu nėra." +#: 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
{!s}
to use." +msgstr "Nėra apibrėžta jokių skaidinių, skirtų
{!s}
naudojimui." #: src/modules/services-systemd/main.py:26 msgid "Configure systemd services" msgstr "Konfigūruoti systemd tarnybas" +#: src/modules/services-systemd/main.py:59 +#: src/modules/services-openrc/main.py:93 +msgid "Cannot modify service" +msgstr "Nepavyksta modifikuoti tarnybos" + #: src/modules/services-systemd/main.py:60 msgid "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -414,3 +154,267 @@ msgstr "" #: src/modules/unpackfs/main.py:479 msgid "The destination \"{}\" in the target system is not a directory" msgstr "Paskirties vieta „{}“, esanti paskirties sistemoje, nėra katalogas" + +#: src/modules/displaymanager/main.py:526 +msgid "Cannot write KDM configuration file" +msgstr "Nepavyksta įrašyti KDM konfigūracijos failą" + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "KDM konfigūracijos failo {!s} nėra" + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "Nepavyksta įrašyti LXDM konfigūracijos failą" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "LXDM konfigūracijos failo {!s} nėra" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "Nepavyksta įrašyti LightDM konfigūracijos failą" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "LightDM konfigūracijos failo {!s} nėra" + +#: src/modules/displaymanager/main.py:747 +msgid "Cannot configure LightDM" +msgstr "Nepavyksta konfigūruoti LightDM" + +#: src/modules/displaymanager/main.py:748 +msgid "No LightDM greeter installed." +msgstr "Neįdiegtas joks LightDM pasisveikinimas." + +#: src/modules/displaymanager/main.py:779 +msgid "Cannot write SLIM configuration file" +msgstr "Nepavyksta įrašyti SLIM konfigūracijos failą" + +#: src/modules/displaymanager/main.py:780 +msgid "SLIM config file {!s} does not exist" +msgstr "SLIM konfigūracijos failo {!s} nėra" + +#: src/modules/displaymanager/main.py:906 +msgid "No display managers selected for the displaymanager module." +msgstr "Displaymanagers moduliui nėra pasirinkta jokių ekranų tvarkytuvių." + +#: src/modules/displaymanager/main.py:907 +msgid "" +"The displaymanagers list is empty or undefined in both globalstorage and " +"displaymanager.conf." +msgstr "" +"Displaymanagers sąrašas yra tuščias arba neapibrėžtas tiek globalstorage, " +"tiek ir displaymanager.conf faile." + +#: src/modules/displaymanager/main.py:989 +msgid "Display manager configuration was incomplete" +msgstr "Ekranų tvarkytuvės konfigūracija yra nepilna" + +#: src/modules/initcpiocfg/main.py:28 +msgid "Configuring mkinitcpio." +msgstr "Konfigūruojama 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
{!s}
to use." +msgstr "" +"Nėra nurodyta jokių šaknies prijungimo taškų, skirtų
{!s}
" +"naudojimui." + +#: src/modules/luksopenswaphookcfg/main.py:26 +msgid "Configuring encrypted swap." +msgstr "Konfigūruojamas šifruotas sukeitimų skaidinys." + +#: src/modules/rawfs/main.py:26 +msgid "Installing data." +msgstr "Įdiegiami duomenys." + +#: src/modules/services-openrc/main.py:29 +msgid "Configure OpenRC services" +msgstr "Konfigūruoti OpenRC tarnybas" + +#: src/modules/services-openrc/main.py:57 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "Nepavyksta pridėti tarnybą {name!s} į vykdymo lygmenį {level!s}." + +#: src/modules/services-openrc/main.py:59 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "Nepavyksta pašalinti tarnybą {name!s} iš vykdymo lygmens {level!s}." + +#: src/modules/services-openrc/main.py:61 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Nežinomas tarnybos veiksmas {arg!s}, skirtas tarnybai {name!s} " +"vykdymo lygmenyje {level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"rc-update {arg!s} iškvieta, esanti chroot, grąžino klaidos kodą" +" {num!s}." + +#: src/modules/services-openrc/main.py:101 +msgid "Target runlevel does not exist" +msgstr "Paskirties vykdymo lygmens nėra" + +#: src/modules/services-openrc/main.py:102 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"Vykdymo lygmens {level!s} kelias yra {path!s}, kurio savo " +"ruožtu nėra." + +#: src/modules/services-openrc/main.py:110 +msgid "Target service does not exist" +msgstr "Paskirties tarnybos nėra" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"Tarnybos {name!s} kelias yra {path!s}, kurio savo ruožtu nėra." + +#: src/modules/plymouthcfg/main.py:27 +msgid "Configure Plymouth theme" +msgstr "Konfigūruoti Plymouth temą" + +#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 +#: src/modules/packages/main.py:69 +msgid "Install packages." +msgstr "Įdiegti paketus." + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "Apdorojami paketai (%(count)d / %(total)d)" + +#: src/modules/packages/main.py:62 +#, python-format +msgid "Installing one package." +msgid_plural "Installing %(num)d packages." +msgstr[0] "Įdiegiamas %(num)d paketas." +msgstr[1] "Įdiegiami %(num)d paketai." +msgstr[2] "Įdiegiama %(num)d paketų." +msgstr[3] "Įdiegiama %(num)d paketų." + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "Šalinamas %(num)d paketas." +msgstr[1] "Šalinami %(num)d paketai." +msgstr[2] "Šalinama %(num)d paketų." +msgstr[3] "Šalinama %(num)d paketų." + +#: src/modules/packages/main.py:588 src/modules/packages/main.py:600 +#: src/modules/packages/main.py:628 +msgid "Package Manager error" +msgstr "Paketų tvarkytuvės klaida" + +#: src/modules/packages/main.py:589 +msgid "" +"The package manager could not prepare updates. The command
{!s}
" +"returned error code {!s}." +msgstr "" +"Paketų tvarkytuvei nepavyko paruošti atnaujinimų. Komanda
{!s}
" +"grąžino klaidos kodą {!s}." + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" returned error code {!s}." +msgstr "" +"Paketų tvarkytuvei nepavyko atnaujinti sistemos. Komanda
{!s}
" +"grąžino klaidos kodą {!s}." + +#: src/modules/packages/main.py:629 +msgid "" +"The package manager could not make changes to the installed system. The " +"command
{!s}
returned error code {!s}." +msgstr "" +"Paketų tvarkytuvei nepavyko atlikti pakeitimų įdiegtoje sistemoje. Komanda " +"
{!s}
grąžino klaidos kodą {!s}." + +#: src/modules/bootloader/main.py:43 +msgid "Install bootloader." +msgstr "Įdiegti operacinės sistemos paleidyklę." + +#: src/modules/bootloader/main.py:502 +msgid "Bootloader installation error" +msgstr "Operacinės sistemos paleidyklės diegimo klaida" + +#: src/modules/bootloader/main.py:503 +msgid "" +"The bootloader could not be installed. The installation command " +"
{!s}
returned error code {!s}." +msgstr "" +"Nepavyko įdiegti operacinės sistemos paleidyklės. Diegimo komanda " +"
{!s}
grąžino klaidos kodą {!s}." + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "Nustatomas aparatinės įrangos laikrodis." + +#: src/modules/mkinitfs/main.py:27 +msgid "Creating initramfs with mkinitfs." +msgstr "Kuriama initramfs naudojant mkinitfs." + +#: src/modules/mkinitfs/main.py:49 +msgid "Failed to run mkinitfs on the target" +msgstr "Nepavyko paskirties vietoje paleisti mkinitfs" + +#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50 +msgid "The exit code was {}" +msgstr "Išėjimo kodas buvo {}" + +#: src/modules/dracut/main.py:27 +msgid "Creating initramfs with dracut." +msgstr "Sukuriama initramfs naudojant dracut." + +#: src/modules/dracut/main.py:49 +msgid "Failed to run dracut on the target" +msgstr "Nepavyko paskirties vietoje paleisti dracut" + +#: src/modules/initramfscfg/main.py:32 +msgid "Configuring initramfs." +msgstr "Konfigūruojama initramfs." + +#: src/modules/openrcdmcryptcfg/main.py:26 +msgid "Configuring OpenRC dmcrypt service." +msgstr "Konfigūruojama OpenRC dmcrypt tarnyba." + +#: src/modules/fstab/main.py:29 +msgid "Writing fstab." +msgstr "Rašoma fstab." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
to use." +msgstr "" +"Nenurodyta jokia
{!s}
konfigūracija, kurią
{!s}
galėtų" +" naudoti." + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Fiktyvi python užduotis." + +#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 +#: src/modules/dummypython/main.py:94 +msgid "Dummy python step {}" +msgstr "Fiktyvus python žingsnis {}" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "Konfigūruojamos lokalės." + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "Įrašoma tinklo konfigūracija." diff --git a/lang/python/lv/LC_MESSAGES/python.po b/lang/python/lv/LC_MESSAGES/python.po index f08ec43a4..9c1a06033 100644 --- a/lang/python/lv/LC_MESSAGES/python.po +++ b/lang/python/lv/LC_MESSAGES/python.po @@ -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: 2017-08-09 10:34+0000\n" "Language-Team: Latvian (https://www.transifex.com/calamares/teams/20061/lv/)\n" "MIME-Version: 1.0\n" @@ -17,281 +17,42 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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] "" -msgstr[2] "" - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -382,3 +143,244 @@ 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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] "" +msgstr[2] "" + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/mk/LC_MESSAGES/python.po b/lang/python/mk/LC_MESSAGES/python.po index d05e86b80..4edd1b7ec 100644 --- a/lang/python/mk/LC_MESSAGES/python.po +++ b/lang/python/mk/LC_MESSAGES/python.po @@ -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: Martin Ristovski , 2018\n" "Language-Team: Macedonian (https://www.transifex.com/calamares/teams/20061/mk/)\n" @@ -21,279 +21,42 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 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 " -"
{!s}
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 "" - -#: 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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} 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 "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 "" + +#: 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/ml/LC_MESSAGES/python.po b/lang/python/ml/LC_MESSAGES/python.po index 2473ecc7c..03ff8a7c2 100644 --- a/lang/python/ml/LC_MESSAGES/python.po +++ b/lang/python/ml/LC_MESSAGES/python.po @@ -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: Balasankar C , 2019\n" "Language-Team: Malayalam (https://www.transifex.com/calamares/teams/20061/ml/)\n" @@ -22,279 +22,42 @@ msgstr "" "Language: ml\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/mr/LC_MESSAGES/python.po b/lang/python/mr/LC_MESSAGES/python.po index b5f28db3f..16b6cd832 100644 --- a/lang/python/mr/LC_MESSAGES/python.po +++ b/lang/python/mr/LC_MESSAGES/python.po @@ -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: 2017-08-09 10:34+0000\n" "Language-Team: Marathi (https://www.transifex.com/calamares/teams/20061/mr/)\n" "MIME-Version: 1.0\n" @@ -17,279 +17,42 @@ msgstr "" "Language: mr\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -380,3 +143,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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/nb/LC_MESSAGES/python.po b/lang/python/nb/LC_MESSAGES/python.po index 384454218..5041680d7 100644 --- a/lang/python/nb/LC_MESSAGES/python.po +++ b/lang/python/nb/LC_MESSAGES/python.po @@ -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: 865ac004d9acf2568b2e4b389e0007c7_fba755c <3516cc82d94f87187da1e036e5f09e42_616112>, 2017\n" "Language-Team: Norwegian Bokmål (https://www.transifex.com/calamares/teams/20061/nb/)\n" @@ -21,279 +21,42 @@ msgstr "" "Language: nb\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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 "Installer pakker." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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 "Installer pakker." + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/ne/LC_MESSAGES/python.po b/lang/python/ne/LC_MESSAGES/python.po index 285a1a996..a681def56 100644 --- a/lang/python/ne/LC_MESSAGES/python.po +++ b/lang/python/ne/LC_MESSAGES/python.po @@ -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: 2017-08-09 10:34+0000\n" "Language-Team: Nepali (https://www.transifex.com/calamares/teams/20061/ne/)\n" "MIME-Version: 1.0\n" @@ -17,279 +17,42 @@ msgstr "" "Language: ne\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -380,3 +143,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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/ne_NP/LC_MESSAGES/python.po b/lang/python/ne_NP/LC_MESSAGES/python.po index b92fd7db1..95117a1b1 100644 --- a/lang/python/ne_NP/LC_MESSAGES/python.po +++ b/lang/python/ne_NP/LC_MESSAGES/python.po @@ -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: 2017-08-09 10:34+0000\n" "Language-Team: Nepali (Nepal) (https://www.transifex.com/calamares/teams/20061/ne_NP/)\n" "MIME-Version: 1.0\n" @@ -17,279 +17,42 @@ msgstr "" "Language: ne_NP\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -380,3 +143,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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/nl/LC_MESSAGES/python.po b/lang/python/nl/LC_MESSAGES/python.po index a69e2e059..222c5169d 100644 --- a/lang/python/nl/LC_MESSAGES/python.po +++ b/lang/python/nl/LC_MESSAGES/python.po @@ -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: Adriaan de Groot , 2020\n" "Language-Team: Dutch (https://www.transifex.com/calamares/teams/20061/nl/)\n" @@ -22,288 +22,42 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/bootloader/main.py:43 -msgid "Install bootloader." -msgstr "Installeer 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 " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "Schrijven naar het KDM-configuratiebestand is mislukt " - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "KDM-configuratiebestand {!s} bestaat niet." - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "Schrijven naar het LXDM-configuratiebestand is mislukt" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "Het KDM-configuratiebestand {!s} bestaat niet" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "Schrijven naar het LightDM-configuratiebestand is mislukt" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "Het LightDM-configuratiebestand {!s} bestaat niet" - -#: src/modules/displaymanager/main.py:747 -msgid "Cannot configure LightDM" -msgstr "Kon LightDM niet configureren" - -#: src/modules/displaymanager/main.py:748 -msgid "No LightDM greeter installed." -msgstr "Geen LightDM begroeter geïnstalleerd" - -#: src/modules/displaymanager/main.py:779 -msgid "Cannot write SLIM configuration file" -msgstr "Schrijven naar het SLIM-configuratiebestand is mislukt" - -#: src/modules/displaymanager/main.py:780 -msgid "SLIM config file {!s} does not exist" -msgstr "Het SLIM-configuratiebestand {!s} bestaat niet" - -#: src/modules/displaymanager/main.py:906 -msgid "No display managers selected for the displaymanager module." -msgstr "Geen display managers geselecteerd voor de displaymanager module." - -#: src/modules/displaymanager/main.py:907 -msgid "" -"The displaymanagers list is empty or undefined in both globalstorage and " -"displaymanager.conf." -msgstr "" -"De lijst van display-managers is leeg, zowel in de configuratie " -"displaymanager.conf als de globale opslag." - -#: src/modules/displaymanager/main.py:989 -msgid "Display manager configuration was incomplete" -msgstr "Display manager configuratie was incompleet" - -#: src/modules/dracut/main.py:27 -msgid "Creating initramfs with dracut." -msgstr "initramfs aanmaken met dracut." - -#: src/modules/dracut/main.py:49 -msgid "Failed to run dracut on the target" -msgstr "Uitvoeren van dracut op het doel is mislukt" - -#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50 -msgid "The exit code was {}" -msgstr "De afsluitcode was {}" - -#: src/modules/dummypython/main.py:35 -msgid "Dummy python job." -msgstr "Voorbeeld Python-taak" - -#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 -#: src/modules/dummypython/main.py:94 -msgid "Dummy python step {}" -msgstr "Voorbeeld Python-stap {}" - -#: src/modules/fstab/main.py:29 -msgid "Writing fstab." -msgstr "fstab schrijven." - -#: 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 "Configuratiefout" - -#: 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
{!s}
to use." -msgstr "Geen partities gedefinieerd voor
{!s}
om te gebruiken." - -#: 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
{!s}
to use." -msgstr "" -"Geen hoofd mount punt is gegeven voor
{!s}
om te gebruiken. " - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "" - #: src/modules/grubcfg/main.py:28 msgid "Configure GRUB." msgstr "GRUB instellen." -#: src/modules/hwclock/main.py:26 -msgid "Setting hardware clock." -msgstr "Instellen van hardwareklok" - -#: src/modules/initcpiocfg/main.py:28 -msgid "Configuring mkinitcpio." -msgstr "Instellen van mkinitcpio" - -#: src/modules/initramfscfg/main.py:32 -msgid "Configuring initramfs." -msgstr "Instellen van initramfs." - -#: src/modules/localecfg/main.py:30 -msgid "Configuring locales." -msgstr "Taal en locatie instellen." - -#: src/modules/luksopenswaphookcfg/main.py:26 -msgid "Configuring encrypted swap." -msgstr "Instellen van versleutelde swap." - -#: src/modules/mkinitfs/main.py:27 -msgid "Creating initramfs with mkinitfs." -msgstr "Een initramfs wordt aangemaakt met mkinitfs." - -#: src/modules/mkinitfs/main.py:49 -msgid "Failed to run mkinitfs on the target" -msgstr "Uitvoeren van mkinitfs in het doelsysteem is mislukt" - #: src/modules/mount/main.py:30 msgid "Mounting partitions." msgstr "Partities mounten." -#: src/modules/networkcfg/main.py:28 -msgid "Saving network configuration." -msgstr "Netwerk-configuratie opslaan." +#: 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 "Configuratiefout" -#: src/modules/openrcdmcryptcfg/main.py:26 -msgid "Configuring OpenRC dmcrypt service." -msgstr "Configureren van 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 "Pakketten installeren." - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "Pakketten verwerken (%(count)d/ %(total)d)" - -#: src/modules/packages/main.py:62 -#, python-format -msgid "Installing one package." -msgid_plural "Installing %(num)d packages." -msgstr[0] "Pakket installeren." -msgstr[1] "%(num)d pakketten installeren." - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "Pakket verwijderen." -msgstr[1] "%(num)d pakketten verwijderen." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/plymouthcfg/main.py:27 -msgid "Configure Plymouth theme" -msgstr "Plymouth thema instellen" - -#: src/modules/rawfs/main.py:26 -msgid "Installing data." -msgstr "Data aan het installeren." - -#: src/modules/services-openrc/main.py:29 -msgid "Configure OpenRC services" -msgstr "Configureer OpenRC services" - -#: src/modules/services-openrc/main.py:57 -msgid "Cannot add service {name!s} to run-level {level!s}." -msgstr "Kon service {name!s} niet toegoeven aan runlevel {level!s}." - -#: src/modules/services-openrc/main.py:59 -msgid "Cannot remove service {name!s} from run-level {level!s}." -msgstr "Kon service {name!s} niet verwijderen van runlevel {level!s}." - -#: src/modules/services-openrc/main.py:61 -msgid "" -"Unknown service-action {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Onbekende serviceactie {arg!s} voor service {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 "De service kan niet worden gewijzigd" - -#: src/modules/services-openrc/main.py:94 -msgid "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"rc-update {arg!s} aanroeping in chroot resulteerde in foutcode " -"{num!s}." - -#: src/modules/services-openrc/main.py:101 -msgid "Target runlevel does not exist" -msgstr "Doel runlevel bestaat niet" - -#: src/modules/services-openrc/main.py:102 -msgid "" -"The path for runlevel {level!s} is {path!s}, which does not " -"exist." -msgstr "" -"Het pad voor runlevel {level!s} is {path!s}, welke niet bestaat" - -#: src/modules/services-openrc/main.py:110 -msgid "Target service does not exist" -msgstr "Doelservice bestaat niet" - -#: src/modules/services-openrc/main.py:111 -msgid "" -"The path for service {name!s} is {path!s}, which does not " -"exist." -msgstr "" -"Het pad voor service {level!s} is {path!s}, welke niet bestaat" +#: 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
{!s}
to use." +msgstr "Geen partities gedefinieerd voor
{!s}
om te gebruiken." #: src/modules/services-systemd/main.py:26 msgid "Configure systemd services" msgstr "Configureer systemd services " +#: src/modules/services-systemd/main.py:59 +#: src/modules/services-openrc/main.py:93 +msgid "Cannot modify service" +msgstr "De service kan niet worden gewijzigd" + #: src/modules/services-systemd/main.py:60 msgid "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -405,3 +159,251 @@ msgstr "" #: src/modules/unpackfs/main.py:479 msgid "The destination \"{}\" in the target system is not a directory" msgstr "De bestemming \"{}\" in het doelsysteem is niet een map" + +#: src/modules/displaymanager/main.py:526 +msgid "Cannot write KDM configuration file" +msgstr "Schrijven naar het KDM-configuratiebestand is mislukt " + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "KDM-configuratiebestand {!s} bestaat niet." + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "Schrijven naar het LXDM-configuratiebestand is mislukt" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "Het KDM-configuratiebestand {!s} bestaat niet" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "Schrijven naar het LightDM-configuratiebestand is mislukt" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "Het LightDM-configuratiebestand {!s} bestaat niet" + +#: src/modules/displaymanager/main.py:747 +msgid "Cannot configure LightDM" +msgstr "Kon LightDM niet configureren" + +#: src/modules/displaymanager/main.py:748 +msgid "No LightDM greeter installed." +msgstr "Geen LightDM begroeter geïnstalleerd" + +#: src/modules/displaymanager/main.py:779 +msgid "Cannot write SLIM configuration file" +msgstr "Schrijven naar het SLIM-configuratiebestand is mislukt" + +#: src/modules/displaymanager/main.py:780 +msgid "SLIM config file {!s} does not exist" +msgstr "Het SLIM-configuratiebestand {!s} bestaat niet" + +#: src/modules/displaymanager/main.py:906 +msgid "No display managers selected for the displaymanager module." +msgstr "Geen display managers geselecteerd voor de displaymanager module." + +#: src/modules/displaymanager/main.py:907 +msgid "" +"The displaymanagers list is empty or undefined in both globalstorage and " +"displaymanager.conf." +msgstr "" +"De lijst van display-managers is leeg, zowel in de configuratie " +"displaymanager.conf als de globale opslag." + +#: src/modules/displaymanager/main.py:989 +msgid "Display manager configuration was incomplete" +msgstr "Display manager configuratie was incompleet" + +#: src/modules/initcpiocfg/main.py:28 +msgid "Configuring mkinitcpio." +msgstr "Instellen van 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
{!s}
to use." +msgstr "" +"Geen hoofd mount punt is gegeven voor
{!s}
om te gebruiken. " + +#: src/modules/luksopenswaphookcfg/main.py:26 +msgid "Configuring encrypted swap." +msgstr "Instellen van versleutelde swap." + +#: src/modules/rawfs/main.py:26 +msgid "Installing data." +msgstr "Data aan het installeren." + +#: src/modules/services-openrc/main.py:29 +msgid "Configure OpenRC services" +msgstr "Configureer OpenRC services" + +#: src/modules/services-openrc/main.py:57 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "Kon service {name!s} niet toegoeven aan runlevel {level!s}." + +#: src/modules/services-openrc/main.py:59 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "Kon service {name!s} niet verwijderen van runlevel {level!s}." + +#: src/modules/services-openrc/main.py:61 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Onbekende serviceactie {arg!s} voor service {name!s} in " +"runlevel {level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"rc-update {arg!s} aanroeping in chroot resulteerde in foutcode " +"{num!s}." + +#: src/modules/services-openrc/main.py:101 +msgid "Target runlevel does not exist" +msgstr "Doel runlevel bestaat niet" + +#: src/modules/services-openrc/main.py:102 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"Het pad voor runlevel {level!s} is {path!s}, welke niet bestaat" + +#: src/modules/services-openrc/main.py:110 +msgid "Target service does not exist" +msgstr "Doelservice bestaat niet" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"Het pad voor service {level!s} is {path!s}, welke niet bestaat" + +#: src/modules/plymouthcfg/main.py:27 +msgid "Configure Plymouth theme" +msgstr "Plymouth thema instellen" + +#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 +#: src/modules/packages/main.py:69 +msgid "Install packages." +msgstr "Pakketten installeren." + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "Pakketten verwerken (%(count)d/ %(total)d)" + +#: src/modules/packages/main.py:62 +#, python-format +msgid "Installing one package." +msgid_plural "Installing %(num)d packages." +msgstr[0] "Pakket installeren." +msgstr[1] "%(num)d pakketten installeren." + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "Pakket verwijderen." +msgstr[1] "%(num)d pakketten verwijderen." + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/bootloader/main.py:43 +msgid "Install bootloader." +msgstr "Installeer 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 " +"
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "Instellen van hardwareklok" + +#: src/modules/mkinitfs/main.py:27 +msgid "Creating initramfs with mkinitfs." +msgstr "Een initramfs wordt aangemaakt met mkinitfs." + +#: src/modules/mkinitfs/main.py:49 +msgid "Failed to run mkinitfs on the target" +msgstr "Uitvoeren van mkinitfs in het doelsysteem is mislukt" + +#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50 +msgid "The exit code was {}" +msgstr "De afsluitcode was {}" + +#: src/modules/dracut/main.py:27 +msgid "Creating initramfs with dracut." +msgstr "initramfs aanmaken met dracut." + +#: src/modules/dracut/main.py:49 +msgid "Failed to run dracut on the target" +msgstr "Uitvoeren van dracut op het doel is mislukt" + +#: src/modules/initramfscfg/main.py:32 +msgid "Configuring initramfs." +msgstr "Instellen van initramfs." + +#: src/modules/openrcdmcryptcfg/main.py:26 +msgid "Configuring OpenRC dmcrypt service." +msgstr "Configureren van OpenRC dmcrypt service." + +#: src/modules/fstab/main.py:29 +msgid "Writing fstab." +msgstr "fstab schrijven." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
to use." +msgstr "" + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Voorbeeld Python-taak" + +#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 +#: src/modules/dummypython/main.py:94 +msgid "Dummy python step {}" +msgstr "Voorbeeld Python-stap {}" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "Taal en locatie instellen." + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "Netwerk-configuratie opslaan." diff --git a/lang/python/pl/LC_MESSAGES/python.po b/lang/python/pl/LC_MESSAGES/python.po index 20e0ff151..3085d44af 100644 --- a/lang/python/pl/LC_MESSAGES/python.po +++ b/lang/python/pl/LC_MESSAGES/python.po @@ -14,7 +14,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: Jacob B. , 2021\n" "Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n" @@ -24,293 +24,42 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: src/modules/bootloader/main.py:43 -msgid "Install bootloader." -msgstr "Instalacja programu rozruchowego." - -#: 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 " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "Nie można zapisać pliku konfiguracji KDM" - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "Plik konfiguracyjny KDM {!s} nie istnieje" - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "Nie można zapisać pliku konfiguracji LXDM" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "Plik konfiguracji LXDM {!s} nie istnieje" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "Nie można zapisać pliku konfiguracji LightDM" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "Plik konfiguracji LightDM {!s} nie istnieje" - -#: src/modules/displaymanager/main.py:747 -msgid "Cannot configure LightDM" -msgstr "Nie można skonfigurować LightDM" - -#: src/modules/displaymanager/main.py:748 -msgid "No LightDM greeter installed." -msgstr "Nie zainstalowano ekranu powitalnego LightDM." - -#: src/modules/displaymanager/main.py:779 -msgid "Cannot write SLIM configuration file" -msgstr "Nie można zapisać pliku konfiguracji SLIM" - -#: src/modules/displaymanager/main.py:780 -msgid "SLIM config file {!s} does not exist" -msgstr "Plik konfiguracji SLIM {!s} nie istnieje" - -#: src/modules/displaymanager/main.py:906 -msgid "No display managers selected for the displaymanager module." -msgstr "Brak wybranych menedżerów wyświetlania dla modułu displaymanager." - -#: src/modules/displaymanager/main.py:907 -msgid "" -"The displaymanagers list is empty or undefined in both globalstorage and " -"displaymanager.conf." -msgstr "" -"Lista displaymanagers jest pusta lub niezdefiniowana w globalstorage oraz " -"displaymanager.conf." - -#: src/modules/displaymanager/main.py:989 -msgid "Display manager configuration was incomplete" -msgstr "Konfiguracja menedżera wyświetlania była niekompletna" - -#: src/modules/dracut/main.py:27 -msgid "Creating initramfs with dracut." -msgstr "Tworzenie initramfs z dracut." - -#: src/modules/dracut/main.py:49 -msgid "Failed to run dracut on the target" -msgstr "Nie udało się włączyć dracut." - -#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50 -msgid "The exit code was {}" -msgstr "Kod wyjściowy to {}" - -#: src/modules/dummypython/main.py:35 -msgid "Dummy python job." -msgstr "Zadanie fikcyjne Python." - -#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 -#: src/modules/dummypython/main.py:94 -msgid "Dummy python step {}" -msgstr "Krok fikcyjny Python {}" - -#: src/modules/fstab/main.py:29 -msgid "Writing fstab." -msgstr "Zapisywanie 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 "Błąd konfiguracji" - -#: 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
{!s}
to use." -msgstr "Nie ma zdefiniowanych partycji dla
{!s}
do użytku." - -#: 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
{!s}
to use." -msgstr "" -"Nie znaleziono głównego punktu montowania dla
{!s}
do użycia." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "" - #: src/modules/grubcfg/main.py:28 msgid "Configure GRUB." msgstr "Konfiguracja GRUB." -#: src/modules/hwclock/main.py:26 -msgid "Setting hardware clock." -msgstr "Ustawianie zegara systemowego." - -#: src/modules/initcpiocfg/main.py:28 -msgid "Configuring mkinitcpio." -msgstr "Konfigurowanie mkinitcpio." - -#: src/modules/initramfscfg/main.py:32 -msgid "Configuring initramfs." -msgstr "Konfigurowanie initramfs." - -#: src/modules/localecfg/main.py:30 -msgid "Configuring locales." -msgstr "Konfigurowanie ustawień lokalnych." - -#: src/modules/luksopenswaphookcfg/main.py:26 -msgid "Configuring encrypted swap." -msgstr "Konfigurowanie zaszyfrowanej przestrzeni wymiany." - -#: src/modules/mkinitfs/main.py:27 -msgid "Creating initramfs with mkinitfs." -msgstr "Tworzenie initramfs z mkinitfs." - -#: src/modules/mkinitfs/main.py:49 -msgid "Failed to run mkinitfs on the target" -msgstr "Nie udało się włączyć mkinitfs." - #: src/modules/mount/main.py:30 msgid "Mounting partitions." msgstr "Montowanie partycji." -#: src/modules/networkcfg/main.py:28 -msgid "Saving network configuration." -msgstr "Zapisywanie konfiguracji sieci." +#: 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 "Błąd konfiguracji" -#: src/modules/openrcdmcryptcfg/main.py:26 -msgid "Configuring OpenRC dmcrypt service." -msgstr "Konfigurowanie usługi OpenRC dmcrypt." - -#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 -#: src/modules/packages/main.py:69 -msgid "Install packages." -msgstr "Zainstaluj pakiety." - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "Przetwarzanie pakietów (%(count)d / %(total)d)" - -#: src/modules/packages/main.py:62 -#, python-format -msgid "Installing one package." -msgid_plural "Installing %(num)d packages." -msgstr[0] "Instalowanie jednego pakietu." -msgstr[1] "Instalowanie %(num)d pakietów." -msgstr[2] "Instalowanie %(num)d pakietów." -msgstr[3] "Instalowanie%(num)d pakietów." - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "Usuwanie jednego pakietu." -msgstr[1] "Usuwanie %(num)d pakietów." -msgstr[2] "Usuwanie %(num)d pakietów." -msgstr[3] "Usuwanie %(num)d pakietów." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/plymouthcfg/main.py:27 -msgid "Configure Plymouth theme" -msgstr "Konfiguracja motywu Plymouth" - -#: src/modules/rawfs/main.py:26 -msgid "Installing data." -msgstr "Instalowanie danych." - -#: src/modules/services-openrc/main.py:29 -msgid "Configure OpenRC services" -msgstr "Konfiguracja usług OpenRC" - -#: src/modules/services-openrc/main.py:57 -msgid "Cannot add service {name!s} to run-level {level!s}." -msgstr "" -"Nie udało się dodać usługi {name!s} do poziomu-uruchamiania {level!s}." - -#: src/modules/services-openrc/main.py:59 -msgid "Cannot remove service {name!s} from run-level {level!s}." -msgstr "" -"Nie udało się usunąć usługi {name!s} do poziomu-uruchamiania {level!s}." - -#: src/modules/services-openrc/main.py:61 -msgid "" -"Unknown service-action {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Nieznana akcja-usługi {arg!s} dla usługi {name!s} w poziomie-" -"uruchamiania {level!s}." - -#: src/modules/services-openrc/main.py:93 -#: src/modules/services-systemd/main.py:59 -msgid "Cannot modify service" -msgstr "Nie można zmodyfikować usług" - -#: src/modules/services-openrc/main.py:94 -msgid "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"rc-update {arg!s} wezwanie w chroot zwróciło kod błędu {num!s}." - -#: src/modules/services-openrc/main.py:101 -msgid "Target runlevel does not exist" -msgstr "Docelowy poziom odtwarzania nie istnieje" - -#: src/modules/services-openrc/main.py:102 -msgid "" -"The path for runlevel {level!s} is {path!s}, which does not " -"exist." -msgstr "" -"Ścieżka do poziomu odtwarzania {level!s} to {path!s}, nie " -"istnieje." - -#: src/modules/services-openrc/main.py:110 -msgid "Target service does not exist" -msgstr "Docelowa usługa nie istnieje" - -#: src/modules/services-openrc/main.py:111 -msgid "" -"The path for service {name!s} is {path!s}, which does not " -"exist." -msgstr "Ścieżka do usługi {name!s} to {path!s}, nie istnieje." +#: 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
{!s}
to use." +msgstr "Nie ma zdefiniowanych partycji dla
{!s}
do użytku." #: src/modules/services-systemd/main.py:26 msgid "Configure systemd services" msgstr "Konfiguracja usług systemd" +#: src/modules/services-systemd/main.py:59 +#: src/modules/services-openrc/main.py:93 +msgid "Cannot modify service" +msgstr "Nie można zmodyfikować usług" + #: src/modules/services-systemd/main.py:60 msgid "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -412,3 +161,256 @@ msgstr "" #: src/modules/unpackfs/main.py:479 msgid "The destination \"{}\" in the target system is not a directory" msgstr "Miejsce docelowe \"{}\" w docelowym systemie nie jest katalogiem" + +#: src/modules/displaymanager/main.py:526 +msgid "Cannot write KDM configuration file" +msgstr "Nie można zapisać pliku konfiguracji KDM" + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "Plik konfiguracyjny KDM {!s} nie istnieje" + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "Nie można zapisać pliku konfiguracji LXDM" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "Plik konfiguracji LXDM {!s} nie istnieje" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "Nie można zapisać pliku konfiguracji LightDM" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "Plik konfiguracji LightDM {!s} nie istnieje" + +#: src/modules/displaymanager/main.py:747 +msgid "Cannot configure LightDM" +msgstr "Nie można skonfigurować LightDM" + +#: src/modules/displaymanager/main.py:748 +msgid "No LightDM greeter installed." +msgstr "Nie zainstalowano ekranu powitalnego LightDM." + +#: src/modules/displaymanager/main.py:779 +msgid "Cannot write SLIM configuration file" +msgstr "Nie można zapisać pliku konfiguracji SLIM" + +#: src/modules/displaymanager/main.py:780 +msgid "SLIM config file {!s} does not exist" +msgstr "Plik konfiguracji SLIM {!s} nie istnieje" + +#: src/modules/displaymanager/main.py:906 +msgid "No display managers selected for the displaymanager module." +msgstr "Brak wybranych menedżerów wyświetlania dla modułu displaymanager." + +#: src/modules/displaymanager/main.py:907 +msgid "" +"The displaymanagers list is empty or undefined in both globalstorage and " +"displaymanager.conf." +msgstr "" +"Lista displaymanagers jest pusta lub niezdefiniowana w globalstorage oraz " +"displaymanager.conf." + +#: src/modules/displaymanager/main.py:989 +msgid "Display manager configuration was incomplete" +msgstr "Konfiguracja menedżera wyświetlania była niekompletna" + +#: src/modules/initcpiocfg/main.py:28 +msgid "Configuring mkinitcpio." +msgstr "Konfigurowanie 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
{!s}
to use." +msgstr "" +"Nie znaleziono głównego punktu montowania dla
{!s}
do użycia." + +#: src/modules/luksopenswaphookcfg/main.py:26 +msgid "Configuring encrypted swap." +msgstr "Konfigurowanie zaszyfrowanej przestrzeni wymiany." + +#: src/modules/rawfs/main.py:26 +msgid "Installing data." +msgstr "Instalowanie danych." + +#: src/modules/services-openrc/main.py:29 +msgid "Configure OpenRC services" +msgstr "Konfiguracja usług OpenRC" + +#: src/modules/services-openrc/main.py:57 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" +"Nie udało się dodać usługi {name!s} do poziomu-uruchamiania {level!s}." + +#: src/modules/services-openrc/main.py:59 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" +"Nie udało się usunąć usługi {name!s} do poziomu-uruchamiania {level!s}." + +#: src/modules/services-openrc/main.py:61 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Nieznana akcja-usługi {arg!s} dla usługi {name!s} w poziomie-" +"uruchamiania {level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"rc-update {arg!s} wezwanie w chroot zwróciło kod błędu {num!s}." + +#: src/modules/services-openrc/main.py:101 +msgid "Target runlevel does not exist" +msgstr "Docelowy poziom odtwarzania nie istnieje" + +#: src/modules/services-openrc/main.py:102 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"Ścieżka do poziomu odtwarzania {level!s} to {path!s}, nie " +"istnieje." + +#: src/modules/services-openrc/main.py:110 +msgid "Target service does not exist" +msgstr "Docelowa usługa nie istnieje" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "Ścieżka do usługi {name!s} to {path!s}, nie istnieje." + +#: src/modules/plymouthcfg/main.py:27 +msgid "Configure Plymouth theme" +msgstr "Konfiguracja motywu Plymouth" + +#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 +#: src/modules/packages/main.py:69 +msgid "Install packages." +msgstr "Zainstaluj pakiety." + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "Przetwarzanie pakietów (%(count)d / %(total)d)" + +#: src/modules/packages/main.py:62 +#, python-format +msgid "Installing one package." +msgid_plural "Installing %(num)d packages." +msgstr[0] "Instalowanie jednego pakietu." +msgstr[1] "Instalowanie %(num)d pakietów." +msgstr[2] "Instalowanie %(num)d pakietów." +msgstr[3] "Instalowanie%(num)d pakietów." + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "Usuwanie jednego pakietu." +msgstr[1] "Usuwanie %(num)d pakietów." +msgstr[2] "Usuwanie %(num)d pakietów." +msgstr[3] "Usuwanie %(num)d pakietów." + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/bootloader/main.py:43 +msgid "Install bootloader." +msgstr "Instalacja programu rozruchowego." + +#: 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 " +"
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "Ustawianie zegara systemowego." + +#: src/modules/mkinitfs/main.py:27 +msgid "Creating initramfs with mkinitfs." +msgstr "Tworzenie initramfs z mkinitfs." + +#: src/modules/mkinitfs/main.py:49 +msgid "Failed to run mkinitfs on the target" +msgstr "Nie udało się włączyć mkinitfs." + +#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50 +msgid "The exit code was {}" +msgstr "Kod wyjściowy to {}" + +#: src/modules/dracut/main.py:27 +msgid "Creating initramfs with dracut." +msgstr "Tworzenie initramfs z dracut." + +#: src/modules/dracut/main.py:49 +msgid "Failed to run dracut on the target" +msgstr "Nie udało się włączyć dracut." + +#: src/modules/initramfscfg/main.py:32 +msgid "Configuring initramfs." +msgstr "Konfigurowanie initramfs." + +#: src/modules/openrcdmcryptcfg/main.py:26 +msgid "Configuring OpenRC dmcrypt service." +msgstr "Konfigurowanie usługi OpenRC dmcrypt." + +#: src/modules/fstab/main.py:29 +msgid "Writing fstab." +msgstr "Zapisywanie fstab." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
to use." +msgstr "" + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Zadanie fikcyjne Python." + +#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 +#: src/modules/dummypython/main.py:94 +msgid "Dummy python step {}" +msgstr "Krok fikcyjny Python {}" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "Konfigurowanie ustawień lokalnych." + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "Zapisywanie konfiguracji sieci." diff --git a/lang/python/pt_BR/LC_MESSAGES/python.po b/lang/python/pt_BR/LC_MESSAGES/python.po index 5ae907daf..8a9f235b4 100644 --- a/lang/python/pt_BR/LC_MESSAGES/python.po +++ b/lang/python/pt_BR/LC_MESSAGES/python.po @@ -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: Guilherme Marçal Silva, 2020\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n" @@ -22,293 +22,42 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: src/modules/bootloader/main.py:43 -msgid "Install bootloader." -msgstr "Instalar 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 " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "Não foi possível gravar o arquivo de configuração do KDM" - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "O arquivo de configuração {!s} do KDM não existe" - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "Não foi possível gravar o arquivo de configuração do LXDM" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "O arquivo de configuração {!s} do LXDM não existe" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "Não foi possível gravar o arquivo de configuração do LightDM" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "O arquivo de configuração {!s} do LightDM não existe" - -#: src/modules/displaymanager/main.py:747 -msgid "Cannot configure LightDM" -msgstr "Não é possível configurar o LightDM" - -#: src/modules/displaymanager/main.py:748 -msgid "No LightDM greeter installed." -msgstr "Não há nenhuma tela de login do LightDM instalada." - -#: src/modules/displaymanager/main.py:779 -msgid "Cannot write SLIM configuration file" -msgstr "Não foi possível gravar o arquivo de configuração do SLIM" - -#: src/modules/displaymanager/main.py:780 -msgid "SLIM config file {!s} does not exist" -msgstr "O arquivo de configuração {!s} do SLIM não existe" - -#: src/modules/displaymanager/main.py:906 -msgid "No display managers selected for the displaymanager module." -msgstr "" -"Nenhum gerenciador de exibição selecionado para o módulo do displaymanager." - -#: src/modules/displaymanager/main.py:907 -msgid "" -"The displaymanagers list is empty or undefined in both globalstorage and " -"displaymanager.conf." -msgstr "" -"A lista de displaymanagers está vazia ou indefinida em ambos globalstorage e" -" displaymanager.conf." - -#: src/modules/displaymanager/main.py:989 -msgid "Display manager configuration was incomplete" -msgstr "A configuração do gerenciador de exibição está incompleta" - -#: src/modules/dracut/main.py:27 -msgid "Creating initramfs with dracut." -msgstr "Criando initramfs com dracut." - -#: src/modules/dracut/main.py:49 -msgid "Failed to run dracut on the target" -msgstr "Erro ao executar dracut no alvo" - -#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50 -msgid "The exit code was {}" -msgstr "O código de saída foi {}" - -#: src/modules/dummypython/main.py:35 -msgid "Dummy python job." -msgstr "Tarefa modelo python." - -#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 -#: src/modules/dummypython/main.py:94 -msgid "Dummy python step {}" -msgstr "Etapa modelo python {}" - -#: src/modules/fstab/main.py:29 -msgid "Writing fstab." -msgstr "Escrevendo 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 "Erro de Configuração." - -#: 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
{!s}
to use." -msgstr "Sem partições definidas para uso por
{!s}
." - -#: 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
{!s}
to use." -msgstr "" -"Nenhum ponto de montagem para o root fornecido para uso por
{!s}
." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "" - #: src/modules/grubcfg/main.py:28 msgid "Configure GRUB." msgstr "Configurar GRUB." -#: src/modules/hwclock/main.py:26 -msgid "Setting hardware clock." -msgstr "Configurando relógio de hardware." - -#: src/modules/initcpiocfg/main.py:28 -msgid "Configuring mkinitcpio." -msgstr "Configurando mkinitcpio." - -#: src/modules/initramfscfg/main.py:32 -msgid "Configuring initramfs." -msgstr "Configurando initramfs." - -#: src/modules/localecfg/main.py:30 -msgid "Configuring locales." -msgstr "Configurando locais." - -#: src/modules/luksopenswaphookcfg/main.py:26 -msgid "Configuring encrypted swap." -msgstr "Configurando swap encriptada." - -#: src/modules/mkinitfs/main.py:27 -msgid "Creating initramfs with mkinitfs." -msgstr "Criando initramfs com mkinitfs." - -#: src/modules/mkinitfs/main.py:49 -msgid "Failed to run mkinitfs on the target" -msgstr "Falha ao executar mkinitfs no alvo" - #: src/modules/mount/main.py:30 msgid "Mounting partitions." msgstr "Montando partições." -#: src/modules/networkcfg/main.py:28 -msgid "Saving network configuration." -msgstr "Salvando configuração de rede." +#: 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 "Erro de Configuração." -#: src/modules/openrcdmcryptcfg/main.py:26 -msgid "Configuring OpenRC dmcrypt service." -msgstr "Configurando serviço dmcrypt do OpenRC." - -#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 -#: src/modules/packages/main.py:69 -msgid "Install packages." -msgstr "Instalar pacotes." - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "Processando pacotes (%(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 um pacote." -msgstr[1] "Instalando %(num)d pacotes." - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "Removendo um pacote." -msgstr[1] "Removendo %(num)d pacotes." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/plymouthcfg/main.py:27 -msgid "Configure Plymouth theme" -msgstr "Configurar tema do Plymouth" - -#: src/modules/rawfs/main.py:26 -msgid "Installing data." -msgstr "Instalando os dados." - -#: src/modules/services-openrc/main.py:29 -msgid "Configure OpenRC services" -msgstr "Configurar serviços do OpenRC" - -#: src/modules/services-openrc/main.py:57 -msgid "Cannot add service {name!s} to run-level {level!s}." -msgstr "" -"Não é possível adicionar serviço {name!s} ao nível de execução {level!s}." - -#: src/modules/services-openrc/main.py:59 -msgid "Cannot remove service {name!s} from run-level {level!s}." -msgstr "" -"Não é possível remover serviço {name!s} do nível de execução {level!s}." - -#: src/modules/services-openrc/main.py:61 -msgid "" -"Unknown service-action {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Serviço de ação {arg!s} desconhecido para o serviço {name!s} no" -" nível de execução {level!s}." - -#: src/modules/services-openrc/main.py:93 -#: src/modules/services-systemd/main.py:59 -msgid "Cannot modify service" -msgstr "Não é possível modificar o serviço" - -#: src/modules/services-openrc/main.py:94 -msgid "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"Chamada rc-update {arg!s} no chroot retornou o código de erro " -"{num!s}." - -#: src/modules/services-openrc/main.py:101 -msgid "Target runlevel does not exist" -msgstr "O nível de execução de destino não existe" - -#: src/modules/services-openrc/main.py:102 -msgid "" -"The path for runlevel {level!s} is {path!s}, which does not " -"exist." -msgstr "" -"O caminho para o nível de execução {level!s} é {path!s}, o qual" -" não existe." - -#: src/modules/services-openrc/main.py:110 -msgid "Target service does not exist" -msgstr "O serviço de destino não existe" - -#: src/modules/services-openrc/main.py:111 -msgid "" -"The path for service {name!s} is {path!s}, which does not " -"exist." -msgstr "" -"O caminho para o serviço {name!s} é {path!s}, o qual não " -"existe." +#: 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
{!s}
to use." +msgstr "Sem partições definidas para uso por
{!s}
." #: src/modules/services-systemd/main.py:26 msgid "Configure systemd services" msgstr "Configurar serviços do systemd" +#: src/modules/services-systemd/main.py:59 +#: src/modules/services-openrc/main.py:93 +msgid "Cannot modify service" +msgstr "Não é possível modificar o serviço" + #: src/modules/services-systemd/main.py:60 msgid "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -405,3 +154,256 @@ msgstr "" #: src/modules/unpackfs/main.py:479 msgid "The destination \"{}\" in the target system is not a directory" msgstr "A destinação \"{}\" no sistema de destino não é um diretório" + +#: src/modules/displaymanager/main.py:526 +msgid "Cannot write KDM configuration file" +msgstr "Não foi possível gravar o arquivo de configuração do KDM" + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "O arquivo de configuração {!s} do KDM não existe" + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "Não foi possível gravar o arquivo de configuração do LXDM" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "O arquivo de configuração {!s} do LXDM não existe" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "Não foi possível gravar o arquivo de configuração do LightDM" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "O arquivo de configuração {!s} do LightDM não existe" + +#: src/modules/displaymanager/main.py:747 +msgid "Cannot configure LightDM" +msgstr "Não é possível configurar o LightDM" + +#: src/modules/displaymanager/main.py:748 +msgid "No LightDM greeter installed." +msgstr "Não há nenhuma tela de login do LightDM instalada." + +#: src/modules/displaymanager/main.py:779 +msgid "Cannot write SLIM configuration file" +msgstr "Não foi possível gravar o arquivo de configuração do SLIM" + +#: src/modules/displaymanager/main.py:780 +msgid "SLIM config file {!s} does not exist" +msgstr "O arquivo de configuração {!s} do SLIM não existe" + +#: src/modules/displaymanager/main.py:906 +msgid "No display managers selected for the displaymanager module." +msgstr "" +"Nenhum gerenciador de exibição selecionado para o módulo do displaymanager." + +#: src/modules/displaymanager/main.py:907 +msgid "" +"The displaymanagers list is empty or undefined in both globalstorage and " +"displaymanager.conf." +msgstr "" +"A lista de displaymanagers está vazia ou indefinida em ambos globalstorage e" +" displaymanager.conf." + +#: src/modules/displaymanager/main.py:989 +msgid "Display manager configuration was incomplete" +msgstr "A configuração do gerenciador de exibição está incompleta" + +#: 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
{!s}
to use." +msgstr "" +"Nenhum ponto de montagem para o root fornecido para uso por
{!s}
." + +#: src/modules/luksopenswaphookcfg/main.py:26 +msgid "Configuring encrypted swap." +msgstr "Configurando swap encriptada." + +#: src/modules/rawfs/main.py:26 +msgid "Installing data." +msgstr "Instalando os dados." + +#: src/modules/services-openrc/main.py:29 +msgid "Configure OpenRC services" +msgstr "Configurar serviços do OpenRC" + +#: src/modules/services-openrc/main.py:57 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" +"Não é possível adicionar serviço {name!s} ao nível de execução {level!s}." + +#: src/modules/services-openrc/main.py:59 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" +"Não é possível remover serviço {name!s} do nível de execução {level!s}." + +#: src/modules/services-openrc/main.py:61 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Serviço de ação {arg!s} desconhecido para o serviço {name!s} no" +" nível de execução {level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"Chamada rc-update {arg!s} no chroot retornou o código de erro " +"{num!s}." + +#: src/modules/services-openrc/main.py:101 +msgid "Target runlevel does not exist" +msgstr "O nível de execução de destino não existe" + +#: src/modules/services-openrc/main.py:102 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"O caminho para o nível de execução {level!s} é {path!s}, o qual" +" não existe." + +#: src/modules/services-openrc/main.py:110 +msgid "Target service does not exist" +msgstr "O serviço de destino não existe" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"O caminho para o serviço {name!s} é {path!s}, o qual não " +"existe." + +#: src/modules/plymouthcfg/main.py:27 +msgid "Configure Plymouth theme" +msgstr "Configurar tema do Plymouth" + +#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 +#: src/modules/packages/main.py:69 +msgid "Install packages." +msgstr "Instalar pacotes." + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "Processando pacotes (%(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 um pacote." +msgstr[1] "Instalando %(num)d pacotes." + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "Removendo um pacote." +msgstr[1] "Removendo %(num)d pacotes." + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/bootloader/main.py:43 +msgid "Install bootloader." +msgstr "Instalar 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 " +"
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "Configurando relógio de hardware." + +#: src/modules/mkinitfs/main.py:27 +msgid "Creating initramfs with mkinitfs." +msgstr "Criando initramfs com mkinitfs." + +#: src/modules/mkinitfs/main.py:49 +msgid "Failed to run mkinitfs on the target" +msgstr "Falha ao executar mkinitfs no alvo" + +#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50 +msgid "The exit code was {}" +msgstr "O código de saída foi {}" + +#: src/modules/dracut/main.py:27 +msgid "Creating initramfs with dracut." +msgstr "Criando initramfs com dracut." + +#: src/modules/dracut/main.py:49 +msgid "Failed to run dracut on the target" +msgstr "Erro ao executar dracut no alvo" + +#: src/modules/initramfscfg/main.py:32 +msgid "Configuring initramfs." +msgstr "Configurando initramfs." + +#: src/modules/openrcdmcryptcfg/main.py:26 +msgid "Configuring OpenRC dmcrypt service." +msgstr "Configurando serviço dmcrypt do OpenRC." + +#: src/modules/fstab/main.py:29 +msgid "Writing fstab." +msgstr "Escrevendo fstab." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
to use." +msgstr "" + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Tarefa modelo python." + +#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 +#: src/modules/dummypython/main.py:94 +msgid "Dummy python step {}" +msgstr "Etapa modelo python {}" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "Configurando locais." + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "Salvando configuração de rede." diff --git a/lang/python/pt_PT/LC_MESSAGES/python.po b/lang/python/pt_PT/LC_MESSAGES/python.po index 7f48c9a2e..66cabb331 100644 --- a/lang/python/pt_PT/LC_MESSAGES/python.po +++ b/lang/python/pt_PT/LC_MESSAGES/python.po @@ -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: Hugo Carvalho , 2021\n" "Language-Team: Portuguese (Portugal) (https://www.transifex.com/calamares/teams/20061/pt_PT/)\n" @@ -23,301 +23,42 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/bootloader/main.py:43 -msgid "Install bootloader." -msgstr "Instalar o carregador de arranque." - -#: src/modules/bootloader/main.py:502 -msgid "Bootloader installation error" -msgstr "Erro de instalação do carregador de arranque" - -#: src/modules/bootloader/main.py:503 -msgid "" -"The bootloader could not be installed. The installation command " -"
{!s}
returned error code {!s}." -msgstr "" -"Não foi possível instalar o carregador de arranque. O comando de instalação " -"
{!s}
apresentou o código de erro {!s}." - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "Não é possível gravar o ficheiro de configuração KDM" - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "O ficheiro de configuração do KDM {!s} não existe" - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "Não é possível gravar o ficheiro de configuração LXDM" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "O ficheiro de configuração do LXDM {!s} não existe" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "Não é possível gravar o ficheiro de configuração LightDM" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "O ficheiro de configuração do LightDM {!s} não existe" - -#: src/modules/displaymanager/main.py:747 -msgid "Cannot configure LightDM" -msgstr "Não é possível configurar o LightDM" - -#: src/modules/displaymanager/main.py:748 -msgid "No LightDM greeter installed." -msgstr "Nenhum ecrã de boas-vindas LightDM instalado." - -#: src/modules/displaymanager/main.py:779 -msgid "Cannot write SLIM configuration file" -msgstr "Não é possível gravar o ficheiro de configuração SLIM" - -#: src/modules/displaymanager/main.py:780 -msgid "SLIM config file {!s} does not exist" -msgstr "O ficheiro de configuração do SLIM {!s} não existe" - -#: src/modules/displaymanager/main.py:906 -msgid "No display managers selected for the displaymanager module." -msgstr "" -"Nenhum gestor de exibição selecionado para o módulo de gestor de exibição." - -#: src/modules/displaymanager/main.py:907 -msgid "" -"The displaymanagers list is empty or undefined in both globalstorage and " -"displaymanager.conf." -msgstr "" -"A lista de gestores de visualização está vazia ou indefinida tanto no " -"globalstorage como no displaymanager.conf." - -#: src/modules/displaymanager/main.py:989 -msgid "Display manager configuration was incomplete" -msgstr "A configuração do gestor de exibição estava incompleta" - -#: src/modules/dracut/main.py:27 -msgid "Creating initramfs with dracut." -msgstr "Criando o initramfs com o dracut." - -#: src/modules/dracut/main.py:49 -msgid "Failed to run dracut on the target" -msgstr "Falha ao executar o dracut no destino" - -#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50 -msgid "The exit code was {}" -msgstr "O código de saída foi {}" - -#: src/modules/dummypython/main.py:35 -msgid "Dummy python job." -msgstr "Tarefa 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 "Passo Dummy python {}" - -#: src/modules/fstab/main.py:29 -msgid "Writing fstab." -msgstr "A escrever o 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 "Erro de configuração" - -#: 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
{!s}
to use." -msgstr "Nenhuma partição está definida para
{!s}
usar." - -#: 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
{!s}
to use." -msgstr "Nenhum ponto de montagem root é fornecido para
{!s}
usar." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "" -"Não é dada nenhuma configuração
{!s}
para
{!s}
" -"utilizar." - #: src/modules/grubcfg/main.py:28 msgid "Configure GRUB." msgstr "Configurar o GRUB." -#: src/modules/hwclock/main.py:26 -msgid "Setting hardware clock." -msgstr "A definir o relógio do hardware." - -#: src/modules/initcpiocfg/main.py:28 -msgid "Configuring mkinitcpio." -msgstr "A configurar o mkintcpio." - -#: src/modules/initramfscfg/main.py:32 -msgid "Configuring initramfs." -msgstr "A configurar o initramfs." - -#: src/modules/localecfg/main.py:30 -msgid "Configuring locales." -msgstr "A configurar a localização." - -#: src/modules/luksopenswaphookcfg/main.py:26 -msgid "Configuring encrypted swap." -msgstr "Configurando a swap criptografada." - -#: src/modules/mkinitfs/main.py:27 -msgid "Creating initramfs with mkinitfs." -msgstr "A criar o initramfs com o mkinitfs." - -#: src/modules/mkinitfs/main.py:49 -msgid "Failed to run mkinitfs on the target" -msgstr "Falha ao executar o mkintfs no destino" - #: src/modules/mount/main.py:30 msgid "Mounting partitions." msgstr "A montar partições." -#: src/modules/networkcfg/main.py:28 -msgid "Saving network configuration." -msgstr "A guardar a configuração de rede." +#: 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 "Erro de configuração" -#: src/modules/openrcdmcryptcfg/main.py:26 -msgid "Configuring OpenRC dmcrypt service." -msgstr "A configurar o serviço OpenRC dmcrypt." - -#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 -#: src/modules/packages/main.py:69 -msgid "Install packages." -msgstr "Instalar pacotes." - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "A processar pacotes (%(count)d / %(total)d)" - -#: src/modules/packages/main.py:62 -#, python-format -msgid "Installing one package." -msgid_plural "Installing %(num)d packages." -msgstr[0] "A instalar um pacote." -msgstr[1] "A instalar %(num)d pacotes." - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "A remover um pacote." -msgstr[1] "A remover %(num)d pacotes." - -#: src/modules/packages/main.py:588 src/modules/packages/main.py:600 -#: src/modules/packages/main.py:628 -msgid "Package Manager error" -msgstr "Erro do gestor de pacotes" - -#: src/modules/packages/main.py:589 -msgid "" -"The package manager could not prepare updates. The command
{!s}
" -"returned error code {!s}." -msgstr "" -"O gestor de pacotes não conseguiu preparar atualizações. O comando " -"
{!s}
apresentou o código de erro {!s}." - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" -"O gestor de pacotes não conseguiu atualizar o sistema. O comando " -"
{!s}
apresentou o código de erro {!s}." - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "" -"O gestor de pacotes poderia fazer alterações ao sistema instalado. O comando" -"
{!s}
apresentou o código de erro {!s}." - -#: src/modules/plymouthcfg/main.py:27 -msgid "Configure Plymouth theme" -msgstr "Configurar tema do Plymouth" - -#: src/modules/rawfs/main.py:26 -msgid "Installing data." -msgstr "A instalar dados." - -#: src/modules/services-openrc/main.py:29 -msgid "Configure OpenRC services" -msgstr "Configurar serviços OpenRC" - -#: src/modules/services-openrc/main.py:57 -msgid "Cannot add service {name!s} to run-level {level!s}." -msgstr "" -"Não é possível adicionar o serviço {name!s} ao nível de execução {level!s}." - -#: src/modules/services-openrc/main.py:59 -msgid "Cannot remove service {name!s} from run-level {level!s}." -msgstr "" -"Não é possível remover o serviço {name!s} do nível de execução {level!s}." - -#: src/modules/services-openrc/main.py:61 -msgid "" -"Unknown service-action {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Serviço de ação desconhecido {arg!s} para serviço {name!s} em " -"nível de execução {level!s}." - -#: src/modules/services-openrc/main.py:93 -#: src/modules/services-systemd/main.py:59 -msgid "Cannot modify service" -msgstr "Não é possível modificar serviço" - -#: src/modules/services-openrc/main.py:94 -msgid "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"rc-update {arg!s} chamar pelo chroot retornou com código de " -"erro {num!s}." - -#: src/modules/services-openrc/main.py:101 -msgid "Target runlevel does not exist" -msgstr "O nível de execução do destino não existe" - -#: src/modules/services-openrc/main.py:102 -msgid "" -"The path for runlevel {level!s} is {path!s}, which does not " -"exist." -msgstr "" -"O caminho para o nível de execução {level!s} é {path!s}, que " -"não existe." - -#: src/modules/services-openrc/main.py:110 -msgid "Target service does not exist" -msgstr "O serviço do destino não existe" - -#: src/modules/services-openrc/main.py:111 -msgid "" -"The path for service {name!s} is {path!s}, which does not " -"exist." -msgstr "" -"O caminho para o serviço {name!s} é {path!s}, que não existe." +#: 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
{!s}
to use." +msgstr "Nenhuma partição está definida para
{!s}
usar." #: src/modules/services-systemd/main.py:26 msgid "Configure systemd services" msgstr "Configurar serviços systemd" +#: src/modules/services-systemd/main.py:59 +#: src/modules/services-openrc/main.py:93 +msgid "Cannot modify service" +msgstr "Não é possível modificar serviço" + #: src/modules/services-systemd/main.py:60 msgid "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -416,3 +157,262 @@ msgstr "" #: src/modules/unpackfs/main.py:479 msgid "The destination \"{}\" in the target system is not a directory" msgstr "O destino \"{}\" no sistema de destino não é um diretório" + +#: src/modules/displaymanager/main.py:526 +msgid "Cannot write KDM configuration file" +msgstr "Não é possível gravar o ficheiro de configuração KDM" + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "O ficheiro de configuração do KDM {!s} não existe" + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "Não é possível gravar o ficheiro de configuração LXDM" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "O ficheiro de configuração do LXDM {!s} não existe" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "Não é possível gravar o ficheiro de configuração LightDM" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "O ficheiro de configuração do LightDM {!s} não existe" + +#: src/modules/displaymanager/main.py:747 +msgid "Cannot configure LightDM" +msgstr "Não é possível configurar o LightDM" + +#: src/modules/displaymanager/main.py:748 +msgid "No LightDM greeter installed." +msgstr "Nenhum ecrã de boas-vindas LightDM instalado." + +#: src/modules/displaymanager/main.py:779 +msgid "Cannot write SLIM configuration file" +msgstr "Não é possível gravar o ficheiro de configuração SLIM" + +#: src/modules/displaymanager/main.py:780 +msgid "SLIM config file {!s} does not exist" +msgstr "O ficheiro de configuração do SLIM {!s} não existe" + +#: src/modules/displaymanager/main.py:906 +msgid "No display managers selected for the displaymanager module." +msgstr "" +"Nenhum gestor de exibição selecionado para o módulo de gestor de exibição." + +#: src/modules/displaymanager/main.py:907 +msgid "" +"The displaymanagers list is empty or undefined in both globalstorage and " +"displaymanager.conf." +msgstr "" +"A lista de gestores de visualização está vazia ou indefinida tanto no " +"globalstorage como no displaymanager.conf." + +#: src/modules/displaymanager/main.py:989 +msgid "Display manager configuration was incomplete" +msgstr "A configuração do gestor de exibição estava incompleta" + +#: src/modules/initcpiocfg/main.py:28 +msgid "Configuring mkinitcpio." +msgstr "A configurar o mkintcpio." + +#: 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
{!s}
to use." +msgstr "Nenhum ponto de montagem root é fornecido para
{!s}
usar." + +#: src/modules/luksopenswaphookcfg/main.py:26 +msgid "Configuring encrypted swap." +msgstr "Configurando a swap criptografada." + +#: src/modules/rawfs/main.py:26 +msgid "Installing data." +msgstr "A instalar dados." + +#: src/modules/services-openrc/main.py:29 +msgid "Configure OpenRC services" +msgstr "Configurar serviços OpenRC" + +#: src/modules/services-openrc/main.py:57 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" +"Não é possível adicionar o serviço {name!s} ao nível de execução {level!s}." + +#: src/modules/services-openrc/main.py:59 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" +"Não é possível remover o serviço {name!s} do nível de execução {level!s}." + +#: src/modules/services-openrc/main.py:61 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Serviço de ação desconhecido {arg!s} para serviço {name!s} em " +"nível de execução {level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"rc-update {arg!s} chamar pelo chroot retornou com código de " +"erro {num!s}." + +#: src/modules/services-openrc/main.py:101 +msgid "Target runlevel does not exist" +msgstr "O nível de execução do destino não existe" + +#: src/modules/services-openrc/main.py:102 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"O caminho para o nível de execução {level!s} é {path!s}, que " +"não existe." + +#: src/modules/services-openrc/main.py:110 +msgid "Target service does not exist" +msgstr "O serviço do destino não existe" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"O caminho para o serviço {name!s} é {path!s}, que não existe." + +#: src/modules/plymouthcfg/main.py:27 +msgid "Configure Plymouth theme" +msgstr "Configurar tema do Plymouth" + +#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 +#: src/modules/packages/main.py:69 +msgid "Install packages." +msgstr "Instalar pacotes." + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "A processar pacotes (%(count)d / %(total)d)" + +#: src/modules/packages/main.py:62 +#, python-format +msgid "Installing one package." +msgid_plural "Installing %(num)d packages." +msgstr[0] "A instalar um pacote." +msgstr[1] "A instalar %(num)d pacotes." + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "A remover um pacote." +msgstr[1] "A remover %(num)d pacotes." + +#: src/modules/packages/main.py:588 src/modules/packages/main.py:600 +#: src/modules/packages/main.py:628 +msgid "Package Manager error" +msgstr "Erro do gestor de pacotes" + +#: src/modules/packages/main.py:589 +msgid "" +"The package manager could not prepare updates. The command
{!s}
" +"returned error code {!s}." +msgstr "" +"O gestor de pacotes não conseguiu preparar atualizações. O comando " +"
{!s}
apresentou o código de erro {!s}." + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" returned error code {!s}." +msgstr "" +"O gestor de pacotes não conseguiu atualizar o sistema. O comando " +"
{!s}
apresentou o código de erro {!s}." + +#: src/modules/packages/main.py:629 +msgid "" +"The package manager could not make changes to the installed system. The " +"command
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/bootloader/main.py:43 +msgid "Install bootloader." +msgstr "Instalar o carregador de arranque." + +#: src/modules/bootloader/main.py:502 +msgid "Bootloader installation error" +msgstr "Erro de instalação do carregador de arranque" + +#: src/modules/bootloader/main.py:503 +msgid "" +"The bootloader could not be installed. The installation command " +"
{!s}
returned error code {!s}." +msgstr "" +"Não foi possível instalar o carregador de arranque. O comando de instalação " +"
{!s}
apresentou o código de erro {!s}." + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "A definir o relógio do hardware." + +#: src/modules/mkinitfs/main.py:27 +msgid "Creating initramfs with mkinitfs." +msgstr "A criar o initramfs com o mkinitfs." + +#: src/modules/mkinitfs/main.py:49 +msgid "Failed to run mkinitfs on the target" +msgstr "Falha ao executar o mkintfs no destino" + +#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50 +msgid "The exit code was {}" +msgstr "O código de saída foi {}" + +#: src/modules/dracut/main.py:27 +msgid "Creating initramfs with dracut." +msgstr "Criando o initramfs com o dracut." + +#: src/modules/dracut/main.py:49 +msgid "Failed to run dracut on the target" +msgstr "Falha ao executar o dracut no destino" + +#: src/modules/initramfscfg/main.py:32 +msgid "Configuring initramfs." +msgstr "A configurar o initramfs." + +#: src/modules/openrcdmcryptcfg/main.py:26 +msgid "Configuring OpenRC dmcrypt service." +msgstr "A configurar o serviço OpenRC dmcrypt." + +#: src/modules/fstab/main.py:29 +msgid "Writing fstab." +msgstr "A escrever o fstab." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
to use." +msgstr "" +"Não é dada nenhuma configuração
{!s}
para
{!s}
" +"utilizar." + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Tarefa 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 "Passo Dummy python {}" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "A configurar a localização." + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "A guardar a configuração de rede." diff --git a/lang/python/ro/LC_MESSAGES/python.po b/lang/python/ro/LC_MESSAGES/python.po index 0cddb0e9c..9affed1db 100644 --- a/lang/python/ro/LC_MESSAGES/python.po +++ b/lang/python/ro/LC_MESSAGES/python.po @@ -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: Sebastian Brici , 2018\n" "Language-Team: Romanian (https://www.transifex.com/calamares/teams/20061/ro/)\n" @@ -22,281 +22,42 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2: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 " -"
{!s}
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 "Job python fictiv." - -#: 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 "" - -#: 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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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 "Instalează pachetele." - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "Se procesează pachetele (%(count)d / %(total)d)" - -#: src/modules/packages/main.py:62 -#, python-format -msgid "Installing one package." -msgid_plural "Installing %(num)d packages." -msgstr[0] "Instalează un pachet." -msgstr[1] "Se instalează %(num)d pachete." -msgstr[2] "Se instalează %(num)d din pachete." - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "Se elimină un pachet." -msgstr[1] "Se elimină %(num)d pachet." -msgstr[2] "Se elimină %(num)d de pachete." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -387,3 +148,244 @@ 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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 "Instalează pachetele." + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "Se procesează pachetele (%(count)d / %(total)d)" + +#: src/modules/packages/main.py:62 +#, python-format +msgid "Installing one package." +msgid_plural "Installing %(num)d packages." +msgstr[0] "Instalează un pachet." +msgstr[1] "Se instalează %(num)d pachete." +msgstr[2] "Se instalează %(num)d din pachete." + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "Se elimină un pachet." +msgstr[1] "Se elimină %(num)d pachet." +msgstr[2] "Se elimină %(num)d de pachete." + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
to use." +msgstr "" + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Job python fictiv." + +#: 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 "" + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "" diff --git a/lang/python/ru/LC_MESSAGES/python.po b/lang/python/ru/LC_MESSAGES/python.po index 56f641f1a..06c62fbeb 100644 --- a/lang/python/ru/LC_MESSAGES/python.po +++ b/lang/python/ru/LC_MESSAGES/python.po @@ -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: ZIzA, 2020\n" "Language-Team: Russian (https://www.transifex.com/calamares/teams/20061/ru/)\n" @@ -22,283 +22,42 @@ msgstr "" "Language: ru\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 " -"
{!s}
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 "Создание 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 "" - -#: 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 "Запись 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
{!s}
to use." -msgstr "Не определены разделы для использования
{!S}
." - -#: 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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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 "" - -#: 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 "" - -#: 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] "Установка одного пакета." -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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 "" - -#: 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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
to use." +msgstr "Не определены разделы для использования
{!S}
." #: 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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -390,3 +149,246 @@ 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
{!s}
to use." +msgstr "" + +#: 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 "" + +#: 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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, which does not " +"exist." +msgstr "" + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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 "Создание 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
{!s}
configuration is given for
{!s}
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 "Сохранение настроек сети." diff --git a/lang/python/ru_RU/LC_MESSAGES/python.po b/lang/python/ru_RU/LC_MESSAGES/python.po index 85ccaac50..77ca09d20 100644 --- a/lang/python/ru_RU/LC_MESSAGES/python.po +++ b/lang/python/ru_RU/LC_MESSAGES/python.po @@ -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: 2017-08-09 10:34+0000\n" "Language-Team: Russian (Russia) (https://www.transifex.com/calamares/teams/20061/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -17,283 +17,42 @@ msgstr "" "Language: ru_RU\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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] "" -msgstr[2] "" -msgstr[3] "" - -#: 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] "" - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -384,3 +143,246 @@ 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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] "" +msgstr[2] "" +msgstr[3] "" + +#: 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] "" + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/si/LC_MESSAGES/python.po b/lang/python/si/LC_MESSAGES/python.po index 14373e73d..dc92f2203 100644 --- a/lang/python/si/LC_MESSAGES/python.po +++ b/lang/python/si/LC_MESSAGES/python.po @@ -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: 2017-08-09 10:34+0000\n" "Language-Team: Sinhala (https://www.transifex.com/calamares/teams/20061/si/)\n" "MIME-Version: 1.0\n" @@ -17,279 +17,42 @@ msgstr "" "Language: si\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -380,3 +143,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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/sk/LC_MESSAGES/python.po b/lang/python/sk/LC_MESSAGES/python.po index 466293383..12948a670 100644 --- a/lang/python/sk/LC_MESSAGES/python.po +++ b/lang/python/sk/LC_MESSAGES/python.po @@ -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: Dušan Kazik , 2020\n" "Language-Team: Slovak (https://www.transifex.com/calamares/teams/20061/sk/)\n" @@ -21,283 +21,42 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" -#: src/modules/bootloader/main.py:43 -msgid "Install bootloader." -msgstr "Inštalácia zavádzača." - -#: 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 " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "Nedá sa zapísať konfiguračný súbor správcu KDM" - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "Konfiguračný súbor správcu KDM {!s} neexistuje" - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "Nedá sa zapísať konfiguračný súbor správcu LXDM" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "Konfiguračný súbor správcu LXDM {!s} neexistuje" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "Nedá sa zapísať konfiguračný súbor správcu LightDM" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "Konfiguračný súbor správcu LightDM {!s} neexistuje" - -#: src/modules/displaymanager/main.py:747 -msgid "Cannot configure LightDM" -msgstr "Nedá s nakonfigurovať správca LightDM" - -#: src/modules/displaymanager/main.py:748 -msgid "No LightDM greeter installed." -msgstr "Nie je nainštalovaný žiadny vítací nástroj LightDM." - -#: src/modules/displaymanager/main.py:779 -msgid "Cannot write SLIM configuration file" -msgstr "Nedá sa zapísať konfiguračný súbor správcu SLIM" - -#: src/modules/displaymanager/main.py:780 -msgid "SLIM config file {!s} does not exist" -msgstr "Konfiguračný súbor správcu SLIM {!s} neexistuje" - -#: src/modules/displaymanager/main.py:906 -msgid "No display managers selected for the displaymanager module." -msgstr "Neboli vybraní žiadni správcovia zobrazenia pre modul 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 "Konfigurácia správcu zobrazenia nebola úplná" - -#: src/modules/dracut/main.py:27 -msgid "Creating initramfs with dracut." -msgstr "Vytváranie initramfs pomocou nástroja dracut." - -#: src/modules/dracut/main.py:49 -msgid "Failed to run dracut on the target" -msgstr "Zlyhalo spustenie nástroja dracut v cieli" - -#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50 -msgid "The exit code was {}" -msgstr "Kód skončenia bol {}" - -#: src/modules/dummypython/main.py:35 -msgid "Dummy python job." -msgstr "Fiktívna úloha jazyka python." - -#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 -#: src/modules/dummypython/main.py:94 -msgid "Dummy python step {}" -msgstr "Fiktívny krok {} jazyka python" - -#: src/modules/fstab/main.py:29 -msgid "Writing fstab." -msgstr "Zapisovanie 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 konfigurácie" - -#: 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
{!s}
to use." -msgstr "Nie sú určené žiadne oddiely na použitie pre
{!s}
." - -#: 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
{!s}
to use." -msgstr "Nie je zadaný žiadny bod pripojenia na použitie pre
{!s}
." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "" - #: src/modules/grubcfg/main.py:28 msgid "Configure GRUB." msgstr "Konfigurácia zavádzača GRUB." -#: src/modules/hwclock/main.py:26 -msgid "Setting hardware clock." -msgstr "Nastavovanie hardvérových hodín." - -#: src/modules/initcpiocfg/main.py:28 -msgid "Configuring mkinitcpio." -msgstr "Konfigurácia mkinitcpio." - -#: src/modules/initramfscfg/main.py:32 -msgid "Configuring initramfs." -msgstr "Konfigurácia initramfs." - -#: src/modules/localecfg/main.py:30 -msgid "Configuring locales." -msgstr "Konfigurácia miestnych nastavení." - -#: src/modules/luksopenswaphookcfg/main.py:26 -msgid "Configuring encrypted swap." -msgstr "Konfigurácia zašifrovaného odkladacieho priestoru." - -#: 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 "Pripájanie oddielov." -#: src/modules/networkcfg/main.py:28 -msgid "Saving network configuration." -msgstr "Ukladanie sieťovej konfigurácie." +#: 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 konfigurácie" -#: 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 "Inštalácia balíkov." - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "Spracovávajú sa balíky (%(count)d / %(total)d)" - -#: src/modules/packages/main.py:62 -#, python-format -msgid "Installing one package." -msgid_plural "Installing %(num)d packages." -msgstr[0] "Inštaluje sa jeden balík." -msgstr[1] "Inštalujú sa %(num)d balíky." -msgstr[2] "Inštaluje sa %(num)d balíkov." -msgstr[3] "Inštaluje sa %(num)d balíkov." - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "Odstraňuje sa jeden balík." -msgstr[1] "Odstraňujú sa %(num)d balíky." -msgstr[2] "Odstraňuje sa %(num)d balíkov." -msgstr[3] "Odstraňuje sa %(num)d balíkov." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/plymouthcfg/main.py:27 -msgid "Configure Plymouth theme" -msgstr "Konfigurácia motívu služby Plymouth" - -#: src/modules/rawfs/main.py:26 -msgid "Installing data." -msgstr "Inštalácia údajov." - -#: src/modules/services-openrc/main.py:29 -msgid "Configure OpenRC services" -msgstr "Konfigurácia služieb OpenRC" - -#: 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 {arg!s} 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 "Nedá sa upraviť služba" - -#: src/modules/services-openrc/main.py:94 -msgid "" -"rc-update {arg!s} 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 {path!s}, which does not " -"exist." -msgstr "" - -#: src/modules/services-openrc/main.py:110 -msgid "Target service does not exist" -msgstr "Cieľová služba neexistuje" - -#: src/modules/services-openrc/main.py:111 -msgid "" -"The path for service {name!s} is {path!s}, which does not " -"exist." -msgstr "Cesta k službe {name!s} je {path!s}, ale 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
{!s}
to use." +msgstr "Nie sú určené žiadne oddiely na použitie pre
{!s}
." #: src/modules/services-systemd/main.py:26 msgid "Configure systemd services" msgstr "Konfigurácia služieb systemd" +#: src/modules/services-systemd/main.py:59 +#: src/modules/services-openrc/main.py:93 +msgid "Cannot modify service" +msgstr "Nedá sa upraviť služba" + #: src/modules/services-systemd/main.py:60 msgid "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -392,3 +151,246 @@ msgstr "" #: src/modules/unpackfs/main.py:479 msgid "The destination \"{}\" in the target system is not a directory" msgstr "Cieľ \"{}\" v cieľovom systéme nie je adresárom" + +#: src/modules/displaymanager/main.py:526 +msgid "Cannot write KDM configuration file" +msgstr "Nedá sa zapísať konfiguračný súbor správcu KDM" + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "Konfiguračný súbor správcu KDM {!s} neexistuje" + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "Nedá sa zapísať konfiguračný súbor správcu LXDM" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "Konfiguračný súbor správcu LXDM {!s} neexistuje" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "Nedá sa zapísať konfiguračný súbor správcu LightDM" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "Konfiguračný súbor správcu LightDM {!s} neexistuje" + +#: src/modules/displaymanager/main.py:747 +msgid "Cannot configure LightDM" +msgstr "Nedá s nakonfigurovať správca LightDM" + +#: src/modules/displaymanager/main.py:748 +msgid "No LightDM greeter installed." +msgstr "Nie je nainštalovaný žiadny vítací nástroj LightDM." + +#: src/modules/displaymanager/main.py:779 +msgid "Cannot write SLIM configuration file" +msgstr "Nedá sa zapísať konfiguračný súbor správcu SLIM" + +#: src/modules/displaymanager/main.py:780 +msgid "SLIM config file {!s} does not exist" +msgstr "Konfiguračný súbor správcu SLIM {!s} neexistuje" + +#: src/modules/displaymanager/main.py:906 +msgid "No display managers selected for the displaymanager module." +msgstr "Neboli vybraní žiadni správcovia zobrazenia pre modul 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 "Konfigurácia správcu zobrazenia nebola úplná" + +#: src/modules/initcpiocfg/main.py:28 +msgid "Configuring mkinitcpio." +msgstr "Konfigurácia 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
{!s}
to use." +msgstr "Nie je zadaný žiadny bod pripojenia na použitie pre
{!s}
." + +#: src/modules/luksopenswaphookcfg/main.py:26 +msgid "Configuring encrypted swap." +msgstr "Konfigurácia zašifrovaného odkladacieho priestoru." + +#: src/modules/rawfs/main.py:26 +msgid "Installing data." +msgstr "Inštalácia údajov." + +#: src/modules/services-openrc/main.py:29 +msgid "Configure OpenRC services" +msgstr "Konfigurácia služieb OpenRC" + +#: 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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target service does not exist" +msgstr "Cieľová služba neexistuje" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "Cesta k službe {name!s} je {path!s}, ale neexistuje." + +#: src/modules/plymouthcfg/main.py:27 +msgid "Configure Plymouth theme" +msgstr "Konfigurácia motívu služby Plymouth" + +#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 +#: src/modules/packages/main.py:69 +msgid "Install packages." +msgstr "Inštalácia balíkov." + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "Spracovávajú sa balíky (%(count)d / %(total)d)" + +#: src/modules/packages/main.py:62 +#, python-format +msgid "Installing one package." +msgid_plural "Installing %(num)d packages." +msgstr[0] "Inštaluje sa jeden balík." +msgstr[1] "Inštalujú sa %(num)d balíky." +msgstr[2] "Inštaluje sa %(num)d balíkov." +msgstr[3] "Inštaluje sa %(num)d balíkov." + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "Odstraňuje sa jeden balík." +msgstr[1] "Odstraňujú sa %(num)d balíky." +msgstr[2] "Odstraňuje sa %(num)d balíkov." +msgstr[3] "Odstraňuje sa %(num)d balíkov." + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/bootloader/main.py:43 +msgid "Install bootloader." +msgstr "Inštalácia zavádzača." + +#: 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 " +"
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "Nastavovanie hardvérových hodín." + +#: 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 "Kód skončenia bol {}" + +#: src/modules/dracut/main.py:27 +msgid "Creating initramfs with dracut." +msgstr "Vytváranie initramfs pomocou nástroja dracut." + +#: src/modules/dracut/main.py:49 +msgid "Failed to run dracut on the target" +msgstr "Zlyhalo spustenie nástroja dracut v cieli" + +#: src/modules/initramfscfg/main.py:32 +msgid "Configuring initramfs." +msgstr "Konfigurácia initramfs." + +#: src/modules/openrcdmcryptcfg/main.py:26 +msgid "Configuring OpenRC dmcrypt service." +msgstr "" + +#: src/modules/fstab/main.py:29 +msgid "Writing fstab." +msgstr "Zapisovanie fstab." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
to use." +msgstr "" + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Fiktívna úloha jazyka python." + +#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 +#: src/modules/dummypython/main.py:94 +msgid "Dummy python step {}" +msgstr "Fiktívny krok {} jazyka python" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "Konfigurácia miestnych nastavení." + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "Ukladanie sieťovej konfigurácie." diff --git a/lang/python/sl/LC_MESSAGES/python.po b/lang/python/sl/LC_MESSAGES/python.po index cc41347c9..42abdc76b 100644 --- a/lang/python/sl/LC_MESSAGES/python.po +++ b/lang/python/sl/LC_MESSAGES/python.po @@ -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: 2017-08-09 10:34+0000\n" "Language-Team: Slovenian (https://www.transifex.com/calamares/teams/20061/sl/)\n" "MIME-Version: 1.0\n" @@ -17,283 +17,42 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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] "" -msgstr[2] "" -msgstr[3] "" - -#: 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] "" - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -384,3 +143,246 @@ 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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] "" +msgstr[2] "" +msgstr[3] "" + +#: 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] "" + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/sq/LC_MESSAGES/python.po b/lang/python/sq/LC_MESSAGES/python.po index 032742c21..e34ef08b7 100644 --- a/lang/python/sq/LC_MESSAGES/python.po +++ b/lang/python/sq/LC_MESSAGES/python.po @@ -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: Besnik Bleta , 2021\n" "Language-Team: Albanian (https://www.transifex.com/calamares/teams/20061/sq/)\n" @@ -21,299 +21,42 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/bootloader/main.py:43 -msgid "Install bootloader." -msgstr "Instalo ngarkues nisjesh." - -#: src/modules/bootloader/main.py:502 -msgid "Bootloader installation error" -msgstr "Gabim instalimi Ngarkuesi Nisësi" - -#: src/modules/bootloader/main.py:503 -msgid "" -"The bootloader could not be installed. The installation command " -"
{!s}
returned error code {!s}." -msgstr "" -"Ngarkuesi i nisësit s’u instalua dot. Urdhri i instalimit
{!s}
u " -"përgjigj me kod gabimi {!s}." - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "S’shkruhet dot kartelë formësimi KDM" - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "S’ekziston kartelë formësimi KDM {!s}" - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "S’shkruhet dot kartelë formësimi LXDM" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "S’ekziston kartelë formësimi LXDM {!s}" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "S’shkruhet dot kartelë formësimi LightDM" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "S’ekziston kartelë formësimi LightDM {!s}" - -#: src/modules/displaymanager/main.py:747 -msgid "Cannot configure LightDM" -msgstr "S’formësohet dot LightDM" - -#: src/modules/displaymanager/main.py:748 -msgid "No LightDM greeter installed." -msgstr "S’ka të instaluar përshëndetës LightDM." - -#: src/modules/displaymanager/main.py:779 -msgid "Cannot write SLIM configuration file" -msgstr "S’shkruhet dot kartelë formësimi SLIM" - -#: src/modules/displaymanager/main.py:780 -msgid "SLIM config file {!s} does not exist" -msgstr "S’ekziston kartelë formësimi SLIM {!s}" - -#: src/modules/displaymanager/main.py:906 -msgid "No display managers selected for the displaymanager module." -msgstr "S’janë përzgjedhur përgjegjës ekrani për modulin displaymanager." - -#: src/modules/displaymanager/main.py:907 -msgid "" -"The displaymanagers list is empty or undefined in both globalstorage and " -"displaymanager.conf." -msgstr "" -"Lista “displaymanagers” është e zbrazët ose e papërkufizuar për të dy " -"rastet, për “globalstorage” dhe për “displaymanager.conf”." - -#: src/modules/displaymanager/main.py:989 -msgid "Display manager configuration was incomplete" -msgstr "Formësimi i përgjegjësit të ekranit s’qe i plotë" - -#: src/modules/dracut/main.py:27 -msgid "Creating initramfs with dracut." -msgstr "Po krijohet initramfs me dracut." - -#: src/modules/dracut/main.py:49 -msgid "Failed to run dracut on the target" -msgstr "S’u arrit të xhirohej dracut mbi objektivin" - -#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50 -msgid "The exit code was {}" -msgstr "Kodi i daljes qe {}" - -#: src/modules/dummypython/main.py:35 -msgid "Dummy python job." -msgstr "Akt python dummy." - -#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 -#: src/modules/dummypython/main.py:94 -msgid "Dummy python step {}" -msgstr "Hap python {} dummy" - -#: src/modules/fstab/main.py:29 -msgid "Writing fstab." -msgstr "Po shkruhet 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 "Gabim Formësimi" - -#: 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
{!s}
to use." -msgstr "S’ka pjesë të përkufizuara për
{!s}
për t’u përdorur." - -#: 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
{!s}
to use." -msgstr "" -"S’është dhënë pikë montimi rrënjë për
{!s}
për t’u përdorur." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "" -"S’është dhënë formësim
{!s}
për t’u përdorur nga
{!s}
." - #: src/modules/grubcfg/main.py:28 msgid "Configure GRUB." msgstr "Formësoni GRUB-in." -#: src/modules/hwclock/main.py:26 -msgid "Setting hardware clock." -msgstr "Po caktohet ora hardware." - -#: src/modules/initcpiocfg/main.py:28 -msgid "Configuring mkinitcpio." -msgstr "Po formësohet mkinitcpio." - -#: src/modules/initramfscfg/main.py:32 -msgid "Configuring initramfs." -msgstr "Po formësohet initramfs." - -#: src/modules/localecfg/main.py:30 -msgid "Configuring locales." -msgstr "Po formësohen vendoret." - -#: src/modules/luksopenswaphookcfg/main.py:26 -msgid "Configuring encrypted swap." -msgstr "Po formësohet pjesë swap e fshehtëzuar." - -#: src/modules/mkinitfs/main.py:27 -msgid "Creating initramfs with mkinitfs." -msgstr "Po krijohet initramfs me mkinitfs." - -#: src/modules/mkinitfs/main.py:49 -msgid "Failed to run mkinitfs on the target" -msgstr "S’u arrit të xhirohej mkinitfs te objektivi" - #: src/modules/mount/main.py:30 msgid "Mounting partitions." msgstr "Po montohen pjesë." -#: src/modules/networkcfg/main.py:28 -msgid "Saving network configuration." -msgstr "Po ruhet formësimi i rrjetit." +#: 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 "Gabim Formësimi" -#: src/modules/openrcdmcryptcfg/main.py:26 -msgid "Configuring OpenRC dmcrypt service." -msgstr "Po formësohet shërbim OpenRC dmcrypt." - -#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 -#: src/modules/packages/main.py:69 -msgid "Install packages." -msgstr "Instalo paketa." - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "Po përpunohen paketat (%(count)d / %(total)d)" - -#: src/modules/packages/main.py:62 -#, python-format -msgid "Installing one package." -msgid_plural "Installing %(num)d packages." -msgstr[0] "Po instalohet një paketë." -msgstr[1] "Po instalohen %(num)d paketa." - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "Po hiqet një paketë." -msgstr[1] "Po hiqen %(num)d paketa." - -#: src/modules/packages/main.py:588 src/modules/packages/main.py:600 -#: src/modules/packages/main.py:628 -msgid "Package Manager error" -msgstr "Gabim Përgjegjësi Paketash" - -#: src/modules/packages/main.py:589 -msgid "" -"The package manager could not prepare updates. The command
{!s}
" -"returned error code {!s}." -msgstr "" -"Përgjegjësi i paketave s’përgatiti dot përditësime. Urdhri
{!s}
u" -" përgjigj me kod gabimi {!s}." - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" -"Përgjegjësi i paketave s’përditësoi dot sistemin. Urdhri
{!s}
u " -"përgjigj me kod gabimi {!s}." - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "" -"Përgjegjësi i paketave s’bëri dot ndryshime te sistemi i instaluar. Urdhri " -"
{!s}
u përgjigj me kod gabimi {!s}." - -#: src/modules/plymouthcfg/main.py:27 -msgid "Configure Plymouth theme" -msgstr "Formësoni temën Plimuth" - -#: src/modules/rawfs/main.py:26 -msgid "Installing data." -msgstr "Po instalohen të dhëna." - -#: src/modules/services-openrc/main.py:29 -msgid "Configure OpenRC services" -msgstr "Formësoni shërbime OpenRC" - -#: src/modules/services-openrc/main.py:57 -msgid "Cannot add service {name!s} to run-level {level!s}." -msgstr "S’shtohet dot shërbimi {name!s} te run-level {level!s}." - -#: src/modules/services-openrc/main.py:59 -msgid "Cannot remove service {name!s} from run-level {level!s}." -msgstr "S’hiqet dot shërbimi {name!s} nga run-level {level!s}." - -#: src/modules/services-openrc/main.py:61 -msgid "" -"Unknown service-action {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Service-action {arg!s} i panjohur për shërbimin {name!s} te " -"run-level {level!s}." - -#: src/modules/services-openrc/main.py:93 -#: src/modules/services-systemd/main.py:59 -msgid "Cannot modify service" -msgstr "S’modifikohet dot shërbimi" - -#: src/modules/services-openrc/main.py:94 -msgid "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"Thirrje rc-update {arg!s} në chroot u përgjigj me kod gabimi " -"{num!s}." - -#: src/modules/services-openrc/main.py:101 -msgid "Target runlevel does not exist" -msgstr "Runlevel-i i synuar nuk ekziston" - -#: src/modules/services-openrc/main.py:102 -msgid "" -"The path for runlevel {level!s} is {path!s}, which does not " -"exist." -msgstr "" -"Shtegu për runlevel {level!s} është {path!s}, i cili nuk " -"ekziston." - -#: src/modules/services-openrc/main.py:110 -msgid "Target service does not exist" -msgstr "Shërbimi i synuar nuk ekziston" - -#: src/modules/services-openrc/main.py:111 -msgid "" -"The path for service {name!s} is {path!s}, which does not " -"exist." -msgstr "" -"Shtegu për shërbimin {name!s} është {path!s}, i cili nuk " -"ekziston." +#: 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
{!s}
to use." +msgstr "S’ka pjesë të përkufizuara për
{!s}
për t’u përdorur." #: src/modules/services-systemd/main.py:26 msgid "Configure systemd services" msgstr "Formësoni shërbime systemd" +#: src/modules/services-systemd/main.py:59 +#: src/modules/services-openrc/main.py:93 +msgid "Cannot modify service" +msgstr "S’modifikohet dot shërbimi" + #: src/modules/services-systemd/main.py:60 msgid "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -411,3 +154,262 @@ msgstr "" #: src/modules/unpackfs/main.py:479 msgid "The destination \"{}\" in the target system is not a directory" msgstr "Destinacioni \"{}\" te sistemi i synuar s’është drejtori" + +#: src/modules/displaymanager/main.py:526 +msgid "Cannot write KDM configuration file" +msgstr "S’shkruhet dot kartelë formësimi KDM" + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "S’ekziston kartelë formësimi KDM {!s}" + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "S’shkruhet dot kartelë formësimi LXDM" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "S’ekziston kartelë formësimi LXDM {!s}" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "S’shkruhet dot kartelë formësimi LightDM" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "S’ekziston kartelë formësimi LightDM {!s}" + +#: src/modules/displaymanager/main.py:747 +msgid "Cannot configure LightDM" +msgstr "S’formësohet dot LightDM" + +#: src/modules/displaymanager/main.py:748 +msgid "No LightDM greeter installed." +msgstr "S’ka të instaluar përshëndetës LightDM." + +#: src/modules/displaymanager/main.py:779 +msgid "Cannot write SLIM configuration file" +msgstr "S’shkruhet dot kartelë formësimi SLIM" + +#: src/modules/displaymanager/main.py:780 +msgid "SLIM config file {!s} does not exist" +msgstr "S’ekziston kartelë formësimi SLIM {!s}" + +#: src/modules/displaymanager/main.py:906 +msgid "No display managers selected for the displaymanager module." +msgstr "S’janë përzgjedhur përgjegjës ekrani për modulin displaymanager." + +#: src/modules/displaymanager/main.py:907 +msgid "" +"The displaymanagers list is empty or undefined in both globalstorage and " +"displaymanager.conf." +msgstr "" +"Lista “displaymanagers” është e zbrazët ose e papërkufizuar për të dy " +"rastet, për “globalstorage” dhe për “displaymanager.conf”." + +#: src/modules/displaymanager/main.py:989 +msgid "Display manager configuration was incomplete" +msgstr "Formësimi i përgjegjësit të ekranit s’qe i plotë" + +#: src/modules/initcpiocfg/main.py:28 +msgid "Configuring mkinitcpio." +msgstr "Po formësohet 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
{!s}
to use." +msgstr "" +"S’është dhënë pikë montimi rrënjë për
{!s}
për t’u përdorur." + +#: src/modules/luksopenswaphookcfg/main.py:26 +msgid "Configuring encrypted swap." +msgstr "Po formësohet pjesë swap e fshehtëzuar." + +#: src/modules/rawfs/main.py:26 +msgid "Installing data." +msgstr "Po instalohen të dhëna." + +#: src/modules/services-openrc/main.py:29 +msgid "Configure OpenRC services" +msgstr "Formësoni shërbime OpenRC" + +#: src/modules/services-openrc/main.py:57 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "S’shtohet dot shërbimi {name!s} te run-level {level!s}." + +#: src/modules/services-openrc/main.py:59 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "S’hiqet dot shërbimi {name!s} nga run-level {level!s}." + +#: src/modules/services-openrc/main.py:61 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Service-action {arg!s} i panjohur për shërbimin {name!s} te " +"run-level {level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"Thirrje rc-update {arg!s} në chroot u përgjigj me kod gabimi " +"{num!s}." + +#: src/modules/services-openrc/main.py:101 +msgid "Target runlevel does not exist" +msgstr "Runlevel-i i synuar nuk ekziston" + +#: src/modules/services-openrc/main.py:102 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"Shtegu për runlevel {level!s} është {path!s}, i cili nuk " +"ekziston." + +#: src/modules/services-openrc/main.py:110 +msgid "Target service does not exist" +msgstr "Shërbimi i synuar nuk ekziston" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"Shtegu për shërbimin {name!s} është {path!s}, i cili nuk " +"ekziston." + +#: src/modules/plymouthcfg/main.py:27 +msgid "Configure Plymouth theme" +msgstr "Formësoni temën Plimuth" + +#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 +#: src/modules/packages/main.py:69 +msgid "Install packages." +msgstr "Instalo paketa." + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "Po përpunohen paketat (%(count)d / %(total)d)" + +#: src/modules/packages/main.py:62 +#, python-format +msgid "Installing one package." +msgid_plural "Installing %(num)d packages." +msgstr[0] "Po instalohet një paketë." +msgstr[1] "Po instalohen %(num)d paketa." + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "Po hiqet një paketë." +msgstr[1] "Po hiqen %(num)d paketa." + +#: src/modules/packages/main.py:588 src/modules/packages/main.py:600 +#: src/modules/packages/main.py:628 +msgid "Package Manager error" +msgstr "Gabim Përgjegjësi Paketash" + +#: src/modules/packages/main.py:589 +msgid "" +"The package manager could not prepare updates. The command
{!s}
" +"returned error code {!s}." +msgstr "" +"Përgjegjësi i paketave s’përgatiti dot përditësime. Urdhri
{!s}
u" +" përgjigj me kod gabimi {!s}." + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" returned error code {!s}." +msgstr "" +"Përgjegjësi i paketave s’përditësoi dot sistemin. Urdhri
{!s}
u " +"përgjigj me kod gabimi {!s}." + +#: src/modules/packages/main.py:629 +msgid "" +"The package manager could not make changes to the installed system. The " +"command
{!s}
returned error code {!s}." +msgstr "" +"Përgjegjësi i paketave s’bëri dot ndryshime te sistemi i instaluar. Urdhri " +"
{!s}
u përgjigj me kod gabimi {!s}." + +#: src/modules/bootloader/main.py:43 +msgid "Install bootloader." +msgstr "Instalo ngarkues nisjesh." + +#: src/modules/bootloader/main.py:502 +msgid "Bootloader installation error" +msgstr "Gabim instalimi Ngarkuesi Nisësi" + +#: src/modules/bootloader/main.py:503 +msgid "" +"The bootloader could not be installed. The installation command " +"
{!s}
returned error code {!s}." +msgstr "" +"Ngarkuesi i nisësit s’u instalua dot. Urdhri i instalimit
{!s}
u " +"përgjigj me kod gabimi {!s}." + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "Po caktohet ora hardware." + +#: src/modules/mkinitfs/main.py:27 +msgid "Creating initramfs with mkinitfs." +msgstr "Po krijohet initramfs me mkinitfs." + +#: src/modules/mkinitfs/main.py:49 +msgid "Failed to run mkinitfs on the target" +msgstr "S’u arrit të xhirohej mkinitfs te objektivi" + +#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50 +msgid "The exit code was {}" +msgstr "Kodi i daljes qe {}" + +#: src/modules/dracut/main.py:27 +msgid "Creating initramfs with dracut." +msgstr "Po krijohet initramfs me dracut." + +#: src/modules/dracut/main.py:49 +msgid "Failed to run dracut on the target" +msgstr "S’u arrit të xhirohej dracut mbi objektivin" + +#: src/modules/initramfscfg/main.py:32 +msgid "Configuring initramfs." +msgstr "Po formësohet initramfs." + +#: src/modules/openrcdmcryptcfg/main.py:26 +msgid "Configuring OpenRC dmcrypt service." +msgstr "Po formësohet shërbim OpenRC dmcrypt." + +#: src/modules/fstab/main.py:29 +msgid "Writing fstab." +msgstr "Po shkruhet fstab." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
to use." +msgstr "" +"S’është dhënë formësim
{!s}
për t’u përdorur nga
{!s}
." + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Akt python dummy." + +#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 +#: src/modules/dummypython/main.py:94 +msgid "Dummy python step {}" +msgstr "Hap python {} dummy" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "Po formësohen vendoret." + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "Po ruhet formësimi i rrjetit." diff --git a/lang/python/sr/LC_MESSAGES/python.po b/lang/python/sr/LC_MESSAGES/python.po index ce1a2ac0b..f581621a8 100644 --- a/lang/python/sr/LC_MESSAGES/python.po +++ b/lang/python/sr/LC_MESSAGES/python.po @@ -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: Slobodan Simić , 2020\n" "Language-Team: Serbian (https://www.transifex.com/calamares/teams/20061/sr/)\n" @@ -21,281 +21,42 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 " -"
{!s}
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 "Уписивање 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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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] "" -msgstr[2] "" - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -386,3 +147,244 @@ 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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] "" +msgstr[2] "" + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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 "Уписивање fstab." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
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 "Упис поставе мреже." diff --git a/lang/python/sr@latin/LC_MESSAGES/python.po b/lang/python/sr@latin/LC_MESSAGES/python.po index 805e0a31e..143777e54 100644 --- a/lang/python/sr@latin/LC_MESSAGES/python.po +++ b/lang/python/sr@latin/LC_MESSAGES/python.po @@ -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: 2017-08-09 10:34+0000\n" "Language-Team: Serbian (Latin) (https://www.transifex.com/calamares/teams/20061/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -17,281 +17,42 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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] "" -msgstr[2] "" - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -382,3 +143,244 @@ 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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] "" +msgstr[2] "" + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/sv/LC_MESSAGES/python.po b/lang/python/sv/LC_MESSAGES/python.po index 79b08ab0e..c0dba7b0b 100644 --- a/lang/python/sv/LC_MESSAGES/python.po +++ b/lang/python/sv/LC_MESSAGES/python.po @@ -6,16 +6,16 @@ # Translators: # Jan-Olof Svensson, 2019 # Tobias Olausson , 2020 -# Luna Jernberg , 2020 +# Luna Jernberg , 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: Luna Jernberg , 2020\n" +"Last-Translator: Luna Jernberg , 2021\n" "Language-Team: Swedish (https://www.transifex.com/calamares/teams/20061/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,289 +23,42 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/bootloader/main.py:43 -msgid "Install bootloader." -msgstr "Installera starthanterare." - -#: 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 " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "Misslyckades med att skriva KDM konfigurationsfil" - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "KDM konfigurationsfil {!s} existerar inte" - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "Misslyckades med att skriva LXDM konfigurationsfil" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "LXDM konfigurationsfil {!s} existerar inte" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "Misslyckades med att skriva LightDM konfigurationsfil" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "LightDM konfigurationsfil {!s} existerar inte" - -#: src/modules/displaymanager/main.py:747 -msgid "Cannot configure LightDM" -msgstr "Kunde inte konfigurera LightDM" - -#: src/modules/displaymanager/main.py:748 -msgid "No LightDM greeter installed." -msgstr "Ingen LightDM greeter installerad." - -#: src/modules/displaymanager/main.py:779 -msgid "Cannot write SLIM configuration file" -msgstr "Misslyckades med att SLIM konfigurationsfil" - -#: src/modules/displaymanager/main.py:780 -msgid "SLIM config file {!s} does not exist" -msgstr "SLIM konfigurationsfil {!s} existerar inte" - -#: src/modules/displaymanager/main.py:906 -msgid "No display managers selected for the displaymanager module." -msgstr "Ingen skärmhanterare vald för displaymanager modulen." - -#: src/modules/displaymanager/main.py:907 -msgid "" -"The displaymanagers list is empty or undefined in both globalstorage and " -"displaymanager.conf." -msgstr "" -"Skärmhanterar listan är tom eller odefinierad i både globalstorage och " -"displaymanager.conf." - -#: src/modules/displaymanager/main.py:989 -msgid "Display manager configuration was incomplete" -msgstr "Konfiguration för displayhanteraren var inkomplett" - -#: src/modules/dracut/main.py:27 -msgid "Creating initramfs with dracut." -msgstr "Skapar initramfs med dracut." - -#: src/modules/dracut/main.py:49 -msgid "Failed to run dracut on the target" -msgstr "Misslyckades att köra dracut på målet " - -#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50 -msgid "The exit code was {}" -msgstr "Felkoden var {}" - -#: src/modules/dummypython/main.py:35 -msgid "Dummy python job." -msgstr "Exempel python jobb" - -#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 -#: src/modules/dummypython/main.py:94 -msgid "Dummy python step {}" -msgstr "Exempel python steg {}" - -#: 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 "Konfigurationsfel" - -#: 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
{!s}
to use." -msgstr "Inga partitioner är definerade för
{!s}
att använda." - -#: 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
{!s}
to use." -msgstr "" -"Ingen root monteringspunkt är angiven för
{!s}
att använda." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "" - #: src/modules/grubcfg/main.py:28 msgid "Configure GRUB." msgstr "Konfigurera GRUB." -#: src/modules/hwclock/main.py:26 -msgid "Setting hardware clock." -msgstr "Ställer hårdvaruklockan." - -#: src/modules/initcpiocfg/main.py:28 -msgid "Configuring mkinitcpio." -msgstr "Konfigurerar mkinitcpio." - -#: src/modules/initramfscfg/main.py:32 -msgid "Configuring initramfs." -msgstr "Konfigurerar initramfs." - -#: src/modules/localecfg/main.py:30 -msgid "Configuring locales." -msgstr "Konfigurerar språkinställningar" - -#: src/modules/luksopenswaphookcfg/main.py:26 -msgid "Configuring encrypted swap." -msgstr "Konfigurerar krypterad swap." - -#: src/modules/mkinitfs/main.py:27 -msgid "Creating initramfs with mkinitfs." -msgstr "Skapar initramfs med mkinitfs." - -#: src/modules/mkinitfs/main.py:49 -msgid "Failed to run mkinitfs on the target" -msgstr "Misslyckades att köra mkinitfs på målet " - #: src/modules/mount/main.py:30 msgid "Mounting partitions." msgstr "Monterar partitioner." -#: src/modules/networkcfg/main.py:28 -msgid "Saving network configuration." -msgstr "Sparar nätverkskonfiguration." +#: 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 "Konfigurationsfel" -#: src/modules/openrcdmcryptcfg/main.py:26 -msgid "Configuring OpenRC dmcrypt service." -msgstr "Konfigurerar OpenRC dmcrypt tjänst." - -#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 -#: src/modules/packages/main.py:69 -msgid "Install packages." -msgstr "Installera paket." - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "Bearbetar paket (%(count)d / %(total)d)" - -#: src/modules/packages/main.py:62 -#, python-format -msgid "Installing one package." -msgid_plural "Installing %(num)d packages." -msgstr[0] "Installerar ett paket." -msgstr[1] "Installerar %(num)d paket." - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "Tar bort ett paket." -msgstr[1] "Tar bort %(num)d paket." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/plymouthcfg/main.py:27 -msgid "Configure Plymouth theme" -msgstr "Konfigurera Plymouth tema" - -#: src/modules/rawfs/main.py:26 -msgid "Installing data." -msgstr "Installerar data." - -#: src/modules/services-openrc/main.py:29 -msgid "Configure OpenRC services" -msgstr "Konfigurera OpenRC tjänster" - -#: src/modules/services-openrc/main.py:57 -msgid "Cannot add service {name!s} to run-level {level!s}." -msgstr "Kan inte lägga till tjänsten {name!s} till körnivå {level!s}." - -#: src/modules/services-openrc/main.py:59 -msgid "Cannot remove service {name!s} from run-level {level!s}." -msgstr "Kan inte ta bort tjänsten {name!s} från körnivå {level!s}." - -#: src/modules/services-openrc/main.py:61 -msgid "" -"Unknown service-action {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Okänt tjänst-anrop {arg!s}för tjänsten {name!s} i körnivå " -"{level!s}." - -#: src/modules/services-openrc/main.py:93 -#: src/modules/services-systemd/main.py:59 -msgid "Cannot modify service" -msgstr "Kunde inte modifiera tjänst" - -#: src/modules/services-openrc/main.py:94 -msgid "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"Anrop till rc-update {arg!s} i chroot returnerade felkod " -"{num!s}." - -#: src/modules/services-openrc/main.py:101 -msgid "Target runlevel does not exist" -msgstr "Begärd körnivå existerar inte" - -#: src/modules/services-openrc/main.py:102 -msgid "" -"The path for runlevel {level!s} is {path!s}, which does not " -"exist." -msgstr "" -"Sökvägen till körnivå {level!s} är {path!s}, som inte " -"existerar." - -#: src/modules/services-openrc/main.py:110 -msgid "Target service does not exist" -msgstr "Begärd tjänst existerar inte" - -#: src/modules/services-openrc/main.py:111 -msgid "" -"The path for service {name!s} is {path!s}, which does not " -"exist." -msgstr "" -"Sökvägen för tjänst {name!s} är {path!s}, som inte existerar." +#: 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
{!s}
to use." +msgstr "Inga partitioner är definerade för
{!s}
att använda." #: src/modules/services-systemd/main.py:26 msgid "Configure systemd services" msgstr "Konfigurera systemd tjänster" +#: src/modules/services-systemd/main.py:59 +#: src/modules/services-openrc/main.py:93 +msgid "Cannot modify service" +msgstr "Kunde inte modifiera tjänst" + #: src/modules/services-systemd/main.py:60 msgid "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -402,3 +155,262 @@ msgstr "" #: src/modules/unpackfs/main.py:479 msgid "The destination \"{}\" in the target system is not a directory" msgstr "Destinationen \"{}\" på målsystemet är inte en katalog" + +#: src/modules/displaymanager/main.py:526 +msgid "Cannot write KDM configuration file" +msgstr "Misslyckades med att skriva KDM konfigurationsfil" + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "KDM konfigurationsfil {!s} existerar inte" + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "Misslyckades med att skriva LXDM konfigurationsfil" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "LXDM konfigurationsfil {!s} existerar inte" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "Misslyckades med att skriva LightDM konfigurationsfil" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "LightDM konfigurationsfil {!s} existerar inte" + +#: src/modules/displaymanager/main.py:747 +msgid "Cannot configure LightDM" +msgstr "Kunde inte konfigurera LightDM" + +#: src/modules/displaymanager/main.py:748 +msgid "No LightDM greeter installed." +msgstr "Ingen LightDM greeter installerad." + +#: src/modules/displaymanager/main.py:779 +msgid "Cannot write SLIM configuration file" +msgstr "Misslyckades med att SLIM konfigurationsfil" + +#: src/modules/displaymanager/main.py:780 +msgid "SLIM config file {!s} does not exist" +msgstr "SLIM konfigurationsfil {!s} existerar inte" + +#: src/modules/displaymanager/main.py:906 +msgid "No display managers selected for the displaymanager module." +msgstr "Ingen skärmhanterare vald för displaymanager modulen." + +#: src/modules/displaymanager/main.py:907 +msgid "" +"The displaymanagers list is empty or undefined in both globalstorage and " +"displaymanager.conf." +msgstr "" +"Skärmhanterar listan är tom eller odefinierad i både globalstorage och " +"displaymanager.conf." + +#: src/modules/displaymanager/main.py:989 +msgid "Display manager configuration was incomplete" +msgstr "Konfiguration för displayhanteraren var inkomplett" + +#: src/modules/initcpiocfg/main.py:28 +msgid "Configuring mkinitcpio." +msgstr "Konfigurerar 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
{!s}
to use." +msgstr "" +"Ingen root monteringspunkt är angiven för
{!s}
att använda." + +#: src/modules/luksopenswaphookcfg/main.py:26 +msgid "Configuring encrypted swap." +msgstr "Konfigurerar krypterad swap." + +#: src/modules/rawfs/main.py:26 +msgid "Installing data." +msgstr "Installerar data." + +#: src/modules/services-openrc/main.py:29 +msgid "Configure OpenRC services" +msgstr "Konfigurera OpenRC tjänster" + +#: src/modules/services-openrc/main.py:57 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "Kan inte lägga till tjänsten {name!s} till körnivå {level!s}." + +#: src/modules/services-openrc/main.py:59 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "Kan inte ta bort tjänsten {name!s} från körnivå {level!s}." + +#: src/modules/services-openrc/main.py:61 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Okänt tjänst-anrop {arg!s}för tjänsten {name!s} i körnivå " +"{level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"Anrop till rc-update {arg!s} i chroot returnerade felkod " +"{num!s}." + +#: src/modules/services-openrc/main.py:101 +msgid "Target runlevel does not exist" +msgstr "Begärd körnivå existerar inte" + +#: src/modules/services-openrc/main.py:102 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"Sökvägen till körnivå {level!s} är {path!s}, som inte " +"existerar." + +#: src/modules/services-openrc/main.py:110 +msgid "Target service does not exist" +msgstr "Begärd tjänst existerar inte" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"Sökvägen för tjänst {name!s} är {path!s}, som inte existerar." + +#: src/modules/plymouthcfg/main.py:27 +msgid "Configure Plymouth theme" +msgstr "Konfigurera Plymouth tema" + +#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 +#: src/modules/packages/main.py:69 +msgid "Install packages." +msgstr "Installera paket." + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "Bearbetar paket (%(count)d / %(total)d)" + +#: src/modules/packages/main.py:62 +#, python-format +msgid "Installing one package." +msgid_plural "Installing %(num)d packages." +msgstr[0] "Installerar ett paket." +msgstr[1] "Installerar %(num)d paket." + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "Tar bort ett paket." +msgstr[1] "Tar bort %(num)d paket." + +#: src/modules/packages/main.py:588 src/modules/packages/main.py:600 +#: src/modules/packages/main.py:628 +msgid "Package Manager error" +msgstr "Pakethanterare fel" + +#: src/modules/packages/main.py:589 +msgid "" +"The package manager could not prepare updates. The command
{!s}
" +"returned error code {!s}." +msgstr "" +"Pakethanteraren kunde inte förbereda uppdateringar kommandot
{!s}
" +" returnerade felkod {!s}." + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" returned error code {!s}." +msgstr "" +"Pakethanteraren kunde inte uppdatera systemet. kommandot
{!s}
" +"returnerade felkod {!s}." + +#: src/modules/packages/main.py:629 +msgid "" +"The package manager could not make changes to the installed system. The " +"command
{!s}
returned error code {!s}." +msgstr "" +"Pakethanteraren kunde inte göra ändringar till det installerade systemet. " +"kommandot
{!s}
returnerade felkod {!s}." + +#: src/modules/bootloader/main.py:43 +msgid "Install bootloader." +msgstr "Installera starthanterare." + +#: src/modules/bootloader/main.py:502 +msgid "Bootloader installation error" +msgstr "Starthanterare installationsfel" + +#: src/modules/bootloader/main.py:503 +msgid "" +"The bootloader could not be installed. The installation command " +"
{!s}
returned error code {!s}." +msgstr "" +"Starthanterare kunde inte installeras. Installationskommandot " +"
{!s}
returnerade felkod {!s}." + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "Ställer hårdvaruklockan." + +#: src/modules/mkinitfs/main.py:27 +msgid "Creating initramfs with mkinitfs." +msgstr "Skapar initramfs med mkinitfs." + +#: src/modules/mkinitfs/main.py:49 +msgid "Failed to run mkinitfs on the target" +msgstr "Misslyckades att köra mkinitfs på målet " + +#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50 +msgid "The exit code was {}" +msgstr "Felkoden var {}" + +#: src/modules/dracut/main.py:27 +msgid "Creating initramfs with dracut." +msgstr "Skapar initramfs med dracut." + +#: src/modules/dracut/main.py:49 +msgid "Failed to run dracut on the target" +msgstr "Misslyckades att köra dracut på målet " + +#: src/modules/initramfscfg/main.py:32 +msgid "Configuring initramfs." +msgstr "Konfigurerar initramfs." + +#: src/modules/openrcdmcryptcfg/main.py:26 +msgid "Configuring OpenRC dmcrypt service." +msgstr "Konfigurerar OpenRC dmcrypt tjänst." + +#: src/modules/fstab/main.py:29 +msgid "Writing fstab." +msgstr "Skriver fstab." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
to use." +msgstr "" +"Ingen
{!s}
konfiguration är angiven för
{!s}
att " +"använda. " + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Exempel python jobb" + +#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 +#: src/modules/dummypython/main.py:94 +msgid "Dummy python step {}" +msgstr "Exempel python steg {}" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "Konfigurerar språkinställningar" + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "Sparar nätverkskonfiguration." diff --git a/lang/python/te/LC_MESSAGES/python.po b/lang/python/te/LC_MESSAGES/python.po index ec04917b8..35ad32465 100644 --- a/lang/python/te/LC_MESSAGES/python.po +++ b/lang/python/te/LC_MESSAGES/python.po @@ -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: 2017-08-09 10:34+0000\n" "Language-Team: Telugu (https://www.transifex.com/calamares/teams/20061/te/)\n" "MIME-Version: 1.0\n" @@ -17,279 +17,42 @@ msgstr "" "Language: te\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -380,3 +143,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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/tg/LC_MESSAGES/python.po b/lang/python/tg/LC_MESSAGES/python.po index 8227f4264..bc2691193 100644 --- a/lang/python/tg/LC_MESSAGES/python.po +++ b/lang/python/tg/LC_MESSAGES/python.po @@ -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: Victor Ibragimov , 2020\n" "Language-Team: Tajik (https://www.transifex.com/calamares/teams/20061/tg/)\n" @@ -21,289 +21,42 @@ msgstr "" "Language: tg\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 " -"
{!s}
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 "" -"Рӯйхати displaymanagers ҳам дар 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 "Вазифаи амсилаи 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
{!s}
to use." -msgstr "Ягон қисми диск барои истифодаи
{!s}
муайян карда нашуд." - -#: 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
{!s}
to use." -msgstr "Нуқтаи васли реша (root) барои истифодаи
{!s}
дода нашуд." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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 "Эҷодкунии 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 баста." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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} барои run-level {level!s} илова карда намешавад." - -#: src/modules/services-openrc/main.py:59 -msgid "Cannot remove service {name!s} from run-level {level!s}." -msgstr "Хидмати {name!s} аз run-level {level!s} тоза карда намешавад." - -#: src/modules/services-openrc/main.py:61 -msgid "" -"Unknown service-action {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Хидмати амалии {arg!s} барои хидмати {name!s} дар run-level " -"{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 "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"Дархости rc-update {arg!s} дар chroot рамзи хатои {num!s}-ро ба" -" вуҷуд овард." - -#: 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 {path!s}, which does not " -"exist." -msgstr "" -"Масир барои runlevel {level!s} аз {path!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 {path!s}, which does not " -"exist." -msgstr "" -"Масир барои хидмати {name!s} аз {path!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
{!s}
to use." +msgstr "Ягон қисми диск барои истифодаи
{!s}
муайян карда нашуд." #: 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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -402,3 +155,252 @@ 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 "" +"Рӯйхати displaymanagers ҳам дар 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
{!s}
to use." +msgstr "Нуқтаи васли реша (root) барои истифодаи
{!s}
дода нашуд." + +#: 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 "Хидмати {name!s} барои run-level {level!s} илова карда намешавад." + +#: src/modules/services-openrc/main.py:59 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "Хидмати {name!s} аз run-level {level!s} тоза карда намешавад." + +#: src/modules/services-openrc/main.py:61 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Хидмати амалии {arg!s} барои хидмати {name!s} дар run-level " +"{level!s} номаълум аст." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"Дархости rc-update {arg!s} дар chroot рамзи хатои {num!s}-ро ба" +" вуҷуд овард." + +#: 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 {path!s}, which does not " +"exist." +msgstr "" +"Масир барои runlevel {level!s} аз {path!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 {path!s}, which does not " +"exist." +msgstr "" +"Масир барои хидмати {name!s} аз {path!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 баста." + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "Нигоҳдории танзимоти шабака." diff --git a/lang/python/th/LC_MESSAGES/python.po b/lang/python/th/LC_MESSAGES/python.po index 5a9d718cc..e17496846 100644 --- a/lang/python/th/LC_MESSAGES/python.po +++ b/lang/python/th/LC_MESSAGES/python.po @@ -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: 2017-08-09 10:34+0000\n" "Language-Team: Thai (https://www.transifex.com/calamares/teams/20061/th/)\n" "MIME-Version: 1.0\n" @@ -17,277 +17,42 @@ msgstr "" "Language: th\n" "Plural-Forms: nplurals=1; plural=0;\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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] "" - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "" - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -378,3 +143,240 @@ 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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] "" + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "" + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/tr_TR/LC_MESSAGES/python.po b/lang/python/tr_TR/LC_MESSAGES/python.po index 745fe2ea5..c1884715f 100644 --- a/lang/python/tr_TR/LC_MESSAGES/python.po +++ b/lang/python/tr_TR/LC_MESSAGES/python.po @@ -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: Demiray Muhterem , 2020\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/calamares/teams/20061/tr_TR/)\n" @@ -22,285 +22,42 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: src/modules/bootloader/main.py:43 -msgid "Install bootloader." -msgstr "Önyükleyici kuruluyor" - -#: 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 " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "KDM yapılandırma dosyası yazılamıyor" - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "KDM yapılandırma dosyası {!s} mevcut değil" - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "LXDM yapılandırma dosyası yazılamıyor" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "LXDM yapılandırma dosyası {!s} mevcut değil" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "LightDM yapılandırma dosyası yazılamıyor" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "LightDM yapılandırma dosyası {!s} mevcut değil" - -#: src/modules/displaymanager/main.py:747 -msgid "Cannot configure LightDM" -msgstr "LightDM yapılandırılamıyor" - -#: src/modules/displaymanager/main.py:748 -msgid "No LightDM greeter installed." -msgstr "LightDM karşılama yüklü değil." - -#: src/modules/displaymanager/main.py:779 -msgid "Cannot write SLIM configuration file" -msgstr "SLIM yapılandırma dosyası yazılamıyor" - -#: src/modules/displaymanager/main.py:780 -msgid "SLIM config file {!s} does not exist" -msgstr "SLIM yapılandırma dosyası {!s} mevcut değil" - -#: src/modules/displaymanager/main.py:906 -msgid "No display managers selected for the displaymanager module." -msgstr "Ekran yöneticisi modülü için ekran yöneticisi seçilmedi." - -#: src/modules/displaymanager/main.py:907 -msgid "" -"The displaymanagers list is empty or undefined in both globalstorage and " -"displaymanager.conf." -msgstr "" -"Displaymanagers listesi hem globalstorage hem de displaymanager.conf'ta boş " -"veya tanımsız." - -#: src/modules/displaymanager/main.py:989 -msgid "Display manager configuration was incomplete" -msgstr "Ekran yöneticisi yapılandırma işi tamamlanamadı" - -#: src/modules/dracut/main.py:27 -msgid "Creating initramfs with dracut." -msgstr "Dracut ile initramfs oluşturuluyor." - -#: src/modules/dracut/main.py:49 -msgid "Failed to run dracut on the target" -msgstr "Hedef üzerinde dracut çalıştırılamadı" - -#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50 -msgid "The exit code was {}" -msgstr "Çıkış kodu {} idi" - -#: 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 "Fstab dosyasına yazılıyor." - -#: 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 "Yapılandırma Hatası" - -#: 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
{!s}
to use." -msgstr "
{!s}
kullanması için hiçbir bölüm tanımlanmadı." - -#: 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
{!s}
to use." -msgstr "
{!s}
kullanması için kök bağlama noktası verilmedi." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "" - #: src/modules/grubcfg/main.py:28 msgid "Configure GRUB." msgstr "GRUB'u yapılandır." -#: src/modules/hwclock/main.py:26 -msgid "Setting hardware clock." -msgstr "Donanım saati ayarlanıyor." - -#: src/modules/initcpiocfg/main.py:28 -msgid "Configuring mkinitcpio." -msgstr "Mkinitcpio yapılandırılıyor." - -#: src/modules/initramfscfg/main.py:32 -msgid "Configuring initramfs." -msgstr "Initramfs yapılandırılıyor." - -#: src/modules/localecfg/main.py:30 -msgid "Configuring locales." -msgstr "Sistem yerelleri yapılandırılıyor." - -#: src/modules/luksopenswaphookcfg/main.py:26 -msgid "Configuring encrypted swap." -msgstr "Şifreli takas alanı yapılandırılıyor." - -#: src/modules/mkinitfs/main.py:27 -msgid "Creating initramfs with mkinitfs." -msgstr "Mkinitfs ile initramfs oluşturuluyor." - -#: src/modules/mkinitfs/main.py:49 -msgid "Failed to run mkinitfs on the target" -msgstr "Hedefte mkinitfs çalıştırılamadı" - #: src/modules/mount/main.py:30 msgid "Mounting partitions." msgstr "Disk bölümlemeleri bağlanıyor." -#: src/modules/networkcfg/main.py:28 -msgid "Saving network configuration." -msgstr "Ağ yapılandırması kaydediliyor." +#: 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 "Yapılandırma Hatası" -#: src/modules/openrcdmcryptcfg/main.py:26 -msgid "Configuring OpenRC dmcrypt service." -msgstr "OpenRC dmcrypt hizmeti yapılandırılıyor." - -#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 -#: src/modules/packages/main.py:69 -msgid "Install packages." -msgstr "Paketleri yükle" - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "Paketler işleniyor (%(count)d / %(total)d)" - -#: src/modules/packages/main.py:62 -#, python-format -msgid "Installing one package." -msgid_plural "Installing %(num)d packages." -msgstr[0] "%(num)d paket yükleniyor" -msgstr[1] "%(num)d paket yükleniyor" - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "%(num)d paket kaldırılıyor." -msgstr[1] "%(num)d paket kaldırılıyor." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/plymouthcfg/main.py:27 -msgid "Configure Plymouth theme" -msgstr "Plymouth temasını yapılandır" - -#: src/modules/rawfs/main.py:26 -msgid "Installing data." -msgstr "Veri yükleniyor." - -#: src/modules/services-openrc/main.py:29 -msgid "Configure OpenRC services" -msgstr " OpenRC servislerini yapılandır" - -#: src/modules/services-openrc/main.py:57 -msgid "Cannot add service {name!s} to run-level {level!s}." -msgstr "{name!s} hizmeti, {level!s} çalışma düzeyine ekleyemiyor." - -#: src/modules/services-openrc/main.py:59 -msgid "Cannot remove service {name!s} from run-level {level!s}." -msgstr "{name!s} hizmeti {level!s} çalışma düzeyinden kaldırılamıyor." - -#: src/modules/services-openrc/main.py:61 -msgid "" -"Unknown service-action {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Çalışma düzeyinde {level!s} hizmetinde {name!s} servisi için bilinmeyen " -"hizmet eylemi {arg!s}." - -#: src/modules/services-openrc/main.py:93 -#: src/modules/services-systemd/main.py:59 -msgid "Cannot modify service" -msgstr "Hizmet değiştirilemiyor" - -#: src/modules/services-openrc/main.py:94 -msgid "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -" rc-update {arg!s} çağrısında chroot {num!s} hata kodunu " -"döndürdü." - -#: src/modules/services-openrc/main.py:101 -msgid "Target runlevel does not exist" -msgstr "Hedef çalışma seviyesi mevcut değil" - -#: src/modules/services-openrc/main.py:102 -msgid "" -"The path for runlevel {level!s} is {path!s}, which does not " -"exist." -msgstr "Runlevel {level!s} yolu, mevcut olmayan {path!s} 'dir." - -#: src/modules/services-openrc/main.py:110 -msgid "Target service does not exist" -msgstr "Hedef hizmet mevcut değil" - -#: src/modules/services-openrc/main.py:111 -msgid "" -"The path for service {name!s} is {path!s}, which does not " -"exist." -msgstr "{name!s} hizmetinin yolu {path!s}, ki mevcut değil." +#: 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
{!s}
to use." +msgstr "
{!s}
kullanması için hiçbir bölüm tanımlanmadı." #: src/modules/services-systemd/main.py:26 msgid "Configure systemd services" msgstr "Systemd hizmetlerini yapılandır" +#: src/modules/services-systemd/main.py:59 +#: src/modules/services-openrc/main.py:93 +msgid "Cannot modify service" +msgstr "Hizmet değiştirilemiyor" + #: src/modules/services-systemd/main.py:60 msgid "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -397,3 +154,248 @@ msgstr "" #: src/modules/unpackfs/main.py:479 msgid "The destination \"{}\" in the target system is not a directory" msgstr "Hedef sistemdeki \"{}\" hedefi bir dizin değil" + +#: src/modules/displaymanager/main.py:526 +msgid "Cannot write KDM configuration file" +msgstr "KDM yapılandırma dosyası yazılamıyor" + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "KDM yapılandırma dosyası {!s} mevcut değil" + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "LXDM yapılandırma dosyası yazılamıyor" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "LXDM yapılandırma dosyası {!s} mevcut değil" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "LightDM yapılandırma dosyası yazılamıyor" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "LightDM yapılandırma dosyası {!s} mevcut değil" + +#: src/modules/displaymanager/main.py:747 +msgid "Cannot configure LightDM" +msgstr "LightDM yapılandırılamıyor" + +#: src/modules/displaymanager/main.py:748 +msgid "No LightDM greeter installed." +msgstr "LightDM karşılama yüklü değil." + +#: src/modules/displaymanager/main.py:779 +msgid "Cannot write SLIM configuration file" +msgstr "SLIM yapılandırma dosyası yazılamıyor" + +#: src/modules/displaymanager/main.py:780 +msgid "SLIM config file {!s} does not exist" +msgstr "SLIM yapılandırma dosyası {!s} mevcut değil" + +#: src/modules/displaymanager/main.py:906 +msgid "No display managers selected for the displaymanager module." +msgstr "Ekran yöneticisi modülü için ekran yöneticisi seçilmedi." + +#: src/modules/displaymanager/main.py:907 +msgid "" +"The displaymanagers list is empty or undefined in both globalstorage and " +"displaymanager.conf." +msgstr "" +"Displaymanagers listesi hem globalstorage hem de displaymanager.conf'ta boş " +"veya tanımsız." + +#: src/modules/displaymanager/main.py:989 +msgid "Display manager configuration was incomplete" +msgstr "Ekran yöneticisi yapılandırma işi tamamlanamadı" + +#: src/modules/initcpiocfg/main.py:28 +msgid "Configuring mkinitcpio." +msgstr "Mkinitcpio yapılandırılıyor." + +#: 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
{!s}
to use." +msgstr "
{!s}
kullanması için kök bağlama noktası verilmedi." + +#: src/modules/luksopenswaphookcfg/main.py:26 +msgid "Configuring encrypted swap." +msgstr "Şifreli takas alanı yapılandırılıyor." + +#: src/modules/rawfs/main.py:26 +msgid "Installing data." +msgstr "Veri yükleniyor." + +#: src/modules/services-openrc/main.py:29 +msgid "Configure OpenRC services" +msgstr " OpenRC servislerini yapılandır" + +#: src/modules/services-openrc/main.py:57 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "{name!s} hizmeti, {level!s} çalışma düzeyine ekleyemiyor." + +#: src/modules/services-openrc/main.py:59 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "{name!s} hizmeti {level!s} çalışma düzeyinden kaldırılamıyor." + +#: src/modules/services-openrc/main.py:61 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Çalışma düzeyinde {level!s} hizmetinde {name!s} servisi için bilinmeyen " +"hizmet eylemi {arg!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +" rc-update {arg!s} çağrısında chroot {num!s} hata kodunu " +"döndürdü." + +#: src/modules/services-openrc/main.py:101 +msgid "Target runlevel does not exist" +msgstr "Hedef çalışma seviyesi mevcut değil" + +#: src/modules/services-openrc/main.py:102 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "Runlevel {level!s} yolu, mevcut olmayan {path!s} 'dir." + +#: src/modules/services-openrc/main.py:110 +msgid "Target service does not exist" +msgstr "Hedef hizmet mevcut değil" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "{name!s} hizmetinin yolu {path!s}, ki mevcut değil." + +#: src/modules/plymouthcfg/main.py:27 +msgid "Configure Plymouth theme" +msgstr "Plymouth temasını yapılandır" + +#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 +#: src/modules/packages/main.py:69 +msgid "Install packages." +msgstr "Paketleri yükle" + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "Paketler işleniyor (%(count)d / %(total)d)" + +#: src/modules/packages/main.py:62 +#, python-format +msgid "Installing one package." +msgid_plural "Installing %(num)d packages." +msgstr[0] "%(num)d paket yükleniyor" +msgstr[1] "%(num)d paket yükleniyor" + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "%(num)d paket kaldırılıyor." +msgstr[1] "%(num)d paket kaldırılıyor." + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/bootloader/main.py:43 +msgid "Install bootloader." +msgstr "Önyükleyici kuruluyor" + +#: 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 " +"
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "Donanım saati ayarlanıyor." + +#: src/modules/mkinitfs/main.py:27 +msgid "Creating initramfs with mkinitfs." +msgstr "Mkinitfs ile initramfs oluşturuluyor." + +#: src/modules/mkinitfs/main.py:49 +msgid "Failed to run mkinitfs on the target" +msgstr "Hedefte mkinitfs çalıştırılamadı" + +#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50 +msgid "The exit code was {}" +msgstr "Çıkış kodu {} idi" + +#: src/modules/dracut/main.py:27 +msgid "Creating initramfs with dracut." +msgstr "Dracut ile initramfs oluşturuluyor." + +#: src/modules/dracut/main.py:49 +msgid "Failed to run dracut on the target" +msgstr "Hedef üzerinde dracut çalıştırılamadı" + +#: src/modules/initramfscfg/main.py:32 +msgid "Configuring initramfs." +msgstr "Initramfs yapılandırılıyor." + +#: src/modules/openrcdmcryptcfg/main.py:26 +msgid "Configuring OpenRC dmcrypt service." +msgstr "OpenRC dmcrypt hizmeti yapılandırılıyor." + +#: src/modules/fstab/main.py:29 +msgid "Writing fstab." +msgstr "Fstab dosyasına yazılıyor." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
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 step {}" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "Sistem yerelleri yapılandırılıyor." + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "Ağ yapılandırması kaydediliyor." diff --git a/lang/python/uk/LC_MESSAGES/python.po b/lang/python/uk/LC_MESSAGES/python.po index 1cbc379aa..d4ef292bd 100644 --- a/lang/python/uk/LC_MESSAGES/python.po +++ b/lang/python/uk/LC_MESSAGES/python.po @@ -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: Yuri Chornoivan , 2021\n" "Language-Team: Ukrainian (https://www.transifex.com/calamares/teams/20061/uk/)\n" @@ -23,303 +23,42 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (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 " -"
{!s}
returned error code {!s}." -msgstr "" -"Не вдалося встановити завантажувач. Програмою для встановлення " -"
{!s}
повернуто код помилки {!s}." - -#: 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 "" -"Список засобів керування дисплеєм є порожнім або невизначеним у " -"bothglobalstorage та 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 "Фіктивне завдання 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
{!s}
to use." -msgstr "Не визначено розділів для використання
{!s}
." - -#: 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
{!s}
to use." -msgstr "" -"Не вказано кореневої точки монтування для використання у
{!s}
." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "" -"Не надано налаштувань
{!s}
для використання у
{!s}
." - #: 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 "Створення 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 "Налаштовуємо службу dmcrypt OpenRC." - -#: 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] "Встановлюємо %(num)d пакунок." -msgstr[1] "Встановлюємо %(num)d пакунки." -msgstr[2] "Встановлюємо %(num)d пакунків." -msgstr[3] "Встановлюємо один пакунок." - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "Вилучаємо %(num)d пакунок." -msgstr[1] "Вилучаємо %(num)d пакунки." -msgstr[2] "Вилучаємо %(num)d пакунків." -msgstr[3] "Вилучаємо один пакунок." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" -"Засобу керування пакунками не вдалося приготувати оновлення. Програмою " -"
{!s}
повернуто код помилки {!s}." - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" -"Засобу керування пакунками не вдалося оновити систему. Програмою " -"
{!s}
повернуто код помилки {!s}." - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "" -"Засобу керування пакунками не вдалося внести зміну до встановленої системи. " -"Програмою
{!s}
повернуто код помилки {!s}." - -#: 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 {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Невідома дія зі службою {arg!s} для служби {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 "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"Унаслідок виконання виклику rc-update {arg!s} 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 {path!s}, which does not " -"exist." -msgstr "" -"Шляхом до рівня запуску {level!s} вказано {path!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 {path!s}, which does not " -"exist." -msgstr "" -"Шляхом до служби {name!s} вказано {path!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
{!s}
to use." +msgstr "Не визначено розділів для використання
{!s}
." #: 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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -421,3 +160,266 @@ 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 "" +"Список засобів керування дисплеєм є порожнім або невизначеним у " +"bothglobalstorage та 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
{!s}
to use." +msgstr "" +"Не вказано кореневої точки монтування для використання у
{!s}
." + +#: 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 "Не вдалося додати службу {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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Невідома дія зі службою {arg!s} для служби {name!s} на рівні " +"запуску {level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"Унаслідок виконання виклику rc-update {arg!s} 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 {path!s}, which does not " +"exist." +msgstr "" +"Шляхом до рівня запуску {level!s} вказано {path!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 {path!s}, which does not " +"exist." +msgstr "" +"Шляхом до служби {name!s} вказано {path!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] "Встановлюємо %(num)d пакунок." +msgstr[1] "Встановлюємо %(num)d пакунки." +msgstr[2] "Встановлюємо %(num)d пакунків." +msgstr[3] "Встановлюємо один пакунок." + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "Вилучаємо %(num)d пакунок." +msgstr[1] "Вилучаємо %(num)d пакунки." +msgstr[2] "Вилучаємо %(num)d пакунків." +msgstr[3] "Вилучаємо один пакунок." + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" +"Засобу керування пакунками не вдалося приготувати оновлення. Програмою " +"
{!s}
повернуто код помилки {!s}." + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" returned error code {!s}." +msgstr "" +"Засобу керування пакунками не вдалося оновити систему. Програмою " +"
{!s}
повернуто код помилки {!s}." + +#: src/modules/packages/main.py:629 +msgid "" +"The package manager could not make changes to the installed system. The " +"command
{!s}
returned error code {!s}." +msgstr "" +"Засобу керування пакунками не вдалося внести зміну до встановленої системи. " +"Програмою
{!s}
повернуто код помилки {!s}." + +#: 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 " +"
{!s}
returned error code {!s}." +msgstr "" +"Не вдалося встановити завантажувач. Програмою для встановлення " +"
{!s}
повернуто код помилки {!s}." + +#: 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 "Налаштовуємо службу dmcrypt OpenRC." + +#: src/modules/fstab/main.py:29 +msgid "Writing fstab." +msgstr "Записуємо fstab." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
to use." +msgstr "" +"Не надано налаштувань
{!s}
для використання у
{!s}
." + +#: 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 "Зберігаємо налаштування мережі." diff --git a/lang/python/ur/LC_MESSAGES/python.po b/lang/python/ur/LC_MESSAGES/python.po index c8944a740..8d58fc426 100644 --- a/lang/python/ur/LC_MESSAGES/python.po +++ b/lang/python/ur/LC_MESSAGES/python.po @@ -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: 2017-08-09 10:34+0000\n" "Language-Team: Urdu (https://www.transifex.com/calamares/teams/20061/ur/)\n" "MIME-Version: 1.0\n" @@ -17,279 +17,42 @@ msgstr "" "Language: ur\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -380,3 +143,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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/uz/LC_MESSAGES/python.po b/lang/python/uz/LC_MESSAGES/python.po index db5831ceb..5c38cbb89 100644 --- a/lang/python/uz/LC_MESSAGES/python.po +++ b/lang/python/uz/LC_MESSAGES/python.po @@ -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: 2017-08-09 10:34+0000\n" "Language-Team: Uzbek (https://www.transifex.com/calamares/teams/20061/uz/)\n" "MIME-Version: 1.0\n" @@ -17,277 +17,42 @@ msgstr "" "Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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] "" - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "" - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -378,3 +143,240 @@ 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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] "" + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "" + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/vi/LC_MESSAGES/python.po b/lang/python/vi/LC_MESSAGES/python.po index cedba816e..c33a75909 100644 --- a/lang/python/vi/LC_MESSAGES/python.po +++ b/lang/python/vi/LC_MESSAGES/python.po @@ -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: T. Tran , 2020\n" "Language-Team: Vietnamese (https://www.transifex.com/calamares/teams/20061/vi/)\n" @@ -21,288 +21,42 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/modules/bootloader/main.py:43 -msgid "Install bootloader." -msgstr "Đang cài đặt bộ khởi động." - -#: 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 " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/displaymanager/main.py:526 -msgid "Cannot write KDM configuration file" -msgstr "Không thể ghi vào tập tin cấu hình KDM" - -#: src/modules/displaymanager/main.py:527 -msgid "KDM config file {!s} does not exist" -msgstr "Tập tin cấu hình KDM {!s} không tồn tại" - -#: src/modules/displaymanager/main.py:588 -msgid "Cannot write LXDM configuration file" -msgstr "Không thể ghi vào tập tin cấu hình LXDM" - -#: src/modules/displaymanager/main.py:589 -msgid "LXDM config file {!s} does not exist" -msgstr "Tập tin cấu hình LXDM {!s} không tồn tại" - -#: src/modules/displaymanager/main.py:672 -msgid "Cannot write LightDM configuration file" -msgstr "Không thể ghi vào tập tin cấu hình LightDM" - -#: src/modules/displaymanager/main.py:673 -msgid "LightDM config file {!s} does not exist" -msgstr "Tập tin cấu hình LightDM {!s} không tồn tại" - -#: src/modules/displaymanager/main.py:747 -msgid "Cannot configure LightDM" -msgstr "Không thể cấu hình LXDM" - -#: src/modules/displaymanager/main.py:748 -msgid "No LightDM greeter installed." -msgstr "Màn hình chào mừng LightDM không được cài đặt." - -#: src/modules/displaymanager/main.py:779 -msgid "Cannot write SLIM configuration file" -msgstr "Không thể ghi vào tập tin cấu hình SLIM" - -#: src/modules/displaymanager/main.py:780 -msgid "SLIM config file {!s} does not exist" -msgstr "Tập tin cấu hình SLIM {!s} không tồn tại" - -#: src/modules/displaymanager/main.py:906 -msgid "No display managers selected for the displaymanager module." -msgstr "" -"Không có trình quản lý hiển thị nào được chọn cho mô-đun quản lý hiển thị" - -#: src/modules/displaymanager/main.py:907 -msgid "" -"The displaymanagers list is empty or undefined in both globalstorage and " -"displaymanager.conf." -msgstr "" -"Danh sách quản lý hiện thị trống hoặc không được định nghĩa cả trong " -"globalstorage và displaymanager.conf." - -#: src/modules/displaymanager/main.py:989 -msgid "Display manager configuration was incomplete" -msgstr "Cầu hình quản lý hiện thị không hoàn tất" - -#: src/modules/dracut/main.py:27 -msgid "Creating initramfs with dracut." -msgstr "Đang tạo initramfs bằng dracut." - -#: src/modules/dracut/main.py:49 -msgid "Failed to run dracut on the target" -msgstr "Chạy dracut thất bại ở hệ thống đích" - -#: src/modules/dracut/main.py:50 src/modules/mkinitfs/main.py:50 -msgid "The exit code was {}" -msgstr "Mã lỗi trả về là {}" - -#: src/modules/dummypython/main.py:35 -msgid "Dummy python job." -msgstr "Ví dụ công việc python." - -#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 -#: src/modules/dummypython/main.py:94 -msgid "Dummy python step {}" -msgstr "Ví dụ python bước {}" - -#: src/modules/fstab/main.py:29 -msgid "Writing fstab." -msgstr "Đang viết vào 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 "Lỗi cấu hình" - -#: 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
{!s}
to use." -msgstr "Không có phân vùng nào được định nghĩa cho
{!s}
để dùng." - -#: 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
{!s}
to use." -msgstr "Không có điểm kết nối gốc cho
{!s}
để dùng." - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "" - #: src/modules/grubcfg/main.py:28 msgid "Configure GRUB." msgstr "Cấu hình GRUB" -#: src/modules/hwclock/main.py:26 -msgid "Setting hardware clock." -msgstr "Đang thiết lập đồng hồ máy tính." - -#: src/modules/initcpiocfg/main.py:28 -msgid "Configuring mkinitcpio." -msgstr "Đang cấu hình mkinitcpio." - -#: src/modules/initramfscfg/main.py:32 -msgid "Configuring initramfs." -msgstr "Đang cấu hình initramfs." - -#: src/modules/localecfg/main.py:30 -msgid "Configuring locales." -msgstr "Đang cấu hình ngôn ngữ." - -#: src/modules/luksopenswaphookcfg/main.py:26 -msgid "Configuring encrypted swap." -msgstr "Đang cấu hình hoán đổi mã hoá" - -#: src/modules/mkinitfs/main.py:27 -msgid "Creating initramfs with mkinitfs." -msgstr "Đang tạo initramfs bằng mkinitfs." - -#: src/modules/mkinitfs/main.py:49 -msgid "Failed to run mkinitfs on the target" -msgstr "Chạy mkinitfs thất bại ở hệ thống đích" - #: src/modules/mount/main.py:30 msgid "Mounting partitions." msgstr "Đang gắn kết các phân vùng." -#: src/modules/networkcfg/main.py:28 -msgid "Saving network configuration." -msgstr "Đang lưu cấu hình mạng." +#: 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 "Lỗi cấu hình" -#: src/modules/openrcdmcryptcfg/main.py:26 -msgid "Configuring OpenRC dmcrypt service." -msgstr "Đang cấu hình dịch vụ OpenRC dmcrypt." - -#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 -#: src/modules/packages/main.py:69 -msgid "Install packages." -msgstr "Đang cài đặt các gói ứng dụng." - -#: src/modules/packages/main.py:57 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "Đang xử lý gói (%(count)d / %(total)d)" - -#: src/modules/packages/main.py:62 -#, python-format -msgid "Installing one package." -msgid_plural "Installing %(num)d packages." -msgstr[0] "Đang cài đặt %(num)d gói ứng dụng." - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "Đang gỡ bỏ %(num)d gói ứng dụng." - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "" - -#: src/modules/plymouthcfg/main.py:27 -msgid "Configure Plymouth theme" -msgstr "Cấu hình giao diện Plymouth" - -#: src/modules/rawfs/main.py:26 -msgid "Installing data." -msgstr "Đang cài đặt dữ liệu." - -#: src/modules/services-openrc/main.py:29 -msgid "Configure OpenRC services" -msgstr "Cấu hình dịch vụ OpenRC" - -#: src/modules/services-openrc/main.py:57 -msgid "Cannot add service {name!s} to run-level {level!s}." -msgstr "Không thể thêm dịch vụ {name!s} vào run-level {level!s}." - -#: src/modules/services-openrc/main.py:59 -msgid "Cannot remove service {name!s} from run-level {level!s}." -msgstr "Không thể loại bỏ dịch vụ {name!s} từ run-level {level!s}." - -#: src/modules/services-openrc/main.py:61 -msgid "" -"Unknown service-action {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "" -"Không nhận ra thao tác {arg!s} cho dịch vụ {name!s} ở run-level" -" {level!s}." - -#: src/modules/services-openrc/main.py:93 -#: src/modules/services-systemd/main.py:59 -msgid "Cannot modify service" -msgstr "Không thể sửa đổi dịch vụ" - -#: src/modules/services-openrc/main.py:94 -msgid "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "" -"Lệnh rc-update {arg!s} trong môi trường chroot trả về lỗi " -"{num!s}." - -#: src/modules/services-openrc/main.py:101 -msgid "Target runlevel does not exist" -msgstr "Nhóm dịch vụ khởi động không tồn tại" - -#: src/modules/services-openrc/main.py:102 -msgid "" -"The path for runlevel {level!s} is {path!s}, which does not " -"exist." -msgstr "" -"Đường dẫn cho runlevel {level!s} là {path!s}, nhưng không tồn " -"tại." - -#: src/modules/services-openrc/main.py:110 -msgid "Target service does not exist" -msgstr "Nhóm dịch vụ không tồn tại" - -#: src/modules/services-openrc/main.py:111 -msgid "" -"The path for service {name!s} is {path!s}, which does not " -"exist." -msgstr "" -"Đường dẫn cho dịch vụ {name!s} là {path!s}, nhưng không tồn " -"tại." +#: 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
{!s}
to use." +msgstr "Không có phân vùng nào được định nghĩa cho
{!s}
để dùng." #: src/modules/services-systemd/main.py:26 msgid "Configure systemd services" msgstr "Cấu hình các dịch vụ systemd" +#: src/modules/services-systemd/main.py:59 +#: src/modules/services-openrc/main.py:93 +msgid "Cannot modify service" +msgstr "Không thể sửa đổi dịch vụ" + #: src/modules/services-systemd/main.py:60 msgid "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -396,3 +150,251 @@ msgstr "Không tìm thấy lệnh unsquashfs, vui lòng cài đặt gói squashf #: src/modules/unpackfs/main.py:479 msgid "The destination \"{}\" in the target system is not a directory" msgstr "Hệ thống đích \"{}\" không phải là một thư mục" + +#: src/modules/displaymanager/main.py:526 +msgid "Cannot write KDM configuration file" +msgstr "Không thể ghi vào tập tin cấu hình KDM" + +#: src/modules/displaymanager/main.py:527 +msgid "KDM config file {!s} does not exist" +msgstr "Tập tin cấu hình KDM {!s} không tồn tại" + +#: src/modules/displaymanager/main.py:588 +msgid "Cannot write LXDM configuration file" +msgstr "Không thể ghi vào tập tin cấu hình LXDM" + +#: src/modules/displaymanager/main.py:589 +msgid "LXDM config file {!s} does not exist" +msgstr "Tập tin cấu hình LXDM {!s} không tồn tại" + +#: src/modules/displaymanager/main.py:672 +msgid "Cannot write LightDM configuration file" +msgstr "Không thể ghi vào tập tin cấu hình LightDM" + +#: src/modules/displaymanager/main.py:673 +msgid "LightDM config file {!s} does not exist" +msgstr "Tập tin cấu hình LightDM {!s} không tồn tại" + +#: src/modules/displaymanager/main.py:747 +msgid "Cannot configure LightDM" +msgstr "Không thể cấu hình LXDM" + +#: src/modules/displaymanager/main.py:748 +msgid "No LightDM greeter installed." +msgstr "Màn hình chào mừng LightDM không được cài đặt." + +#: src/modules/displaymanager/main.py:779 +msgid "Cannot write SLIM configuration file" +msgstr "Không thể ghi vào tập tin cấu hình SLIM" + +#: src/modules/displaymanager/main.py:780 +msgid "SLIM config file {!s} does not exist" +msgstr "Tập tin cấu hình SLIM {!s} không tồn tại" + +#: src/modules/displaymanager/main.py:906 +msgid "No display managers selected for the displaymanager module." +msgstr "" +"Không có trình quản lý hiển thị nào được chọn cho mô-đun quản lý hiển thị" + +#: src/modules/displaymanager/main.py:907 +msgid "" +"The displaymanagers list is empty or undefined in both globalstorage and " +"displaymanager.conf." +msgstr "" +"Danh sách quản lý hiện thị trống hoặc không được định nghĩa cả trong " +"globalstorage và displaymanager.conf." + +#: src/modules/displaymanager/main.py:989 +msgid "Display manager configuration was incomplete" +msgstr "Cầu hình quản lý hiện thị không hoàn tất" + +#: src/modules/initcpiocfg/main.py:28 +msgid "Configuring mkinitcpio." +msgstr "Đang cấu hình 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
{!s}
to use." +msgstr "Không có điểm kết nối gốc cho
{!s}
để dùng." + +#: src/modules/luksopenswaphookcfg/main.py:26 +msgid "Configuring encrypted swap." +msgstr "Đang cấu hình hoán đổi mã hoá" + +#: src/modules/rawfs/main.py:26 +msgid "Installing data." +msgstr "Đang cài đặt dữ liệu." + +#: src/modules/services-openrc/main.py:29 +msgid "Configure OpenRC services" +msgstr "Cấu hình dịch vụ OpenRC" + +#: src/modules/services-openrc/main.py:57 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "Không thể thêm dịch vụ {name!s} vào run-level {level!s}." + +#: src/modules/services-openrc/main.py:59 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "Không thể loại bỏ dịch vụ {name!s} từ run-level {level!s}." + +#: src/modules/services-openrc/main.py:61 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Không nhận ra thao tác {arg!s} cho dịch vụ {name!s} ở run-level" +" {level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"Lệnh rc-update {arg!s} trong môi trường chroot trả về lỗi " +"{num!s}." + +#: src/modules/services-openrc/main.py:101 +msgid "Target runlevel does not exist" +msgstr "Nhóm dịch vụ khởi động không tồn tại" + +#: src/modules/services-openrc/main.py:102 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"Đường dẫn cho runlevel {level!s} là {path!s}, nhưng không tồn " +"tại." + +#: src/modules/services-openrc/main.py:110 +msgid "Target service does not exist" +msgstr "Nhóm dịch vụ không tồn tại" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"Đường dẫn cho dịch vụ {name!s} là {path!s}, nhưng không tồn " +"tại." + +#: src/modules/plymouthcfg/main.py:27 +msgid "Configure Plymouth theme" +msgstr "Cấu hình giao diện Plymouth" + +#: src/modules/packages/main.py:50 src/modules/packages/main.py:59 +#: src/modules/packages/main.py:69 +msgid "Install packages." +msgstr "Đang cài đặt các gói ứng dụng." + +#: src/modules/packages/main.py:57 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "Đang xử lý gói (%(count)d / %(total)d)" + +#: src/modules/packages/main.py:62 +#, python-format +msgid "Installing one package." +msgid_plural "Installing %(num)d packages." +msgstr[0] "Đang cài đặt %(num)d gói ứng dụng." + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "Đang gỡ bỏ %(num)d gói ứng dụng." + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/bootloader/main.py:43 +msgid "Install bootloader." +msgstr "Đang cài đặt bộ khởi động." + +#: 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 " +"
{!s}
returned error code {!s}." +msgstr "" + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "Đang thiết lập đồng hồ máy tính." + +#: src/modules/mkinitfs/main.py:27 +msgid "Creating initramfs with mkinitfs." +msgstr "Đang tạo initramfs bằng mkinitfs." + +#: src/modules/mkinitfs/main.py:49 +msgid "Failed to run mkinitfs on the target" +msgstr "Chạy mkinitfs thất bại ở hệ thống đích" + +#: src/modules/mkinitfs/main.py:50 src/modules/dracut/main.py:50 +msgid "The exit code was {}" +msgstr "Mã lỗi trả về là {}" + +#: src/modules/dracut/main.py:27 +msgid "Creating initramfs with dracut." +msgstr "Đang tạo initramfs bằng dracut." + +#: src/modules/dracut/main.py:49 +msgid "Failed to run dracut on the target" +msgstr "Chạy dracut thất bại ở hệ thống đích" + +#: src/modules/initramfscfg/main.py:32 +msgid "Configuring initramfs." +msgstr "Đang cấu hình initramfs." + +#: src/modules/openrcdmcryptcfg/main.py:26 +msgid "Configuring OpenRC dmcrypt service." +msgstr "Đang cấu hình dịch vụ OpenRC dmcrypt." + +#: src/modules/fstab/main.py:29 +msgid "Writing fstab." +msgstr "Đang viết vào fstab." + +#: src/modules/fstab/main.py:389 +msgid "No
{!s}
configuration is given for
{!s}
to use." +msgstr "" + +#: src/modules/dummypython/main.py:35 +msgid "Dummy python job." +msgstr "Ví dụ công việc python." + +#: src/modules/dummypython/main.py:37 src/modules/dummypython/main.py:93 +#: src/modules/dummypython/main.py:94 +msgid "Dummy python step {}" +msgstr "Ví dụ python bước {}" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "Đang cấu hình ngôn ngữ." + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "Đang lưu cấu hình mạng." diff --git a/lang/python/zh/LC_MESSAGES/python.po b/lang/python/zh/LC_MESSAGES/python.po index ed8798104..7471fe96c 100644 --- a/lang/python/zh/LC_MESSAGES/python.po +++ b/lang/python/zh/LC_MESSAGES/python.po @@ -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: 2017-08-09 10:34+0000\n" "Language-Team: Chinese (https://www.transifex.com/calamares/teams/20061/zh/)\n" "MIME-Version: 1.0\n" @@ -17,277 +17,42 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\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 " -"
{!s}
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
{!s}
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
{!s}
to use." -msgstr "" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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] "" - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "" - -#: 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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 {arg!s} 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 "" -"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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
{!s}
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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -378,3 +143,240 @@ 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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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] "" + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "" + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/zh_CN/LC_MESSAGES/python.po b/lang/python/zh_CN/LC_MESSAGES/python.po index 785fb9e2d..36ba26f76 100644 --- a/lang/python/zh_CN/LC_MESSAGES/python.po +++ b/lang/python/zh_CN/LC_MESSAGES/python.po @@ -8,16 +8,16 @@ # plantman , 2017 # Feng Chao , 2020 # Bobby Rong , 2020 -# 玉堂白鹤 , 2020 +# 玉堂白鹤 , 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: 玉堂白鹤 , 2020\n" +"Last-Translator: 玉堂白鹤 , 2021\n" "Language-Team: Chinese (China) (https://www.transifex.com/calamares/teams/20061/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,277 +25,42 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\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 " -"
{!s}
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 "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 "用 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
{!s}
to use." -msgstr "没有分配分区给
{!s}
。" - -#: 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
{!s}
to use." -msgstr " 未设置
{!s}
要使用的根挂载点。" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
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 "正在配置初始内存文件系统。" - -#: 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 "正在用 mkinitfs 创建initramfs。" - -#: 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] "安装%(num)d软件包。" - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "移除%(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
{!s}
" -"returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
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 "无法从 {level!s} 运行级别中删除服务 {name!s}。" - -#: src/modules/services-openrc/main.py:61 -msgid "" -"Unknown service-action {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "未知的服务动作 {arg!s},服务名: {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 "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "chroot 中运行的 rc-update {arg!s} 返回错误 {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 {path!s}, which does not " -"exist." -msgstr "运行级别 {level!s} 所在目录 {path!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 {path!s}, which does not " -"exist." -msgstr "服务 {name!s} 的路径 {path!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
{!s}
to use." +msgstr "没有分配分区给
{!s}
。" #: 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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -388,3 +153,240 @@ msgstr "未找到 unsquashfs,请确保安装了 squashfs-tools 软件包" #: 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 "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
{!s}
to use." +msgstr " 未设置
{!s}
要使用的根挂载点。" + +#: 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 "无法将服务 {name!s} 加入 {level!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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "未知的服务动作 {arg!s},服务名: {name!s},运行级别: {level!s}." + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "chroot 中运行的 rc-update {arg!s} 返回错误 {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 {path!s}, which does not " +"exist." +msgstr "运行级别 {level!s} 所在目录 {path!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 {path!s}, which does not " +"exist." +msgstr "服务 {name!s} 的路径 {path!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] "安装%(num)d软件包。" + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "移除%(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
{!s}
" +"returned error code {!s}." +msgstr "软件包管理器无法准备更新。命令
{!s}
返回错误代码{!s}。" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" returned error code {!s}." +msgstr "软件包管理器无法更新系统。命令
{!s}
返回错误代码{!s}。" + +#: src/modules/packages/main.py:629 +msgid "" +"The package manager could not make changes to the installed system. The " +"command
{!s}
returned error code {!s}." +msgstr "软件包管理器无法对已安装的系统进行更改。命令
{!s}
返回错误代码{!s}。" + +#: 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 " +"
{!s}
returned error code {!s}." +msgstr "无法安装启动加载器。安装命令
{!s}
返回错误代码 {!s}。" + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "设置硬件时钟。" + +#: src/modules/mkinitfs/main.py:27 +msgid "Creating initramfs with mkinitfs." +msgstr "正在用 mkinitfs 创建initramfs。" + +#: 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 "用 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 "正在配置初始内存文件系统。" + +#: 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
{!s}
configuration is given for
{!s}
to use." +msgstr "无
{!s}
配置可供
{!s}
使用。" + +#: 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 "正在保存网络配置。" diff --git a/lang/python/zh_HK/LC_MESSAGES/python.po b/lang/python/zh_HK/LC_MESSAGES/python.po new file mode 100644 index 000000000..d911132ca --- /dev/null +++ b/lang/python/zh_HK/LC_MESSAGES/python.po @@ -0,0 +1,382 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-14 12:55+0200\n" +"PO-Revision-Date: 2017-08-09 10:34+0000\n" +"Language-Team: Chinese (Hong Kong) (https://www.transifex.com/calamares/teams/20061/zh_HK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_HK\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/modules/grubcfg/main.py:28 +msgid "Configure GRUB." +msgstr "" + +#: src/modules/mount/main.py:30 +msgid "Mounting partitions." +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/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
{!s}
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 "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:63 +#: src/modules/services-systemd/main.py:67 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:65 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:71 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:73 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:31 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:35 +msgid "Filling up filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:255 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:300 +msgid "Unpacking image {}/{}, file {}/{}" +msgstr "" + +#: src/modules/unpackfs/main.py:315 +msgid "Starting to unpack {}" +msgstr "" + +#: src/modules/unpackfs/main.py:324 src/modules/unpackfs/main.py:464 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:431 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:432 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:437 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:438 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:454 src/modules/unpackfs/main.py:458 +#: src/modules/unpackfs/main.py:478 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:455 +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "" + +#: src/modules/unpackfs/main.py:459 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:465 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +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
{!s}
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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} 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 {path!s}, 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 {path!s}, 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] "" + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "" + +#: 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
{!s}
" +"returned error code {!s}." +msgstr "" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" 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
{!s}
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 " +"
{!s}
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
{!s}
configuration is given for
{!s}
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 "" diff --git a/lang/python/zh_TW/LC_MESSAGES/python.po b/lang/python/zh_TW/LC_MESSAGES/python.po index a81d8e5b7..967bad991 100644 --- a/lang/python/zh_TW/LC_MESSAGES/python.po +++ b/lang/python/zh_TW/LC_MESSAGES/python.po @@ -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: 黃柏諺 , 2021\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/calamares/teams/20061/zh_TW/)\n" @@ -22,277 +22,42 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\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 " -"
{!s}
returned error code {!s}." -msgstr "無法安裝開機載入程式。安裝指令
{!s}
回傳了錯誤碼 {!s}。" - -#: 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 "顯示管理器清單為空或在 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 "正在使用 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 step {}" - -#: 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
{!s}
to use." -msgstr "沒有分割區被定義為
{!s}
以供使用。" - -#: 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
{!s}
to use." -msgstr "沒有給定的根掛載點
{!s}
以供使用。" - -#: src/modules/fstab/main.py:389 -msgid "No
{!s}
configuration is given for
{!s}
to use." -msgstr "無
{!s}
設定可供
{!s}
使用。" - #: 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 "正在使用 mkinitfs 建立 initramfs。" - -#: 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] "正在安裝 %(num)d 軟體包。" - -#: src/modules/packages/main.py:65 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "正在移除 %(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
{!s}
" -"returned error code {!s}." -msgstr "軟體包管理程式無法準備更新。指令
{!s}
回傳了錯誤碼 {!s}。" - -#: src/modules/packages/main.py:601 -msgid "" -"The package manager could not update the system. The command
{!s}
" -" returned error code {!s}." -msgstr "軟體包管理程式無法更新系統。指令
{!s}
回傳了錯誤碼 {!s}。" - -#: src/modules/packages/main.py:629 -msgid "" -"The package manager could make changes to the installed system. The command " -"
{!s}
returned error code {!s}." -msgstr "軟體包管理程式無法對已安裝的系統做出變更。指令
{!s}
回傳了錯誤碼 {!s}。" - -#: 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 {arg!s} for service {name!s} in run-" -"level {level!s}." -msgstr "未知的服務動作 {arg!s} 給服務 {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 "" -"rc-update {arg!s} call in chroot returned error code {num!s}." -msgstr "在 chroot 中呼叫的 rc-update {arg!s} 回傳了錯誤代碼 {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 {path!s}, which does not " -"exist." -msgstr "執行層級 {level!s} 的路徑為 {path!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 {path!s}, which does not " -"exist." -msgstr "服務 {name!s} 的路徑為 {path!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
{!s}
to use." +msgstr "沒有分割區被定義為
{!s}
以供使用。" #: 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 "" "systemctl {arg!s} call in chroot returned error code {num!s}." @@ -385,3 +150,240 @@ msgstr "找不到 unsquashfs,請確定已安裝 squashfs-tools 軟體包" #: 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 "顯示管理器清單為空或在 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
{!s}
to use." +msgstr "沒有給定的根掛載點
{!s}
以供使用。" + +#: 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 {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "未知的服務動作 {arg!s} 給服務 {name!s} 在執行層級 {level!s}。" + +#: src/modules/services-openrc/main.py:94 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "在 chroot 中呼叫的 rc-update {arg!s} 回傳了錯誤代碼 {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 {path!s}, which does not " +"exist." +msgstr "執行層級 {level!s} 的路徑為 {path!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 {path!s}, which does not " +"exist." +msgstr "服務 {name!s} 的路徑為 {path!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] "正在安裝 %(num)d 軟體包。" + +#: src/modules/packages/main.py:65 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "正在移除 %(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
{!s}
" +"returned error code {!s}." +msgstr "軟體包管理程式無法準備更新。指令
{!s}
回傳了錯誤碼 {!s}。" + +#: src/modules/packages/main.py:601 +msgid "" +"The package manager could not update the system. The command
{!s}
" +" returned error code {!s}." +msgstr "軟體包管理程式無法更新系統。指令
{!s}
回傳了錯誤碼 {!s}。" + +#: src/modules/packages/main.py:629 +msgid "" +"The package manager could not make changes to the installed system. The " +"command
{!s}
returned error code {!s}." +msgstr "軟體包管理程式無法對已安裝的系統做出變更。指令
{!s}
回傳了錯誤碼 {!s}。" + +#: 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 " +"
{!s}
returned error code {!s}." +msgstr "無法安裝開機載入程式。安裝指令
{!s}
回傳了錯誤碼 {!s}。" + +#: src/modules/hwclock/main.py:26 +msgid "Setting hardware clock." +msgstr "正在設定硬體時鐘。" + +#: src/modules/mkinitfs/main.py:27 +msgid "Creating initramfs with mkinitfs." +msgstr "正在使用 mkinitfs 建立 initramfs。" + +#: 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 "正在使用 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
{!s}
configuration is given for
{!s}
to use." +msgstr "無
{!s}
設定可供
{!s}
使用。" + +#: 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 step {}" + +#: src/modules/localecfg/main.py:30 +msgid "Configuring locales." +msgstr "正在設定語系。" + +#: src/modules/networkcfg/main.py:28 +msgid "Saving network configuration." +msgstr "正在儲存網路設定。" diff --git a/src/calamares/CMakeLists.txt b/src/calamares/CMakeLists.txt index abea69a26..cf00dca37 100644 --- a/src/calamares/CMakeLists.txt +++ b/src/calamares/CMakeLists.txt @@ -123,5 +123,5 @@ if( BUILD_TESTING ) target_link_libraries( loadmodule PRIVATE Qt5::Core Qt5::Widgets calamares calamaresui ) add_executable( test_conf test_conf.cpp ) - target_link_libraries( test_conf PUBLIC yamlcpp Qt5::Core ) + target_link_libraries( test_conf PUBLIC yamlcpp::yamlcpp Qt5::Core ) endif() diff --git a/src/calamares/CalamaresWindow.cpp b/src/calamares/CalamaresWindow.cpp index d85d0de74..d95b87933 100644 --- a/src/calamares/CalamaresWindow.cpp +++ b/src/calamares/CalamaresWindow.cpp @@ -134,7 +134,7 @@ getWidgetSidebar( Calamares::DebugWindowManager* debug, { QPushButton* debugWindowBtn = new QPushButton; debugWindowBtn->setObjectName( "debugButton" ); - CALAMARES_RETRANSLATE_WIDGET( + CALAMARES_RETRANSLATE_FOR( debugWindowBtn, debugWindowBtn->setText( QCoreApplication::translate( CalamaresWindow::staticMetaObject.className(), "Show debug information" ) ); ); @@ -357,6 +357,8 @@ CalamaresWindow::CalamaresWindow( QWidget* parent ) , m_debugManager( new Calamares::DebugWindowManager( this ) ) , m_viewManager( nullptr ) { + installEventFilter( CalamaresUtils::Retranslator::instance() ); + // If we can never cancel, don't show the window-close button if ( Calamares::Settings::instance()->disableCancel() ) { diff --git a/src/calamares/testmain.cpp b/src/calamares/testmain.cpp index 0e7f4ab42..6d75a4fbb 100644 --- a/src/calamares/testmain.cpp +++ b/src/calamares/testmain.cpp @@ -24,6 +24,7 @@ #include "modulesystem/ModuleManager.h" #include "modulesystem/ViewModule.h" #include "utils/Logger.h" +#include "utils/Retranslator.h" #include "utils/Yaml.h" #include "viewpages/ExecutionViewStep.h" @@ -489,6 +490,10 @@ main( int argc, char* argv[] ) aw = replace_app; } mw = module.m_ui ? new QMainWindow() : nullptr; + if ( mw ) + { + mw->installEventFilter( CalamaresUtils::Retranslator::instance() ); + } (void)new Calamares::Branding( module.m_branding ); auto* modulemanager = new Calamares::ModuleManager( QStringList(), nullptr ); diff --git a/src/libcalamares/CMakeLists.txt b/src/libcalamares/CMakeLists.txt index 9615cedb8..d4755bde4 100644 --- a/src/libcalamares/CMakeLists.txt +++ b/src/libcalamares/CMakeLists.txt @@ -160,12 +160,14 @@ target_link_libraries( calamares LINK_PRIVATE ${OPTIONAL_PRIVATE_LIBRARIES} LINK_PUBLIC - yamlcpp + yamlcpp::yamlcpp Qt5::Core KF5::CoreAddons ${OPTIONAL_PUBLIC_LIBRARIES} ) +add_library(Calamares::calamares ALIAS calamares) + ### Installation # # @@ -313,10 +315,10 @@ calamares_add_test( # This is not an actual test, it's a test / demo application # for experimenting with GeoIP. add_executable( test_geoip geoip/test_geoip.cpp ${geoip_src} ) -target_link_libraries( test_geoip calamares Qt5::Network yamlcpp ) +target_link_libraries( test_geoip Calamares::calamares Qt5::Network yamlcpp::yamlcpp ) calamares_automoc( test_geoip ) if ( Qt5DBus_FOUND ) add_executable( test_automount partition/calautomount.cpp ) - target_link_libraries( test_automount calamares Qt5::DBus ) + target_link_libraries( test_automount Calamares::calamares Qt5::DBus ) endif() diff --git a/src/libcalamares/PythonJobApi.cpp b/src/libcalamares/PythonJobApi.cpp index 41fb82151..d61cfc223 100644 --- a/src/libcalamares/PythonJobApi.cpp +++ b/src/libcalamares/PythonJobApi.cpp @@ -136,16 +136,18 @@ check_target_env_output( const bp::list& args, const std::string& stdin, int tim return ec.second.toStdString(); } +static const char output_prefix[] = "[PYTHON JOB]:"; + void debug( const std::string& s ) { - Logger::CDebug( Logger::LOGDEBUG ) << "[PYTHON JOB]: " << QString::fromStdString( s ); + Logger::CDebug( Logger::LOGDEBUG ) << output_prefix << QString::fromStdString( s ); } void warning( const std::string& s ) { - cWarning() << "[PYTHON JOB]: " << QString::fromStdString( s ); + Logger::CDebug( Logger::LOGWARNING ) << output_prefix << QString::fromStdString( s ); } PythonJobInterface::PythonJobInterface( Calamares::PythonJob* parent ) @@ -168,7 +170,6 @@ PythonJobInterface::setprogress( qreal progress ) } } - std::string obscure( const std::string& string ) { diff --git a/src/libcalamares/locale/Label.cpp b/src/libcalamares/locale/Label.cpp index b4ec8180c..e2cfbc70a 100644 --- a/src/libcalamares/locale/Label.cpp +++ b/src/libcalamares/locale/Label.cpp @@ -11,6 +11,36 @@ #include "Label.h" +#include + +/** @brief Handle special cases of Calamares language names + * + * If a given @p localeName (e.g. en_US, or sr@latin) has special handling, + * returns a pair of pointers: + * - a pointer to a QLocale; this is the locale to use, or may be @c nullptr + * to indicate that the Qt locale derived from @p localeName is accepatable. + * - a pointer to a QString; this is the native language name to use, or may + * be @c nullptr to indicate that the Qt value is acceptable. + * + * Returns a pair of nullptrs for non-special cases. + */ +static std::pair< QLocale*, QString* > +specialCase( const QString& localeName ) +{ + if ( localeName == "sr@latin" ) + { + static QLocale loc( QLocale::Language::Serbian, QLocale::Script::LatinScript, QLocale::Country::Serbia ); + return { &loc, nullptr }; + } + if ( localeName == "ca@valencia" ) + { + static QString name = QStringLiteral( "Català (València)" ); + return { nullptr, &name }; + } + + return { nullptr, nullptr }; +} + namespace CalamaresUtils { namespace Locale @@ -26,11 +56,12 @@ Label::Label( const QString& locale, LabelFormat format, QObject* parent ) , m_locale( Label::getLocale( locale ) ) , m_localeId( locale.isEmpty() ? m_locale.name() : locale ) { + auto special = specialCase( locale ); + QString longFormat = QObject::tr( "%1 (%2)" ); - QString languageName = m_locale.nativeLanguageName(); + QString languageName = special.second ? *special.second : m_locale.nativeLanguageName(); QString englishName = m_locale.languageToString( m_locale.language() ); - QString countryName; if ( languageName.isEmpty() ) { @@ -39,11 +70,10 @@ Label::Label( const QString& locale, LabelFormat format, QObject* parent ) bool needsCountryName = ( format == LabelFormat::AlwaysWithCountry ) || ( locale.contains( '_' ) && QLocale::countriesForLanguage( m_locale.language() ).count() > 1 ); + QString countryName = ( needsCountryName ? - if ( needsCountryName ) - { - countryName = m_locale.nativeCountryName(); - } + m_locale.nativeCountryName() + : QString() ); m_label = needsCountryName ? longFormat.arg( languageName, countryName ) : languageName; m_englishLabel = needsCountryName ? longFormat.arg( englishName, QLocale::countryToString( m_locale.country() ) ) : englishName; @@ -56,15 +86,9 @@ Label::getLocale( const QString& localeName ) { return QLocale(); } - if ( localeName.contains( "@latin" ) ) - { - QLocale loc( localeName ); // Ignores @latin - return QLocale( loc.language(), QLocale::Script::LatinScript, loc.country() ); - } - else - { - return QLocale( localeName ); - } + + auto special = specialCase( localeName ); + return special.first ? *special.first : QLocale( localeName ); } } // namespace Locale diff --git a/src/libcalamares/locale/Label.h b/src/libcalamares/locale/Label.h index 58b2a3773..b0f17930a 100644 --- a/src/libcalamares/locale/Label.h +++ b/src/libcalamares/locale/Label.h @@ -27,6 +27,12 @@ namespace Locale * Support class to turn locale names (as used by Calamares's * translation system) into QLocales, and also into consistent * human-readable text labels. + * + * This handles special-cases in Calamares translations: + * - `sr@latin` is the name which Qt recognizes as `sr@latn`, + * Serbian written with Latin characters (not Cyrillic). + * - `ca@valencia` is the Catalan dialect spoken in Valencia. + * There is no Qt code for it. */ class Label : public QObject { @@ -86,8 +92,7 @@ public: /** @brief Get a Qt locale for the given @p localeName * - * This special-cases `sr@latin`, which is used as a translation - * name in Calamares, while Qt recognizes `sr@latn`. + * This obeys special cases as described in the class documentation. */ static QLocale getLocale( const QString& localeName ); diff --git a/src/libcalamares/utils/RAII.h b/src/libcalamares/utils/RAII.h index f3adb90f6..00e276ec6 100644 --- a/src/libcalamares/utils/RAII.h +++ b/src/libcalamares/utils/RAII.h @@ -70,9 +70,42 @@ struct cPointerSetter std::optional< T > m_value; T* m_pointer; - cPointerSetter( T* p ) : m_pointer(p) {} - ~cPointerSetter() { if ( m_pointer && m_value.has_value() ) { *m_pointer = m_value.value(); } } + /** @brief Create a setter with no value set + * + * Until a value is set via operator=(), this pointer-setter + * will do nothing on destruction, leaving the pointed-to + * value unchanged. + */ + cPointerSetter( T* p ) + : m_pointer( p ) + { + } + /** @brief Create a setter with a value already set + * + * This ensures that on destruction, the value @p v will be written; + * it is equivalent to assigning @p v immediately. The pointed-to + * value is **not** changed (until destruction). + */ + cPointerSetter( T* p, T v ) + : m_value( v ) + , m_pointer( p ) + { + } + ~cPointerSetter() + { + if ( m_pointer && m_value.has_value() ) + { + *m_pointer = m_value.value(); + } + } - const T& operator=(const T& v) { m_value = v; return v; } + const T& operator=( const T& v ) + { + m_value = v; + return v; + } }; + +template < typename T > +cPointerSetter( T p )->cPointerSetter< decltype( *p ) >; #endif diff --git a/src/libcalamares/utils/Retranslator.cpp b/src/libcalamares/utils/Retranslator.cpp index 7f0d89ef9..2e71fc011 100644 --- a/src/libcalamares/utils/Retranslator.cpp +++ b/src/libcalamares/utils/Retranslator.cpp @@ -211,55 +211,34 @@ loadTranslator( const QLocale& locale, const QString& prefix, QTranslator* trans return ::tryLoad( translator, prefix, locale.name() ); } -Retranslator* -Retranslator::retranslatorFor( QObject* parent ) -{ - Retranslator* r = nullptr; - for ( QObject* child : parent->children() ) - { - r = qobject_cast< Retranslator* >( child ); - if ( r ) - { - return r; - } - } - - return new Retranslator( parent ); -} - -void -Retranslator::attachRetranslator( QObject* parent, std::function< void( void ) > retranslateFunc ) -{ - retranslatorFor( parent )->m_retranslateFuncList.append( retranslateFunc ); - retranslateFunc(); -} - - Retranslator::Retranslator( QObject* parent ) : QObject( parent ) { - parent->installEventFilter( this ); } - bool Retranslator::eventFilter( QObject* obj, QEvent* e ) { - if ( obj == parent() ) + if ( e->type() == QEvent::LanguageChange ) { - if ( e->type() == QEvent::LanguageChange ) - { - foreach ( std::function< void() > func, m_retranslateFuncList ) - { - func(); - } - emit languageChange(); - } + emit languageChanged(); } // pass the event on to the base return QObject::eventFilter( obj, e ); } +Retranslator* Retranslator::instance() +{ + static Retranslator s_instance(nullptr); + return &s_instance; +} + +void Retranslator::attach(QObject* o, std::function f) +{ + connect( instance(), &Retranslator::languageChanged, o, f ); + f(); +} + void setAllowLocalTranslation( bool allow ) { diff --git a/src/libcalamares/utils/Retranslator.h b/src/libcalamares/utils/Retranslator.h index f6169e9aa..9d8617cbd 100644 --- a/src/libcalamares/utils/Retranslator.h +++ b/src/libcalamares/utils/Retranslator.h @@ -64,43 +64,79 @@ DLLEXPORT bool loadTranslator( const QLocale& locale, const QString& prefix, QTr */ DLLEXPORT void setAllowLocalTranslation( bool allow ); + +/** @brief Handles change-of-language events + * + * There is one single Retranslator object. Use `instance()` to get it. + * The top-level widget of the application should call + * `installEventFilter( Retranslator::instance() )` + * to set up event-handling for translation events. The Retranslator + * will emit signal `languageChanged()` if there is such an event. + * + * Normal consumers should not have to use the Retranslator directly, + * but use the macros `CALAMARES_RETRANSLATE*` to set things up + * in code -- the macros will connect to the Retranslator's signals. + */ class Retranslator : public QObject { Q_OBJECT public: - /// @brief Call @p retranslateFunc when the language changes - static void attachRetranslator( QObject* parent, std::function< void( void ) > retranslateFunc ); - /// @brief What retranslator belongs to @p parent (may create one) - static Retranslator* retranslatorFor( QObject* parent ); + /// @brief Gets the global (single) Retranslator object + static Retranslator* instance(); - /// @brief Call @p retranslateFunc when the language changes - void addRetranslateFunc( std::function< void( void ) > retranslateFunc ); + /// @brief Helper function for attaching lambdas + static void attach( QObject* o, std::function< void( void ) > f); signals: - void languageChange(); + void languageChanged(); protected: bool eventFilter( QObject* obj, QEvent* e ) override; private: explicit Retranslator( QObject* parent ); - - QList< std::function< void( void ) > > m_retranslateFuncList; }; } // namespace CalamaresUtils -#define CALAMARES_RETRANSLATE( body ) CalamaresUtils::Retranslator::attachRetranslator( this, [=] { body } ) -#define CALAMARES_RETRANSLATE_WIDGET( widget, body ) \ - CalamaresUtils::Retranslator::attachRetranslator( widget, [=] { body } ) +/** @brief Call code for this object when language changes + * + * @p body should be a code block (it does not need braces) that can be wrapped + * up as a lambda. When the language changes, the lambda is called. Note that + * this macro should be used in constructors or other code that is run only + * once, since otherwise you will end up with multiple calls to @p body. + * + * NOTE: unlike plain QObject::connect(), the body is **also** called + * immediately after setting up the connection. This allows + * setup and translation code to be mixed together. + */ +#define CALAMARES_RETRANSLATE( body ) CalamaresUtils::Retranslator::attach( this, [=] { body } ) +/** @brief Call code for the given object (widget) when language changes + * + * This is identical to CALAMARES_RETRANSLATE, except the @p body is called + * for the given object, not this object. + * + * NOTE: unlike plain QObject::connect(), the body is **also** called + * immediately after setting up the connection. This allows + * setup and translation code to be mixed together. + */ +#define CALAMARES_RETRANSLATE_FOR( object, body ) CalamaresUtils::Retranslator::attach( object, [=] { body } ) +/** @brief Call a slot in this object when language changes + * + * Given a slot (in method-function-pointer notation), call that slot when the + * language changes. This is shorthand for connecting the Retranslator's + * signal to the given slot. + * + * NOTE: unlike plain QObject::connect(), the slot is **also** called + * immediately after setting up the connection. This allows + * setup and translation code to be mixed together. + */ #define CALAMARES_RETRANSLATE_SLOT( slotfunc ) \ do \ { \ - this->connect( CalamaresUtils::Retranslator::retranslatorFor( this ), \ - &CalamaresUtils::Retranslator::languageChange, \ - this, \ - slotfunc ); \ - } while ( 0 ) + connect( CalamaresUtils::Retranslator::instance(), &CalamaresUtils::Retranslator::languageChanged, this, slotfunc ); \ + (this->*slotfunc)(); \ + } while ( false ) #endif diff --git a/src/libcalamaresui/CMakeLists.txt b/src/libcalamaresui/CMakeLists.txt index 4afdc6614..20fae9a19 100644 --- a/src/libcalamaresui/CMakeLists.txt +++ b/src/libcalamaresui/CMakeLists.txt @@ -72,12 +72,11 @@ calamares_add_library( calamaresui EXPORT_MACRO UIDLLEXPORT_PRO LINK_LIBRARIES Qt5::Svg - yamlcpp RESOURCES libcalamaresui.qrc EXPORT Calamares VERSION ${CALAMARES_VERSION_SHORT} ) - +target_link_libraries( calamaresui PRIVATE yamlcpp::yamlcpp ) if( KF5CoreAddons_FOUND AND KF5CoreAddons_VERSION VERSION_GREATER_EQUAL 5.58 ) target_compile_definitions( calamaresui PRIVATE WITH_KOSRelease ) endif() @@ -90,6 +89,8 @@ if( WITH_QML ) target_link_libraries( calamaresui PUBLIC Qt5::QuickWidgets ) endif() +add_library(Calamares::calamaresui ALIAS calamaresui) + ### Installation # diff --git a/src/libcalamaresui/viewpages/PythonQtViewStep.cpp b/src/libcalamaresui/viewpages/PythonQtViewStep.cpp index 29c65472f..df3c11994 100644 --- a/src/libcalamaresui/viewpages/PythonQtViewStep.cpp +++ b/src/libcalamaresui/viewpages/PythonQtViewStep.cpp @@ -48,7 +48,7 @@ PythonQtViewStep::PythonQtViewStep( PythonQtObjectPtr cxt, QObject* parent ) CalamaresUtils::unmarginLayout( m_widget->layout() ); m_cxt.addObject( "_calamares_module_basewidget", m_widget ); - CALAMARES_RETRANSLATE_WIDGET( + CALAMARES_RETRANSLATE_FOR( m_widget, CalamaresUtils::lookupAndCall( m_obj, { "retranslate" }, { CalamaresUtils::translatorLocaleName() } ); ) } diff --git a/src/modules/contextualprocess/CMakeLists.txt b/src/modules/contextualprocess/CMakeLists.txt index 113b504db..d7716bbfb 100644 --- a/src/modules/contextualprocess/CMakeLists.txt +++ b/src/modules/contextualprocess/CMakeLists.txt @@ -8,8 +8,6 @@ calamares_add_plugin( contextualprocess EXPORT_MACRO PLUGINDLLEXPORT_PRO SOURCES ContextualProcessJob.cpp - LINK_PRIVATE_LIBRARIES - calamares SHARED_LIB ) @@ -19,5 +17,5 @@ calamares_add_test( Tests.cpp ContextualProcessJob.cpp # Builds it a second time LIBRARIES - yamlcpp + yamlcpp::yamlcpp ) diff --git a/src/modules/dracutlukscfg/CMakeLists.txt b/src/modules/dracutlukscfg/CMakeLists.txt index dd9faf9d4..aaa7a8c17 100644 --- a/src/modules/dracutlukscfg/CMakeLists.txt +++ b/src/modules/dracutlukscfg/CMakeLists.txt @@ -8,8 +8,6 @@ calamares_add_plugin( dracutlukscfg EXPORT_MACRO PLUGINDLLEXPORT_PRO SOURCES DracutLuksCfgJob.cpp - LINK_PRIVATE_LIBRARIES - calamares SHARED_LIB NO_CONFIG ) diff --git a/src/modules/dummycpp/CMakeLists.txt b/src/modules/dummycpp/CMakeLists.txt index e199d5027..2916b4d67 100644 --- a/src/modules/dummycpp/CMakeLists.txt +++ b/src/modules/dummycpp/CMakeLists.txt @@ -8,7 +8,5 @@ calamares_add_plugin( dummycpp EXPORT_MACRO PLUGINDLLEXPORT_PRO SOURCES DummyCppJob.cpp - LINK_PRIVATE_LIBRARIES - calamares SHARED_LIB ) diff --git a/src/modules/finished/CMakeLists.txt b/src/modules/finished/CMakeLists.txt index b4d59db8f..619f6d8b0 100644 --- a/src/modules/finished/CMakeLists.txt +++ b/src/modules/finished/CMakeLists.txt @@ -17,7 +17,6 @@ calamares_add_plugin( finished UI FinishedPage.ui LINK_PRIVATE_LIBRARIES - calamaresui Qt5::DBus SHARED_LIB ) diff --git a/src/modules/finishedq/CMakeLists.txt b/src/modules/finishedq/CMakeLists.txt index 5b3793a6f..facc2d691 100644 --- a/src/modules/finishedq/CMakeLists.txt +++ b/src/modules/finishedq/CMakeLists.txt @@ -26,7 +26,6 @@ calamares_add_plugin( finishedq RESOURCES finishedq.qrc LINK_PRIVATE_LIBRARIES - calamaresui Qt5::DBus SHARED_LIB ) diff --git a/src/modules/fsresizer/CMakeLists.txt b/src/modules/fsresizer/CMakeLists.txt index 17b72b68a..e721d7f6b 100644 --- a/src/modules/fsresizer/CMakeLists.txt +++ b/src/modules/fsresizer/CMakeLists.txt @@ -21,7 +21,6 @@ if ( KPMcore_FOUND AND Qt5DBus_FOUND AND KF5CoreAddons_FOUND AND KF5Config_FOUND ResizeFSJob.cpp LINK_PRIVATE_LIBRARIES kpmcore - calamares COMPILE_DEFINITIONS ${KPMcore_API_DEFINITIONS} SHARED_LIB ) @@ -32,7 +31,7 @@ if ( KPMcore_FOUND AND Qt5DBus_FOUND AND KF5CoreAddons_FOUND AND KF5Config_FOUND Tests.cpp LIBRARIES calamares_job_fsresizer # From above - yamlcpp + yamlcpp::yamlcpp DEFINITIONS ${KPMcore_API_DEFINITIONS} ) else() diff --git a/src/modules/hostinfo/CMakeLists.txt b/src/modules/hostinfo/CMakeLists.txt index cdf5857e6..55be66f81 100644 --- a/src/modules/hostinfo/CMakeLists.txt +++ b/src/modules/hostinfo/CMakeLists.txt @@ -28,8 +28,6 @@ calamares_add_plugin( hostinfo EXPORT_MACRO PLUGINDLLEXPORT_PRO SOURCES HostInfoJob.cpp - LINK_PRIVATE_LIBRARIES - calamares SHARED_LIB NO_CONFIG ) @@ -44,5 +42,5 @@ calamares_add_test( Tests.cpp HostInfoJob.cpp LIBRARIES - yamlcpp + yamlcpp::yamlcpp ) diff --git a/src/modules/initcpio/CMakeLists.txt b/src/modules/initcpio/CMakeLists.txt index e8d90e7fa..48fd09371 100644 --- a/src/modules/initcpio/CMakeLists.txt +++ b/src/modules/initcpio/CMakeLists.txt @@ -8,8 +8,6 @@ calamares_add_plugin( initcpio EXPORT_MACRO PLUGINDLLEXPORT_PRO SOURCES InitcpioJob.cpp - LINK_PRIVATE_LIBRARIES - calamares SHARED_LIB ) @@ -19,5 +17,5 @@ calamares_add_test( Tests.cpp LIBRARIES calamares_job_initcpio # From above - yamlcpp + yamlcpp::yamlcpp ) diff --git a/src/modules/initramfs/CMakeLists.txt b/src/modules/initramfs/CMakeLists.txt index b8bcc9681..2dec41cba 100644 --- a/src/modules/initramfs/CMakeLists.txt +++ b/src/modules/initramfs/CMakeLists.txt @@ -8,8 +8,6 @@ calamares_add_plugin( initramfs EXPORT_MACRO PLUGINDLLEXPORT_PRO SOURCES InitramfsJob.cpp - LINK_PRIVATE_LIBRARIES - calamares SHARED_LIB ) @@ -19,5 +17,5 @@ calamares_add_test( Tests.cpp LIBRARIES calamares_job_initramfs # From above - yamlcpp + yamlcpp::yamlcpp ) diff --git a/src/modules/interactiveterminal/CMakeLists.txt b/src/modules/interactiveterminal/CMakeLists.txt index fea99a5dd..20aee8257 100644 --- a/src/modules/interactiveterminal/CMakeLists.txt +++ b/src/modules/interactiveterminal/CMakeLists.txt @@ -25,8 +25,6 @@ if ( KF5Parts_FOUND AND KF5Service_FOUND ) SOURCES InteractiveTerminalViewStep.cpp InteractiveTerminalPage.cpp - LINK_PRIVATE_LIBRARIES - calamaresui LINK_LIBRARIES KF5::Service KF5::Parts diff --git a/src/modules/keyboard/CMakeLists.txt b/src/modules/keyboard/CMakeLists.txt index 32e9a0592..fe341cef0 100644 --- a/src/modules/keyboard/CMakeLists.txt +++ b/src/modules/keyboard/CMakeLists.txt @@ -18,8 +18,6 @@ calamares_add_plugin( keyboard KeyboardPage.ui RESOURCES keyboard.qrc - LINK_PRIVATE_LIBRARIES - calamaresui SHARED_LIB ) diff --git a/src/modules/keyboard/Config.cpp b/src/modules/keyboard/Config.cpp index d286e26fd..b77282a18 100644 --- a/src/modules/keyboard/Config.cpp +++ b/src/modules/keyboard/Config.cpp @@ -16,6 +16,7 @@ #include "GlobalStorage.h" #include "JobQueue.h" #include "utils/Logger.h" +#include "utils/RAII.h" #include "utils/Retranslator.h" #include "utils/String.h" #include "utils/Variant.h" @@ -168,54 +169,70 @@ Config::Config( QObject* parent ) emit prettyStatusChanged(); } ); - connect( m_keyboardVariantsModel, &KeyboardVariantsModel::currentIndexChanged, [&]( int index ) { - // Set Xorg keyboard layout + variant - m_selectedVariant = m_keyboardVariantsModel->key( index ); + connect( m_keyboardVariantsModel, &KeyboardVariantsModel::currentIndexChanged, this, &Config::xkbChanged ); - if ( m_setxkbmapTimer.isActive() ) - { - m_setxkbmapTimer.stop(); - m_setxkbmapTimer.disconnect( this ); - } - - connect( &m_setxkbmapTimer, &QTimer::timeout, this, [=] { - m_additionalLayoutInfo = getAdditionalLayoutInfo( m_selectedLayout ); - - if ( !m_additionalLayoutInfo.additionalLayout.isEmpty() ) - { - m_additionalLayoutInfo.groupSwitcher = xkbmap_query_grp_option(); - - if ( m_additionalLayoutInfo.groupSwitcher.isEmpty() ) - { - m_additionalLayoutInfo.groupSwitcher = "grp:alt_shift_toggle"; - } - - QProcess::execute( "setxkbmap", - xkbmap_layout_args( { m_additionalLayoutInfo.additionalLayout, m_selectedLayout }, - { m_additionalLayoutInfo.additionalVariant, m_selectedVariant }, - m_additionalLayoutInfo.groupSwitcher ) ); - - - cDebug() << "xkbmap selection changed to: " << m_selectedLayout << '-' << m_selectedVariant << "(added " - << m_additionalLayoutInfo.additionalLayout << "-" << m_additionalLayoutInfo.additionalVariant - << " since current layout is not ASCII-capable)"; - } - else - { - QProcess::execute( "setxkbmap", xkbmap_layout_args( m_selectedLayout, m_selectedVariant ) ); - cDebug() << "xkbmap selection changed to: " << m_selectedLayout << '-' << m_selectedVariant; - } - m_setxkbmapTimer.disconnect( this ); - } ); - m_setxkbmapTimer.start( QApplication::keyboardInputInterval() ); - emit prettyStatusChanged(); - } ); + // If the user picks something explicitly -- not a consequence of + // a guess -- then move to UserSelected state and stay there. + connect( m_keyboardModelsModel, &KeyboardModelsModel::currentIndexChanged, this, &Config::selectionChange ); + connect( m_keyboardLayoutsModel, &KeyboardLayoutModel::currentIndexChanged, this, &Config::selectionChange ); + connect( m_keyboardVariantsModel, &KeyboardVariantsModel::currentIndexChanged, this, &Config::selectionChange ); m_selectedModel = m_keyboardModelsModel->key( m_keyboardModelsModel->currentIndex() ); m_selectedLayout = m_keyboardLayoutsModel->item( m_keyboardLayoutsModel->currentIndex() ).first; m_selectedVariant = m_keyboardVariantsModel->key( m_keyboardVariantsModel->currentIndex() ); } +void +Config::xkbChanged( int index ) +{ + // Set Xorg keyboard layout + variant + m_selectedVariant = m_keyboardVariantsModel->key( index ); + + if ( m_setxkbmapTimer.isActive() ) + { + m_setxkbmapTimer.stop(); + m_setxkbmapTimer.disconnect( this ); + } + + connect( &m_setxkbmapTimer, &QTimer::timeout, this, &Config::xkbApply ); + + m_setxkbmapTimer.start( QApplication::keyboardInputInterval() ); + emit prettyStatusChanged(); +} + +void +Config::xkbApply() +{ + m_additionalLayoutInfo = getAdditionalLayoutInfo( m_selectedLayout ); + + if ( !m_additionalLayoutInfo.additionalLayout.isEmpty() ) + { + m_additionalLayoutInfo.groupSwitcher = xkbmap_query_grp_option(); + + if ( m_additionalLayoutInfo.groupSwitcher.isEmpty() ) + { + m_additionalLayoutInfo.groupSwitcher = "grp:alt_shift_toggle"; + } + + QProcess::execute( "setxkbmap", + xkbmap_layout_args( { m_additionalLayoutInfo.additionalLayout, m_selectedLayout }, + { m_additionalLayoutInfo.additionalVariant, m_selectedVariant }, + m_additionalLayoutInfo.groupSwitcher ) ); + + + cDebug() << "xkbmap selection changed to: " << m_selectedLayout << '-' << m_selectedVariant << "(added " + << m_additionalLayoutInfo.additionalLayout << "-" << m_additionalLayoutInfo.additionalVariant + << " since current layout is not ASCII-capable)"; + } + else + { + QProcess::execute( "setxkbmap", xkbmap_layout_args( m_selectedLayout, m_selectedVariant ) ); + cDebug() << "xkbmap selection changed to: " << m_selectedLayout << '-' << m_selectedVariant; + } + m_setxkbmapTimer.disconnect( this ); +} + + KeyboardModelsModel* Config::keyboardModels() const { @@ -254,6 +271,13 @@ findLayout( const KeyboardLayoutModel* klm, const QString& currentLayout ) void Config::detectCurrentKeyboardLayout() { + if ( m_state != State::Initial ) + { + return; + } + cPointerSetter returnToIntial( &m_state, State::Initial ); + m_state = State::Guessing; + //### Detect current keyboard layout and variant QString currentLayout; QString currentVariant; @@ -356,22 +380,22 @@ Config::createJobs() return list; } -void -Config::guessLayout( const QStringList& langParts ) +static void +guessLayout( const QStringList& langParts, KeyboardLayoutModel* layouts, KeyboardVariantsModel* variants ) { bool foundCountryPart = false; for ( auto countryPart = langParts.rbegin(); !foundCountryPart && countryPart != langParts.rend(); ++countryPart ) { cDebug() << Logger::SubEntry << "looking for locale part" << *countryPart; - for ( int i = 0; i < m_keyboardLayoutsModel->rowCount(); ++i ) + for ( int i = 0; i < layouts->rowCount(); ++i ) { - QModelIndex idx = m_keyboardLayoutsModel->index( i ); + QModelIndex idx = layouts->index( i ); QString name = idx.isValid() ? idx.data( KeyboardLayoutModel::KeyboardLayoutKeyRole ).toString() : QString(); if ( idx.isValid() && ( name.compare( *countryPart, Qt::CaseInsensitive ) == 0 ) ) { cDebug() << Logger::SubEntry << "matched" << name; - m_keyboardLayoutsModel->setCurrentIndex( i ); + layouts->setCurrentIndex( i ); foundCountryPart = true; break; } @@ -382,14 +406,13 @@ Config::guessLayout( const QStringList& langParts ) if ( countryPart != langParts.rend() ) { cDebug() << "Next level:" << *countryPart; - for ( int variantnumber = 0; variantnumber < m_keyboardVariantsModel->rowCount(); ++variantnumber ) + for ( int variantnumber = 0; variantnumber < variants->rowCount(); ++variantnumber ) { - if ( m_keyboardVariantsModel->key( variantnumber ).compare( *countryPart, Qt::CaseInsensitive ) - == 0 ) + if ( variants->key( variantnumber ).compare( *countryPart, Qt::CaseInsensitive ) == 0 ) { - m_keyboardVariantsModel->setCurrentIndex( variantnumber ); + variants->setCurrentIndex( variantnumber ); cDebug() << Logger::SubEntry << "matched variant" << *countryPart << ' ' - << m_keyboardVariantsModel->key( variantnumber ); + << variants->key( variantnumber ); } } } @@ -398,8 +421,15 @@ Config::guessLayout( const QStringList& langParts ) } void -Config::onActivate() +Config::guessLocaleKeyboardLayout() { + if ( m_state != State::Initial ) + { + return; + } + cPointerSetter returnToIntial( &m_state, State::Initial ); + m_state = State::Guessing; + /* Guessing a keyboard layout based on the locale means * mapping between language identifiers in _ * format to keyboard mappings, which are _ @@ -485,7 +515,7 @@ Config::onActivate() QString country = QLocale::countryToString( QLocale( lang ).country() ); cDebug() << Logger::SubEntry << "extracted country" << country << "::" << langParts; - guessLayout( langParts ); + guessLayout( langParts, m_keyboardLayoutsModel, m_keyboardVariantsModel ); } } @@ -547,3 +577,12 @@ Config::retranslate() { retranslateKeyboardModels(); } + +void +Config::selectionChange() +{ + if ( m_state == State::Initial ) + { + m_state = State::UserSelected; + } +} diff --git a/src/modules/keyboard/Config.h b/src/modules/keyboard/Config.h index 90eeb0e7b..436ead4b5 100644 --- a/src/modules/keyboard/Config.h +++ b/src/modules/keyboard/Config.h @@ -32,16 +32,17 @@ class Config : public QObject public: Config( QObject* parent = nullptr ); + /// @brief Based on current xkb settings, pick a layout void detectCurrentKeyboardLayout(); + /// @brief Based on current locale, pick a layout + void guessLocaleKeyboardLayout(); Calamares::JobList createJobs(); QString prettyStatus() const; - void onActivate(); + /// @brief When leaving the page, write to GS void finalize(); - void setConfigurationMap( const QVariantMap& configurationMap ); - static AdditionalLayoutInfo getAdditionalLayoutInfo( const QString& layout ); /* A model is a physical configuration of a keyboard, e.g. 105-key PC @@ -69,13 +70,26 @@ public: */ void retranslate(); + void setConfigurationMap( const QVariantMap& configurationMap ); + signals: void prettyStatusChanged(); private: - void guessLayout( const QStringList& langParts ); void updateVariants( const QPersistentModelIndex& currentItem, QString currentVariant = QString() ); + /* These two methods are used in tandem to apply changes to the + * keyboard layout. This introduces a slight delay between selecting + * a keyboard, and applying it to the system -- so that if you + * scroll through or down-arrow through the list of keyboards, + * you don't get buried under xkbset processes. + * + * xkbChanged() is called when the selection changes, and triggers + * a delayed call to xkbApply() which does the actual work. + */ + void xkbChanged( int index ); + void xkbApply(); + KeyboardModelsModel* m_keyboardModelsModel; KeyboardLayoutModel* m_keyboardLayoutsModel; KeyboardVariantsModel* m_keyboardVariantsModel; @@ -93,6 +107,24 @@ private: QString m_xOrgConfFileName; QString m_convertedKeymapPath; bool m_writeEtcDefaultKeyboard = true; + + // The state determines whether we guess settings or preserve them: + // - Initial -> Guessing + // - Initial -> UserSelected + // - Guessing -> Initial + enum class State + { + Initial, // after configuration, nothing special going on + Guessing, // on activation + UserSelected // explicit choice is made, preserve that + }; + State m_state = State::Initial; + + /** @brief Handles state change when selections in model, variant, layout + * + * This handles the Initial -> UserSelected transition in particular. + */ + void selectionChange(); }; diff --git a/src/modules/keyboard/KeyboardViewStep.cpp b/src/modules/keyboard/KeyboardViewStep.cpp index d1eb3eb68..029e1ae85 100644 --- a/src/modules/keyboard/KeyboardViewStep.cpp +++ b/src/modules/keyboard/KeyboardViewStep.cpp @@ -95,7 +95,7 @@ KeyboardViewStep::jobs() const void KeyboardViewStep::onActivate() { - m_config->onActivate(); + m_config->guessLocaleKeyboardLayout(); } diff --git a/src/modules/keyboardq/CMakeLists.txt b/src/modules/keyboardq/CMakeLists.txt index cc1e7e2c3..2b0577aa7 100644 --- a/src/modules/keyboardq/CMakeLists.txt +++ b/src/modules/keyboardq/CMakeLists.txt @@ -23,7 +23,5 @@ calamares_add_plugin( keyboardq ${_keyboard}/keyboardwidget/keyboardglobal.cpp RESOURCES keyboardq.qrc - LINK_PRIVATE_LIBRARIES - calamaresui SHARED_LIB ) diff --git a/src/modules/keyboardq/KeyboardQmlViewStep.cpp b/src/modules/keyboardq/KeyboardQmlViewStep.cpp index e8ae630e7..231d2a090 100644 --- a/src/modules/keyboardq/KeyboardQmlViewStep.cpp +++ b/src/modules/keyboardq/KeyboardQmlViewStep.cpp @@ -71,7 +71,7 @@ KeyboardQmlViewStep::jobs() const void KeyboardQmlViewStep::onActivate() { - m_config->onActivate(); + m_config->guessLocaleKeyboardLayout(); } void diff --git a/src/modules/license/CMakeLists.txt b/src/modules/license/CMakeLists.txt index baaf34b43..0cd838799 100644 --- a/src/modules/license/CMakeLists.txt +++ b/src/modules/license/CMakeLists.txt @@ -14,7 +14,5 @@ calamares_add_plugin( license LicenseWidget.cpp UI LicensePage.ui - LINK_PRIVATE_LIBRARIES - calamaresui SHARED_LIB ) diff --git a/src/modules/locale/CMakeLists.txt b/src/modules/locale/CMakeLists.txt index 3802f92b2..272dea3de 100644 --- a/src/modules/locale/CMakeLists.txt +++ b/src/modules/locale/CMakeLists.txt @@ -31,10 +31,9 @@ calamares_add_plugin( locale RESOURCES locale.qrc LINK_PRIVATE_LIBRARIES - calamaresui Qt5::Network ${geoip_libs} - yamlcpp + yamlcpp::yamlcpp SHARED_LIB ) diff --git a/src/modules/localeq/CMakeLists.txt b/src/modules/localeq/CMakeLists.txt index 55c16091c..ee3f07314 100644 --- a/src/modules/localeq/CMakeLists.txt +++ b/src/modules/localeq/CMakeLists.txt @@ -43,7 +43,6 @@ calamares_add_plugin( localeq RESOURCES localeq.qrc LINK_PRIVATE_LIBRARIES - calamaresui Qt5::Network SHARED_LIB ) diff --git a/src/modules/luksbootkeyfile/CMakeLists.txt b/src/modules/luksbootkeyfile/CMakeLists.txt index 1782e7e0e..6e98af468 100644 --- a/src/modules/luksbootkeyfile/CMakeLists.txt +++ b/src/modules/luksbootkeyfile/CMakeLists.txt @@ -8,8 +8,6 @@ calamares_add_plugin( luksbootkeyfile EXPORT_MACRO PLUGINDLLEXPORT_PRO SOURCES LuksBootKeyFileJob.cpp - LINK_PRIVATE_LIBRARIES - calamares SHARED_LIB NO_CONFIG ) diff --git a/src/modules/machineid/CMakeLists.txt b/src/modules/machineid/CMakeLists.txt index 360c0cc8a..0ab035ab4 100644 --- a/src/modules/machineid/CMakeLists.txt +++ b/src/modules/machineid/CMakeLists.txt @@ -9,8 +9,6 @@ calamares_add_plugin( machineid SOURCES MachineIdJob.cpp Workers.cpp - LINK_PRIVATE_LIBRARIES - calamares SHARED_LIB ) diff --git a/src/modules/netinstall/CMakeLists.txt b/src/modules/netinstall/CMakeLists.txt index 6b7270db1..f31ac6d79 100644 --- a/src/modules/netinstall/CMakeLists.txt +++ b/src/modules/netinstall/CMakeLists.txt @@ -16,9 +16,7 @@ calamares_add_plugin( netinstall UI page_netinst.ui LINK_PRIVATE_LIBRARIES - calamaresui Qt5::Network - yamlcpp SHARED_LIB ) @@ -32,6 +30,5 @@ calamares_add_test( PackageModel.cpp LIBRARIES Qt5::Gui - yamlcpp ) diff --git a/src/modules/notesqml/CMakeLists.txt b/src/modules/notesqml/CMakeLists.txt index a5edc7d04..5eab06663 100644 --- a/src/modules/notesqml/CMakeLists.txt +++ b/src/modules/notesqml/CMakeLists.txt @@ -15,7 +15,5 @@ calamares_add_plugin( notesqml NotesQmlViewStep.cpp RESOURCES notesqml.qrc - LINK_PRIVATE_LIBRARIES - calamaresui SHARED_LIB ) diff --git a/src/modules/oemid/CMakeLists.txt b/src/modules/oemid/CMakeLists.txt index 68a1b653e..af7fe1ff7 100644 --- a/src/modules/oemid/CMakeLists.txt +++ b/src/modules/oemid/CMakeLists.txt @@ -12,7 +12,6 @@ calamares_add_plugin( oemid UI OEMPage.ui LINK_PRIVATE_LIBRARIES - calamaresui Qt5::Widgets SHARED_LIB ) diff --git a/src/modules/packagechooser/CMakeLists.txt b/src/modules/packagechooser/CMakeLists.txt index f08658037..d2e6ff118 100644 --- a/src/modules/packagechooser/CMakeLists.txt +++ b/src/modules/packagechooser/CMakeLists.txt @@ -55,7 +55,6 @@ calamares_add_plugin( packagechooser UI page_package.ui LINK_PRIVATE_LIBRARIES - calamaresui ${_extra_libraries} SHARED_LIB ) diff --git a/src/modules/packages/main.py b/src/modules/packages/main.py index 9be079dac..7d383b552 100644 --- a/src/modules/packages/main.py +++ b/src/modules/packages/main.py @@ -151,6 +151,82 @@ class PackageManager(metaclass=abc.ABCMeta): self.remove([packagedata["package"]]) self.run(packagedata["post-script"]) + def operation_install(self, package_list, from_local=False): + """ + Installs the list of packages named in @p package_list . + These can be strings -- plain package names -- or + structures (with a pre- and post-install step). + + This operation is called for "critical" packages, + which are expected to succeed, or fail, all together. + However, if there are packages with pre- or post-scripts, + then packages are installed one-by-one instead. + + NOTE: package managers may reimplement this method + NOTE: exceptions are expected to leave this method, to indicate + failure of the installation. + """ + if all([isinstance(x, str) for x in package_list]): + self.install(package_list, from_local=from_local) + else: + for package in package_list: + self.install_package(package, from_local=from_local) + + def operation_try_install(self, package_list): + """ + Installs the list of packages named in @p package_list . + These can be strings -- plain package names -- or + structures (with a pre- and post-install step). + + This operation is called for "non-critical" packages, + which can succeed or fail without affecting the overall installation. + Packages are installed one-by-one to support package managers + that do not have a "install as much as you can" mode. + + NOTE: package managers may reimplement this method + NOTE: no package-installation exceptions should be raised + """ + # we make a separate package manager call for each package so a + # single failing package won't stop all of them + for package in package_list: + try: + self.install_package(package) + except subprocess.CalledProcessError: + libcalamares.utils.warning("Could not install package %s" % package) + + def operation_remove(self, package_list): + """ + Removes the list of packages named in @p package_list . + These can be strings -- plain package names -- or + structures (with a pre- and post-install step). + + This operation is called for "critical" packages, which are + expected to succeed or fail all together. + However, if there are packages with pre- or post-scripts, + then packages are removed one-by-one instead. + + NOTE: package managers may reimplement this method + NOTE: exceptions should be raised to indicate failure + """ + if all([isinstance(x, str) for x in package_list]): + self.remove(package_list) + else: + for package in package_list: + self.remove_package(package) + + def operation_try_remove(self, package_list): + """ + Same relation as try_install has to install, except it removes + packages instead. Packages are removed one-by-one. + + NOTE: package managers may reimplement this method + NOTE: no package-installation exceptions should be raised + """ + for package in package_list: + try: + self.remove_package(package) + except subprocess.CalledProcessError: + libcalamares.utils.warning("Could not remove package %s" % package) ### PACKAGE MANAGER IMPLEMENTATIONS # @@ -503,45 +579,19 @@ def run_operations(pkgman, entry): group_packages = len(package_list) if key == "install": _change_mode(INSTALL) - if all([isinstance(x, str) for x in package_list]): - pkgman.install(package_list) - else: - for package in package_list: - pkgman.install_package(package) + pkgman.operation_install(package_list) elif key == "try_install": _change_mode(INSTALL) - # we make a separate package manager call for each package so a - # single failing package won't stop all of them - for package in package_list: - try: - pkgman.install_package(package) - except subprocess.CalledProcessError: - warn_text = "Could not install package " - warn_text += str(package) - libcalamares.utils.warning(warn_text) + pkgman.operation_try_install(package_list) elif key == "remove": _change_mode(REMOVE) - if all([isinstance(x, str) for x in package_list]): - pkgman.remove(package_list) - else: - for package in package_list: - pkgman.remove_package(package) + pkgman.operation_remove(package_list) elif key == "try_remove": _change_mode(REMOVE) - for package in package_list: - try: - pkgman.remove_package(package) - except subprocess.CalledProcessError: - warn_text = "Could not remove package " - warn_text += str(package) - libcalamares.utils.warning(warn_text) + pkgman.operation_try_remove(package_list) elif key == "localInstall": _change_mode(INSTALL) - if all([isinstance(x, str) for x in package_list]): - pkgman.install(package_list, from_local=True) - else: - for package in package_list: - pkgman.install_package(package, from_local=True) + pkgman.operation_install(package_list, from_local=True) elif key == "source": libcalamares.utils.debug("Package-list from {!s}".format(entry[key])) else: @@ -626,7 +676,7 @@ def run(): libcalamares.utils.debug("stdout:" + str(e.stdout)) libcalamares.utils.debug("stderr:" + str(e.stderr)) return (_("Package Manager error"), - _("The package manager could make changes to the installed system. The command
{!s}
returned error code {!s}.") + _("The package manager could not make changes to the installed system. The command
{!s}
returned error code {!s}.") .format(e.cmd, e.returncode)) mode_packages = None diff --git a/src/modules/partition/CMakeLists.txt b/src/modules/partition/CMakeLists.txt index 26d4ffae7..96378d98d 100644 --- a/src/modules/partition/CMakeLists.txt +++ b/src/modules/partition/CMakeLists.txt @@ -108,7 +108,6 @@ if ( KPMcore_FOUND AND Qt5DBus_FOUND AND KF5CoreAddons_FOUND AND KF5Config_FOUND gui/VolumeGroupBaseDialog.ui LINK_PRIVATE_LIBRARIES kpmcore - calamaresui KF5::CoreAddons COMPILE_DEFINITIONS ${_partition_defs} SHARED_LIB diff --git a/src/modules/partition/PartitionViewStep.cpp b/src/modules/partition/PartitionViewStep.cpp index 015aab2ce..d3d45bc8a 100644 --- a/src/modules/partition/PartitionViewStep.cpp +++ b/src/modules/partition/PartitionViewStep.cpp @@ -51,7 +51,7 @@ PartitionViewStep::PartitionViewStep( QObject* parent ) m_waitingWidget = new WaitingWidget( QString() ); m_widget->addWidget( m_waitingWidget ); - CALAMARES_RETRANSLATE( m_waitingWidget->setText( tr( "Gathering system information..." ) ); ); + CALAMARES_RETRANSLATE( if (m_waitingWidget) { m_waitingWidget->setText( tr( "Gathering system information..." ) ); } ); m_core = new PartitionCoreModule( this ); // Unusable before init is complete! // We're not done loading, but we need the configuration map first. diff --git a/src/modules/partition/gui/ChoicePage.cpp b/src/modules/partition/gui/ChoicePage.cpp index 4eac761e6..5f3832fa0 100644 --- a/src/modules/partition/gui/ChoicePage.cpp +++ b/src/modules/partition/gui/ChoicePage.cpp @@ -118,9 +118,7 @@ ChoicePage::ChoicePage( Config* config, QWidget* parent ) CalamaresUtils::unmarginLayout( m_itemsLayout ); // Drive selector + preview - CALAMARES_RETRANSLATE( retranslateUi( this ); m_drivesLabel->setText( tr( "Select storage de&vice:" ) ); - m_previewBeforeLabel->setText( tr( "Current:" ) ); - m_previewAfterLabel->setText( tr( "After:" ) ); ); + CALAMARES_RETRANSLATE_SLOT( &ChoicePage::retranslate ); m_previewBeforeFrame->setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Expanding ); m_previewAfterFrame->setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Expanding ); @@ -134,6 +132,18 @@ ChoicePage::ChoicePage( Config* config, QWidget* parent ) ChoicePage::~ChoicePage() {} +void +ChoicePage::retranslate() +{ + retranslateUi( this ); + m_drivesLabel->setText( tr( "Select storage de&vice:" ) ); + m_previewBeforeLabel->setText( tr( "Current:" ) ); + m_previewAfterLabel->setText( tr( "After:" ) ); + + updateSwapChoicesTr(); + updateChoiceButtonsTr(); +} + /** @brief Sets the @p model for the given @p box and adjusts UI sizes to match. * @@ -174,10 +184,7 @@ ChoicePage::init( PartitionCoreModule* core ) } ); setModelToComboBox( m_drivesCombo, core->deviceModel() ); - connect( m_drivesCombo, - qOverload( &QComboBox::currentIndexChanged ), - this, - &ChoicePage::applyDeviceChoice ); + connect( m_drivesCombo, qOverload< int >( &QComboBox::currentIndexChanged ), this, &ChoicePage::applyDeviceChoice ); connect( m_encryptWidget, &EncryptWidget::stateChanged, this, &ChoicePage::onEncryptWidgetStateChanged ); connect( m_reuseHomeCheckBox, &QCheckBox::stateChanged, this, &ChoicePage::onHomeCheckBoxStateChanged ); @@ -270,11 +277,12 @@ ChoicePage::setupChoices() m_eraseButton->addOptionsComboBox( m_eraseSwapChoiceComboBox ); } - if ( m_config->eraseFsTypes().count() > 1) + if ( m_config->eraseFsTypes().count() > 1 ) { m_eraseFsTypesChoiceComboBox = new QComboBox; - m_eraseFsTypesChoiceComboBox->addItems(m_config->eraseFsTypes()); - connect( m_eraseFsTypesChoiceComboBox, &QComboBox::currentTextChanged, m_config, &Config::setEraseFsTypeChoice ); + m_eraseFsTypesChoiceComboBox->addItems( m_config->eraseFsTypes() ); + connect( + m_eraseFsTypesChoiceComboBox, &QComboBox::currentTextChanged, m_config, &Config::setEraseFsTypeChoice ); connect( m_config, &Config::eraseModeFilesystemChanged, this, &ChoicePage::onActionChanged ); m_eraseButton->addOptionsComboBox( m_eraseFsTypesChoiceComboBox ); } @@ -324,14 +332,15 @@ ChoicePage::setupChoices() connect( this, &ChoicePage::actionChosen, this, &ChoicePage::onActionChanged ); if ( m_eraseSwapChoiceComboBox ) + { connect( m_eraseSwapChoiceComboBox, QOverload< int >::of( &QComboBox::currentIndexChanged ), this, &ChoicePage::onEraseSwapChoiceChanged ); + } - CALAMARES_RETRANSLATE( m_somethingElseButton->setText( tr( "Manual partitioning
" - "You can create or resize partitions yourself." ) ); - updateSwapChoicesTr( m_eraseSwapChoiceComboBox ); ); + updateSwapChoicesTr(); + updateChoiceButtonsTr(); } @@ -1609,51 +1618,61 @@ ChoicePage::updateNextEnabled() } void -ChoicePage::updateSwapChoicesTr( QComboBox* box ) +ChoicePage::updateSwapChoicesTr() { - if ( !box ) + if ( !m_eraseSwapChoiceComboBox ) { return; } static_assert( SwapChoice::NoSwap == 0, "Enum values out-of-sync" ); - for ( int index = 0; index < box->count(); ++index ) + for ( int index = 0; index < m_eraseSwapChoiceComboBox->count(); ++index ) { bool ok = false; int value = 0; - switch ( value = box->itemData( index ).toInt( &ok ) ) + switch ( value = m_eraseSwapChoiceComboBox->itemData( index ).toInt( &ok ) ) { // case 0: case SwapChoice::NoSwap: // toInt() returns 0 on failure, so check for ok if ( ok ) // It was explicitly set to 0 { - box->setItemText( index, tr( "No Swap" ) ); + m_eraseSwapChoiceComboBox->setItemText( index, tr( "No Swap" ) ); } else { - cWarning() << "Box item" << index << box->itemText( index ) << "has non-integer role."; + cWarning() << "Box item" << index << m_eraseSwapChoiceComboBox->itemText( index ) << "has non-integer role."; } break; case SwapChoice::ReuseSwap: - box->setItemText( index, tr( "Reuse Swap" ) ); + m_eraseSwapChoiceComboBox->setItemText( index, tr( "Reuse Swap" ) ); break; case SwapChoice::SmallSwap: - box->setItemText( index, tr( "Swap (no Hibernate)" ) ); + m_eraseSwapChoiceComboBox->setItemText( index, tr( "Swap (no Hibernate)" ) ); break; case SwapChoice::FullSwap: - box->setItemText( index, tr( "Swap (with Hibernate)" ) ); + m_eraseSwapChoiceComboBox->setItemText( index, tr( "Swap (with Hibernate)" ) ); break; case SwapChoice::SwapFile: - box->setItemText( index, tr( "Swap to file" ) ); + m_eraseSwapChoiceComboBox->setItemText( index, tr( "Swap to file" ) ); break; default: - cWarning() << "Box item" << index << box->itemText( index ) << "has role" << value; + cWarning() << "Box item" << index << m_eraseSwapChoiceComboBox->itemText( index ) << "has role" << value; } } } +void +ChoicePage::updateChoiceButtonsTr() +{ + if ( m_somethingElseButton ) + { + m_somethingElseButton->setText( tr( "Manual partitioning
" + "You can create or resize partitions yourself." ) ); + } +} + int ChoicePage::lastSelectedDeviceIndex() { diff --git a/src/modules/partition/gui/ChoicePage.h b/src/modules/partition/gui/ChoicePage.h index 5e0a24d43..3892b4a23 100644 --- a/src/modules/partition/gui/ChoicePage.h +++ b/src/modules/partition/gui/ChoicePage.h @@ -101,6 +101,8 @@ private slots: /// @brief Calls onActionChanged() as needed. void onEraseSwapChoiceChanged(); + void retranslate(); + private: bool calculateNextEnabled() const; void updateNextEnabled(); @@ -122,7 +124,8 @@ private: void setupEfiSystemPartitionSelector(); // Translations support - void updateSwapChoicesTr( QComboBox* box ); + void updateSwapChoicesTr(); + void updateChoiceButtonsTr(); Config* m_config; bool m_nextEnabled; diff --git a/src/modules/plasmalnf/CMakeLists.txt b/src/modules/plasmalnf/CMakeLists.txt index 3a85d9598..8ae205aed 100644 --- a/src/modules/plasmalnf/CMakeLists.txt +++ b/src/modules/plasmalnf/CMakeLists.txt @@ -44,7 +44,6 @@ if ( KF5Plasma_FOUND AND KF5Package_FOUND ) UI page_plasmalnf.ui LINK_PRIVATE_LIBRARIES - calamaresui KF5::Package KF5::Plasma SHARED_LIB diff --git a/src/modules/preservefiles/CMakeLists.txt b/src/modules/preservefiles/CMakeLists.txt index d19645089..820c50a2b 100644 --- a/src/modules/preservefiles/CMakeLists.txt +++ b/src/modules/preservefiles/CMakeLists.txt @@ -10,8 +10,6 @@ calamares_add_plugin( preservefiles EXPORT_MACRO PLUGINDLLEXPORT_PRO SOURCES PreserveFiles.cpp - LINK_PRIVATE_LIBRARIES - calamares # REQUIRES mount # To set the rootMountPoint SHARED_LIB EMERGENCY diff --git a/src/modules/removeuser/CMakeLists.txt b/src/modules/removeuser/CMakeLists.txt index cf4243e7d..7663b3472 100644 --- a/src/modules/removeuser/CMakeLists.txt +++ b/src/modules/removeuser/CMakeLists.txt @@ -8,7 +8,5 @@ calamares_add_plugin( removeuser EXPORT_MACRO PLUGINDLLEXPORT_PRO SOURCES RemoveUserJob.cpp - LINK_PRIVATE_LIBRARIES - calamares SHARED_LIB ) diff --git a/src/modules/shellprocess/CMakeLists.txt b/src/modules/shellprocess/CMakeLists.txt index 448be0625..ac6630c6d 100644 --- a/src/modules/shellprocess/CMakeLists.txt +++ b/src/modules/shellprocess/CMakeLists.txt @@ -8,8 +8,6 @@ calamares_add_plugin( shellprocess EXPORT_MACRO PLUGINDLLEXPORT_PRO SOURCES ShellProcessJob.cpp - LINK_PRIVATE_LIBRARIES - calamares SHARED_LIB ) @@ -18,5 +16,5 @@ calamares_add_test( SOURCES Tests.cpp LIBRARIES - yamlcpp + yamlcpp::yamlcpp ) diff --git a/src/modules/summary/CMakeLists.txt b/src/modules/summary/CMakeLists.txt index 57dc731cb..2c30dc31a 100644 --- a/src/modules/summary/CMakeLists.txt +++ b/src/modules/summary/CMakeLists.txt @@ -11,8 +11,6 @@ calamares_add_plugin( summary SummaryViewStep.cpp SummaryPage.cpp UI - LINK_PRIVATE_LIBRARIES - calamaresui SHARED_LIB NO_CONFIG ) diff --git a/src/modules/tracking/CMakeLists.txt b/src/modules/tracking/CMakeLists.txt index fe0b315e3..a878961b0 100644 --- a/src/modules/tracking/CMakeLists.txt +++ b/src/modules/tracking/CMakeLists.txt @@ -15,8 +15,6 @@ calamares_add_plugin( tracking page_trackingstep.ui RESOURCES page_trackingstep.qrc - LINK_PRIVATE_LIBRARIES - calamaresui SHARED_LIB ) diff --git a/src/modules/users/CMakeLists.txt b/src/modules/users/CMakeLists.txt index 2772a6b39..8203ecf08 100644 --- a/src/modules/users/CMakeLists.txt +++ b/src/modules/users/CMakeLists.txt @@ -71,7 +71,6 @@ calamares_add_plugin( users users.qrc LINK_PRIVATE_LIBRARIES users_internal - calamaresui ${CRYPT_LIBRARIES} ${USER_EXTRA_LIB} SHARED_LIB diff --git a/src/modules/usersq/CMakeLists.txt b/src/modules/usersq/CMakeLists.txt index 583a3384b..8465b0246 100644 --- a/src/modules/usersq/CMakeLists.txt +++ b/src/modules/usersq/CMakeLists.txt @@ -50,7 +50,6 @@ calamares_add_plugin( usersq usersq.qrc LINK_PRIVATE_LIBRARIES users_internal - calamaresui ${CRYPT_LIBRARIES} ${USER_EXTRA_LIB} Qt5::DBus diff --git a/src/modules/usersq/usersq.qml b/src/modules/usersq/usersq.qml index 8b4ec92cf..71155af4b 100644 --- a/src/modules/usersq/usersq.qml +++ b/src/modules/usersq/usersq.qml @@ -19,18 +19,25 @@ import QtGraphicalEffects 1.0 import QtQuick.Window 2.3 Kirigami.ScrollablePage { + // You can hard-code a color here, or bind to a Kirigami theme color, + // or use a color from Calamares branding, or .. + readonly property color unfilledFieldColor: "#FBFBFB" //Kirigami.Theme.backgroundColor + readonly property color positiveFieldColor: "#F0FFF0" //Kirigami.Theme.positiveBackgroundColor + readonly property color negativeFieldColor: "#EBCED1" //Kirigami.Theme.negativeBackgroundColor + readonly property color unfilledFieldOutlineColor: "#F1F1F1" + readonly property color positiveFieldOutlineColor: "#DCFFDC" + readonly property color negativeFieldOutlineColor: "#BE5F68" + readonly property color headerTextColor: "#1F1F1F" + readonly property color commentsColor: "#6D6D6D" width: parent.width height: parent.height - Kirigami.Theme.backgroundColor: "#EFF0F1" - Kirigami.Theme.textColor: "#1F1F1F" - header: Kirigami.Heading { Layout.fillWidth: true height: 50 horizontalAlignment: Qt.AlignHCenter - color: Kirigami.Theme.textColor + color: headerTextColor font.weight: Font.Medium font.pointSize: 12 text: qsTr("Pick your user name and credentials to login and perform admin tasks") @@ -57,8 +64,10 @@ Kirigami.ScrollablePage { text: config.fullName onTextChanged: config.setFullName(text) - palette.base: _userNameField.text.length ? "#f0fff0" : "#FBFBFB" - palette.highlight : _userNameField.text.length ? "#dcffdc" : "#FBFBFB" + palette.base: _userNameField.text.length + ? positiveFieldColor : unfilledFieldColor + palette.highlight : _userNameField.text.length + ? positiveFieldOutlineColor : unfilledFieldOutlineColor } } @@ -89,8 +98,17 @@ Kirigami.ScrollablePage { palette.base: _userLoginField.text.length ? ( acceptableInput ? ( _userLoginField.text === "root" - ? "#ffdae0" : "#f0fff0" ) : "#ffdae0" ) : "#FBFBFB" - palette.highlight : _userLoginField.text.length ? "#dcffdc" : "#FBFBFB" + ? negativeFieldColor + : positiveFieldColor ) + : negativeFieldColor ) + : unfilledFieldColor + palette.highlight : _userLoginField.text.length + ? ( acceptableInput + ? ( _userLoginField.text === "root" + ? negativeFieldOutlineColor + : positiveFieldOutlineColor ) + : negativeFieldOutlineColor ) + : unfilledFieldOutlineColor } Label { @@ -98,7 +116,7 @@ Kirigami.ScrollablePage { text: qsTr("If more than one person will use this computer, you can create multiple accounts after installation.") font.weight: Font.Thin font.pointSize: 8 - color: "#6D6D6D" + color: commentsColor } } @@ -143,10 +161,16 @@ Kirigami.ScrollablePage { palette.base: _hostName.text.length ? ( acceptableInput - ? ( _hostName.text === "localhost" ? "#ffdae0" : "#f0fff0" ) - : "#ffdae0") - : "#FBFBFB" - palette.highlight : _hostName.text.length ? "#dcffdc" : "#FBFBFB" + ? ( _hostName.text === "localhost" + ? negativeFieldColor : positiveFieldColor ) + : negativeFieldColor) + : unfilledFieldColor + palette.highlight : _hostName.text.length + ? ( acceptableInput + ? ( _hostName.text === "localhost" + ? negativeFieldOutlineColor : positiveFieldOutlineColor ) + : negativeFieldOutlineColor) + : unfilledFieldOutlineColor } Label { @@ -154,7 +178,7 @@ Kirigami.ScrollablePage { text: qsTr("This name will be used if you make the computer visible to others on a network.") font.weight: Font.Thin font.pointSize: 8 - color: "#6D6D6D" + color: commentsColor } } @@ -194,8 +218,10 @@ Kirigami.ScrollablePage { text: config.userPassword onTextChanged: config.setUserPassword(text) - palette.base: _passwordField.text.length ? "#f0fff0" : "#FBFBFB" - palette.highlight : _passwordField.text.length ? "#dcffdc" : "#FBFBFB" + palette.base: _passwordField.text.length + ? positiveFieldColor : unfilledFieldColor + palette.highlight : _passwordField.text.length + ? positiveFieldOutlineColor : unfilledFieldOutlineColor echoMode: TextInput.Password passwordMaskDelay: 300 @@ -217,9 +243,12 @@ Kirigami.ScrollablePage { palette.base: _verificationPasswordField.text.length ? ( _passwordField.text === _verificationPasswordField.text - ? "#f0fff0" : "#ffdae0" ) - : "#FBFBFB" - palette.highlight : _verificationPasswordField.text.length ? "#dcffdc" : "#FBFBFB" + ? positiveFieldColor : negativeFieldColor ) + : unfilledFieldColor + palette.highlight : _verificationPasswordField.text.length + ? ( _passwordField.text === _verificationPasswordField.text + ? positiveFieldOutlineColor : negativeFieldOutlineColor ) + : unfilledFieldOutlineColor echoMode: TextInput.Password passwordMaskDelay: 300 @@ -233,7 +262,7 @@ Kirigami.ScrollablePage { font.weight: Font.Thin font.pointSize: 8 wrapMode: Text.WordWrap - color: "#6D6D6D" + color: commentsColor } } @@ -272,7 +301,7 @@ Kirigami.ScrollablePage { text: qsTr("Use the same password for the administrator account.") font.weight: Font.Thin font.pointSize: 8 - color: "#6D6D6D" + color: commentsColor } Column { @@ -297,8 +326,10 @@ Kirigami.ScrollablePage { onTextChanged: config.setRootPassword(text) - palette.base: _rootPasswordField.text.length ? "#f0fff0" : "#FBFBFB" - palette.highlight : _rootPasswordField.text.length ? "#dcffdc" : "#FBFBFB" + palette.base: _rootPasswordField.text.length + ? positiveFieldColor : unfilledFieldColor + palette.highlight : _rootPasswordField.text.length + ? positiveFieldOutlineColor : unfilledFieldOutlineColor echoMode: TextInput.Password passwordMaskDelay: 300 @@ -313,15 +344,17 @@ Kirigami.ScrollablePage { onTextChanged: _rootPasswordField.text === _verificationRootPasswordField.text ? ( config.setRootPasswordSecondary(text), - rootPassMessage.visible = false, - rootValidityMessage.visible = true ) - : ( rootPassMessage.visible = true, - rootValidityMessage.visible = false ) + rootPassMessage.visible = false,rootValidityMessage.visible = true ) + : ( rootPassMessage.visible = true,rootValidityMessage.visible = false ) palette.base: _verificationRootPasswordField.text.length ? ( _rootPasswordField.text === _verificationRootPasswordField.text - ? "#f0fff0" : "#ffdae0") : "#FBFBFB" - palette.highlight : _verificationRootPasswordField.text.length ? "#dcffdc" : "#FBFBFB" + ? positiveFieldColor : negativeFieldColor) + : unfilledFieldColor + palette.highlight : _verificationRootPasswordField.text.length + ? ( _rootPasswordField.text === _verificationRootPasswordField.text + ? positiveFieldOutlineColor : negativeFieldOutlineColor) + : unfilledFieldOutlineColor echoMode: TextInput.Password passwordMaskDelay: 300 @@ -335,7 +368,7 @@ Kirigami.ScrollablePage { text: qsTr("Enter the same password twice, so that it can be checked for typing errors.") font.weight: Font.Thin font.pointSize: 8 - color: "#6D6D6D" + color: commentsColor } } @@ -383,7 +416,7 @@ Kirigami.ScrollablePage { text: qsTr("When this box is checked, password-strength checking is done and you will not be able to use a weak password.") font.weight: Font.Thin font.pointSize: 8 - color: "#6D6D6D" + color: commentsColor } } } diff --git a/src/modules/webview/CMakeLists.txt b/src/modules/webview/CMakeLists.txt index 8de5e690c..54e1d18b0 100644 --- a/src/modules/webview/CMakeLists.txt +++ b/src/modules/webview/CMakeLists.txt @@ -3,8 +3,7 @@ # SPDX-FileCopyrightText: 2020 Adriaan de Groot # SPDX-License-Identifier: BSD-2-Clause # -set( CALA_WEBVIEW_INCLUDE_DIRECTORIES ${PROJECT_BINARY_DIR}/src/libcalamaresui ) -set( CALA_WEBVIEW_LINK_LIBRARIES calamaresui ) +set( CALA_WEBVIEW_LINK_LIBRARIES "" ) option( WEBVIEW_FORCE_WEBKIT "Always build webview with WebKit instead of WebEngine regardless of Qt version." OFF) @@ -46,8 +45,6 @@ else() endif() if ( NOT _reason ) - include_directories( ${CALA_WEBVIEW_INCLUDE_DIRECTORIES} ) - configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/WebViewConfig.h.in ${CMAKE_CURRENT_BINARY_DIR}/WebViewConfig.h ) diff --git a/src/modules/welcome/CMakeLists.txt b/src/modules/welcome/CMakeLists.txt index a468af102..924062652 100644 --- a/src/modules/welcome/CMakeLists.txt +++ b/src/modules/welcome/CMakeLists.txt @@ -37,7 +37,6 @@ calamares_add_plugin( welcome RESOURCES welcome.qrc LINK_PRIVATE_LIBRARIES - calamaresui ${CHECKER_LINK_LIBRARIES} Qt5::DBus Qt5::Network diff --git a/src/modules/welcome/Config.cpp b/src/modules/welcome/Config.cpp index 097126ea6..48e92e628 100644 --- a/src/modules/welcome/Config.cpp +++ b/src/modules/welcome/Config.cpp @@ -31,6 +31,8 @@ Config::Config( QObject* parent ) initLanguages(); CALAMARES_RETRANSLATE_SLOT( &Config::retranslate ); + // But also when the requirements model changes, update the messages + connect( requirementsModel(), &Calamares::RequirementsModel::progressMessageChanged, this, &Config::retranslate ); } void diff --git a/src/modules/welcome/WelcomePage.cpp b/src/modules/welcome/WelcomePage.cpp index 616c91bff..376fe1ea6 100644 --- a/src/modules/welcome/WelcomePage.cpp +++ b/src/modules/welcome/WelcomePage.cpp @@ -36,12 +36,12 @@ #include #include -WelcomePage::WelcomePage( Config* conf, QWidget* parent ) +WelcomePage::WelcomePage( Config* config, QWidget* parent ) : QWidget( parent ) , ui( new Ui::WelcomePage ) - , m_checkingWidget( new CheckerContainer( *( conf->requirementsModel() ), this ) ) + , m_checkingWidget( new CheckerContainer( config, this ) ) , m_languages( nullptr ) - , m_conf( conf ) + , m_conf( config ) { using Branding = Calamares::Branding; diff --git a/src/modules/welcome/WelcomePage.h b/src/modules/welcome/WelcomePage.h index 04c17d25f..cbbc7f510 100644 --- a/src/modules/welcome/WelcomePage.h +++ b/src/modules/welcome/WelcomePage.h @@ -27,7 +27,7 @@ class WelcomePage : public QWidget { Q_OBJECT public: - explicit WelcomePage( Config* conf, QWidget* parent = nullptr ); + WelcomePage( Config* config, QWidget* parent = nullptr ); enum class Button { diff --git a/src/modules/welcome/checker/CheckerContainer.cpp b/src/modules/welcome/checker/CheckerContainer.cpp index 860857c3c..19f69ddc9 100644 --- a/src/modules/welcome/checker/CheckerContainer.cpp +++ b/src/modules/welcome/checker/CheckerContainer.cpp @@ -22,12 +22,12 @@ #include -CheckerContainer::CheckerContainer( const Calamares::RequirementsModel& model, QWidget* parent ) +CheckerContainer::CheckerContainer( Config* config, QWidget* parent ) : QWidget( parent ) , m_waitingWidget( new WaitingWidget( QString(), this ) ) , m_checkerWidget( nullptr ) , m_verdict( false ) - , m_model( model ) + , m_config( config ) { QBoxLayout* mainLayout = new QHBoxLayout; setLayout( mainLayout ); @@ -49,13 +49,14 @@ CheckerContainer::requirementsComplete( bool ok ) { if ( !ok ) { - cDebug() << "Requirements not satisfied" << m_model.count() << "entries:"; - for ( int i = 0; i < m_model.count(); ++i ) + auto& model = *( m_config->requirementsModel() ); + cDebug() << "Requirements not satisfied" << model.count() << "entries:"; + for ( int i = 0; i < model.count(); ++i ) { - auto index = m_model.index( i ); - cDebug() << Logger::SubEntry << i << m_model.data( index, Calamares::RequirementsModel::Name ).toString() - << "set?" << m_model.data( index, Calamares::RequirementsModel::Satisfied ).toBool() << "req?" - << m_model.data( index, Calamares::RequirementsModel::Mandatory ).toBool(); + auto index = model.index( i ); + cDebug() << Logger::SubEntry << i << model.data( index, Calamares::RequirementsModel::Name ).toString() + << "set?" << model.data( index, Calamares::RequirementsModel::Satisfied ).toBool() << "req?" + << model.data( index, Calamares::RequirementsModel::Mandatory ).toBool(); } } @@ -63,7 +64,7 @@ CheckerContainer::requirementsComplete( bool ok ) m_waitingWidget->deleteLater(); m_waitingWidget = nullptr; // Don't delete in destructor - m_checkerWidget = new ResultsListWidget( m_model, this ); + m_checkerWidget = new ResultsListWidget( m_config, this ); m_checkerWidget->setObjectName( "requirementsChecker" ); layout()->addWidget( m_checkerWidget ); diff --git a/src/modules/welcome/checker/CheckerContainer.h b/src/modules/welcome/checker/CheckerContainer.h index 93b75ac04..7846f7010 100644 --- a/src/modules/welcome/checker/CheckerContainer.h +++ b/src/modules/welcome/checker/CheckerContainer.h @@ -15,6 +15,7 @@ #define CHECKERCONTAINER_H #include "Config.h" + #include class ResultsListWidget; @@ -31,7 +32,7 @@ class CheckerContainer : public QWidget { Q_OBJECT public: - explicit CheckerContainer( const Calamares::RequirementsModel& model, QWidget* parent = nullptr ); + explicit CheckerContainer( Config* config, QWidget* parent = nullptr ); ~CheckerContainer() override; bool verdict() const; @@ -49,7 +50,7 @@ protected: bool m_verdict; private: - const Calamares::RequirementsModel& m_model; + Config* m_config = nullptr; }; #endif diff --git a/src/modules/welcome/checker/ResultsListWidget.cpp b/src/modules/welcome/checker/ResultsListWidget.cpp index a7c5caf49..acbb48e42 100644 --- a/src/modules/welcome/checker/ResultsListWidget.cpp +++ b/src/modules/welcome/checker/ResultsListWidget.cpp @@ -127,7 +127,6 @@ ResultsListDialog::ResultsListDialog( const Calamares::RequirementsModel& model, connect( buttonBox, &QDialogButtonBox::clicked, this, &QDialog::close ); CALAMARES_RETRANSLATE_SLOT( &ResultsListDialog::retranslate ); - retranslate(); // Do it now to fill in the texts } ResultsListDialog::~ResultsListDialog() {} @@ -149,9 +148,9 @@ ResultsListDialog::retranslate() } -ResultsListWidget::ResultsListWidget( const Calamares::RequirementsModel& model, QWidget* parent ) +ResultsListWidget::ResultsListWidget( Config* config, QWidget* parent ) : QWidget( parent ) - , m_model( model ) + , m_config( config ) { setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding ); @@ -169,23 +168,25 @@ ResultsListWidget::ResultsListWidget( const Calamares::RequirementsModel& model, spacerLayout->addSpacing( paddingSize ); CalamaresUtils::unmarginLayout( spacerLayout ); - m_explanation = new QLabel; - m_explanation->setWordWrap( true ); - m_explanation->setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Preferred ); - m_explanation->setOpenExternalLinks( false ); - m_explanation->setObjectName( "resultsExplanation" ); - connect( m_explanation, &QLabel::linkActivated, this, &ResultsListWidget::linkClicked ); - entriesLayout->addWidget( m_explanation ); + auto* explanation = new QLabel( m_config->warningMessage() ); + explanation->setWordWrap( true ); + explanation->setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Preferred ); + explanation->setOpenExternalLinks( false ); + explanation->setObjectName( "resultsExplanation" ); + entriesLayout->addWidget( explanation ); + + connect( config, &Config::warningMessageChanged, explanation, &QLabel::setText ); + connect( explanation, &QLabel::linkActivated, this, &ResultsListWidget::linkClicked ); // Check that all are satisfied (gives warnings if not) and // all *mandatory* entries are satisfied (gives errors if not). - const bool requirementsSatisfied = m_model.satisfiedRequirements(); + const bool requirementsSatisfied = config->requirementsModel()->satisfiedRequirements(); auto isUnSatisfied = []( const Calamares::RequirementsModel& m, QModelIndex i ) { return !m.data( i, Calamares::RequirementsModel::Satisfied ).toBool(); }; - createResultWidgets( entriesLayout, m_resultWidgets, model, isUnSatisfied ); + createResultWidgets( entriesLayout, m_resultWidgets, *( config->requirementsModel() ), isUnSatisfied ); if ( !requirementsSatisfied ) { @@ -220,11 +221,10 @@ ResultsListWidget::ResultsListWidget( const Calamares::RequirementsModel& model, mainLayout->addWidget( imageLabel ); } } - m_explanation->setAlignment( Qt::AlignCenter ); + explanation->setAlignment( Qt::AlignCenter ); } CALAMARES_RETRANSLATE_SLOT( &ResultsListWidget::retranslate ); - retranslate(); } @@ -233,7 +233,7 @@ ResultsListWidget::linkClicked( const QString& link ) { if ( link == "#details" ) { - auto* dialog = new ResultsListDialog( m_model, this ); + auto* dialog = new ResultsListDialog( *( m_config->requirementsModel() ), this ); dialog->exec(); dialog->deleteLater(); } @@ -242,52 +242,15 @@ ResultsListWidget::linkClicked( const QString& link ) void ResultsListWidget::retranslate() { - for ( auto i = 0; i < m_model.count(); i++ ) + const auto& model = *( m_config->requirementsModel() ); + for ( auto i = 0; i < model.count(); i++ ) { if ( m_resultWidgets[ i ] ) { m_resultWidgets[ i ]->setText( - m_model.data( m_model.index( i ), Calamares::RequirementsModel::NegatedText ).toString() ); + model.data( model.index( i ), Calamares::RequirementsModel::NegatedText ).toString() ); } } - - // Check that all are satisfied (gives warnings if not) and - // all *mandatory* entries are satisfied (gives errors if not). - - if ( !m_model.satisfiedRequirements() ) - { - QString message; - const bool setup = Calamares::Settings::instance()->isSetupMode(); - if ( !m_model.satisfiedMandatory() ) - { - message = setup ? tr( "This computer does not satisfy the minimum " - "requirements for setting up %1.
" - "Setup cannot continue. " - "Details..." ) - : tr( "This computer does not satisfy the minimum " - "requirements for installing %1.
" - "Installation cannot continue. " - "Details..." ); - } - else - { - message = setup ? tr( "This computer does not satisfy some of the " - "recommended requirements for setting up %1.
" - "Setup can continue, but some features " - "might be disabled." ) - : tr( "This computer does not satisfy some of the " - "recommended requirements for installing %1.
" - "Installation can continue, but some features " - "might be disabled." ); - } - m_explanation->setText( message.arg( Calamares::Branding::instance()->shortVersionedName() ) ); - } - else - { - m_explanation->setText( tr( "This program will ask you some questions and " - "set up %2 on your computer." ) - .arg( Calamares::Branding::instance()->productName() ) ); - } } #include "utils/moc-warnings.h" diff --git a/src/modules/welcome/checker/ResultsListWidget.h b/src/modules/welcome/checker/ResultsListWidget.h index aa6c62258..5e96b74a0 100644 --- a/src/modules/welcome/checker/ResultsListWidget.h +++ b/src/modules/welcome/checker/ResultsListWidget.h @@ -14,6 +14,7 @@ #include "ResultWidget.h" #include "Config.h" + #include class QLabel; @@ -21,16 +22,15 @@ class ResultsListWidget : public QWidget { Q_OBJECT public: - explicit ResultsListWidget( const Calamares::RequirementsModel& model, QWidget* parent ); + explicit ResultsListWidget( Config* config, QWidget* parent ); private: /// @brief A link in the explanatory text has been clicked void linkClicked( const QString& link ); void retranslate(); - QLabel* m_explanation = nullptr; ///< Explanatory text above the list, with link - const Calamares::RequirementsModel& m_model; QList< ResultWidget* > m_resultWidgets; ///< One widget for each unsatisfied entry + Config* m_config = nullptr; }; #endif // CHECKER_RESULTSLISTWIDGET_H diff --git a/src/modules/welcomeq/CMakeLists.txt b/src/modules/welcomeq/CMakeLists.txt index c9cafe7a8..b6f950dad 100644 --- a/src/modules/welcomeq/CMakeLists.txt +++ b/src/modules/welcomeq/CMakeLists.txt @@ -14,7 +14,7 @@ endif() set( _welcome ${CMAKE_CURRENT_SOURCE_DIR}/../welcome ) -include_directories( ${PROJECT_BINARY_DIR}/src/libcalamaresui ${CMAKE_CURRENT_SOURCE_DIR}/../../libcalamares ${_welcome} ) +include_directories( ${_welcome} ) # DUPLICATED WITH WELCOME MODULE find_package( Qt5 ${QT_VERSION} CONFIG REQUIRED DBus Network ) @@ -44,19 +44,8 @@ calamares_add_plugin( welcomeq RESOURCES welcomeq.qrc LINK_PRIVATE_LIBRARIES - calamaresui ${CHECKER_LINK_LIBRARIES} Qt5::DBus Qt5::Network SHARED_LIB ) - -# add_executable( welcomeqmltest qmlmain.cpp Config.cpp WelcomeQmlViewStep.cpp ${CHECKER_SOURCES} ) -# target_link_libraries( welcomeqmltest PRIVATE calamaresui Qt5::Core Qt5::Network Qt5::DBus ${CHECKER_LINK_LIBRARIES}) -# set_target_properties( welcomeqmltest -# PROPERTIES -# ENABLE_EXPORTS TRUE -# RUNTIME_OUTPUT_NAME welcomeqmltest -# ) -# calamares_automoc( welcomeqmltest ) -# calamares_autouic( welcomeqmltest )