diff --git a/CHANGES b/CHANGES index c91e99299135464af66aa6459c79994231907fe7..8b86bf6367022d54051467475dd2e67713bdc7bb 100644 --- a/CHANGES +++ b/CHANGES @@ -7,6 +7,37 @@ 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.44.3 (2021-10-04) # + +This is not a hotfix release, but a tiny-tiny incremental improvement +that fixes one hugely annoying -- user-facing message presenting +bytes as mebibytes -- bug in the partition module. + +## Modules ## + - The *partition* module now consistently uses the configured EFI + partition size (defaults to 300MiB). + - Internal changes in the *summary* module to increase consistency + between *summary* and *summaryq*. + + +# 3.2.44.2 (2021-09-27) # + +This release contains contributions from (alphabetically by first name): + - Corey Lang (new contributor, welcome!) + +This is a hotfix for a typo -- not a syntax error -- that affects the +*networkcfg* module. Reported and fixed by Corey. + + +# 3.2.44.1 (2021-09-24) # + +This release contains contributions from (alphabetically by first name): + - Anke Boersma + +This is a hotfix for a typo -- not a syntax error -- that affects the +*initcpiocfg* module. Reported and fixed by Anke. + + # 3.2.44 (2021-09-24) # This release contains contributions from (alphabetically by first name): diff --git a/CMakeLists.txt b/CMakeLists.txt index b391cfeb2b5fcee8daa4cb1047171314b6d8b9f1..f75b1caf5e9c7aaf417300c2f0bd9fd7ceaee759 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -41,7 +41,7 @@ # TODO:3.3: Require CMake 3.12 cmake_minimum_required( VERSION 3.3 FATAL_ERROR ) project( CALAMARES - VERSION 3.2.44 + VERSION 3.2.44.3 LANGUAGES C CXX ) diff --git a/CMakeModules/CalamaresAddModuleSubdirectory.cmake b/CMakeModules/CalamaresAddModuleSubdirectory.cmake index 1f1c0230056363d395b4ed093fae5fe1afd60854..91524a09e47f0bb50008a12efbf845c3a3b7bad5 100644 --- a/CMakeModules/CalamaresAddModuleSubdirectory.cmake +++ b/CMakeModules/CalamaresAddModuleSubdirectory.cmake @@ -42,6 +42,18 @@ include( CalamaresCheckModuleSelection ) set( MODULE_DATA_DESTINATION share/calamares/modules ) +# We look for Pylint (just once) so that unittests can be added that +# check the syntax / variables of Python modules. This should help +# avoid more typo's-in-releases. +if(BUILD_TESTING AND NOT PYLINT_COMMAND_SEARCHED) + set(PYLINT_COMMAND_SEARCHED TRUE) + find_program( + PYLINT_COMMAND + NAMES pylint3 pylint + PATHS $ENV{HOME}/.local/bin + ) +endif() + function( _calamares_add_module_subdirectory_impl ) set( SUBDIRECTORY ${ARGV0} ) @@ -241,6 +253,19 @@ function( _calamares_add_module_subdirectory_impl ) if ( EXISTS ${_testdir}/CMakeTests.txt AND NOT EXISTS ${_mod_dir}/CMakeLists.txt ) include( ${_testdir}/CMakeTests.txt ) endif() + if ( PYLINT_COMMAND AND MODULE_INTERFACE MATCHES "python" ) + # Python modules get an additional test via pylint; this + # needs to run at top-level because the ci/libcalamares directory + # contains API stubs. + # + # TODO: the entry point is assumed to be `main.py`, but that is + # configurable through module.desc + add_test( + NAME lint-${SUBDIRECTORY} + COMMAND env PYTHONPATH=ci: ${PYLINT_COMMAND} -E ${_mod_dir}/main.py + WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} + ) + endif() endif() endfunction() diff --git a/ci/libcalamares/__init__.py b/ci/libcalamares/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..1f7a0943075140a8ddf2c449568a8935981548c9 --- /dev/null +++ b/ci/libcalamares/__init__.py @@ -0,0 +1,9 @@ +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Stubs for part of the Python API from libcalamares +# (although the **actual** API is presented through +# Boost::Python, not as a bare C-extension) so that +# pylint doesn't complain about libcalamares internals. + +VERSION_SHORT="1.0" diff --git a/ci/libcalamares/globalstorage.py b/ci/libcalamares/globalstorage.py new file mode 100644 index 0000000000000000000000000000000000000000..d40a2820485a787a0e65060f1fb71b87094153ae --- /dev/null +++ b/ci/libcalamares/globalstorage.py @@ -0,0 +1,24 @@ +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Stubs for part of the Python API from libcalamares +# (although the **actual** API is presented through +# Boost::Python, not as a bare C-extension) so that +# pylint doesn't complain about libcalamares internals. + +def count(): return 1 + +def keys(): return [] + +def contains(_): return True + +def value(key): + if key in ("branding",): + return dict() + if key in ("partitions",): + return list() + return "" + +def insert(key, value): pass + +def remove(_): pass diff --git a/ci/libcalamares/job.py b/ci/libcalamares/job.py new file mode 100644 index 0000000000000000000000000000000000000000..9ea38b878653afaf0c29321752b2f807336fc344 --- /dev/null +++ b/ci/libcalamares/job.py @@ -0,0 +1,15 @@ +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Stubs for part of the Python API from libcalamares +# (although the **actual** API is presented through +# Boost::Python, not as a bare C-extension) so that +# pylint doesn't complain about libcalamares internals. + +configuration = dict() + +def setprogress(_): pass + +def pretty_name(): return "" + +def working_path(): return "" diff --git a/ci/libcalamares/utils.py b/ci/libcalamares/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..706e4a95a287d5a1093dd39d339b45199d9b4ad0 --- /dev/null +++ b/ci/libcalamares/utils.py @@ -0,0 +1,23 @@ +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Stubs for part of the Python API from libcalamares +# (although the **actual** API is presented through +# Boost::Python, not as a bare C-extension) so that +# pylint doesn't complain about libcalamares internals. + +def debug(_): pass + +def warning(_): pass + +def error(_): pass + +def gettext_path(): pass + +def gettext_languages(): pass + +def target_env_call(_): return 0 + +def check_target_env_call(_): pass + +def mount(device, mountpoint, fstype, options): return 0 diff --git a/lang/calamares_ar.ts b/lang/calamares_ar.ts index d5443626b8a4b011eae0881d75819650cf8281e7..6b79a4ffcd21d7cc8b1059ec50c66cbd04f2b930 100644 --- a/lang/calamares_ar.ts +++ b/lang/calamares_ar.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>انتهى</translation> </message> @@ -328,17 +328,17 @@ <translation>&اغلاق</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1930,35 +1930,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2967,65 +2967,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>معاملات نداء المهمة سيّئة.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_as.ts b/lang/calamares_as.ts index 2e787a7e6d2daae6f24f5bd97c683098b7678b76..94a3d74276aa0e64d66106acd66d1a437f4af40d 100644 --- a/lang/calamares_as.ts +++ b/lang/calamares_as.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>হৈ গ'ল</translation> </message> @@ -320,17 +320,17 @@ <translation>বন্ধ (&C)</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>ইনস্তল ল'গ পেস্ট URL</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>আপলোড বিফল হৈছিল। কোনো ৱেব-পেস্ট কৰা হোৱা নাছিল।</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1922,35 +1922,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>LUKS কি ফাইল কনফিগাৰ কৰক।</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>কোনো বিভাজনৰ বৰ্ণনা দিয়া নাই।</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>এনক্ৰিপছন থকা rootfs চেত্ আপত ত্ৰুটি</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>ৰুট বিভাজন %1 LUKS, কিন্তু পাসফ্রেজ ছেট কৰা হোৱা নাই।</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>%1 ৰুট বিভাজনৰ বাবে LUKS কি বনাৱ পৰা নগ'ল।</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>%1 বিভাজনত LUKS কি ফাইল কনফিগাৰ কৰিব পৰা নগ'ল।</translation> </message> @@ -2925,14 +2925,14 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> কমাণ্ডৰ পৰা কোনো আউটপুট পোৱা নগ'ল।</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2941,52 +2941,52 @@ Output: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>বাহ্যিক কমাণ্ড ক্ৰেছ্ কৰিলে।</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation><i>%1</i> কমাণ্ড ক্ৰেছ্ কৰিলে।</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>বাহ্যিক কমাণ্ড আৰম্ভ হোৱাত বিফল হ'ল।</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation><i>%1</i> কমাণ্ড আৰম্ভ হোৱাত বিফল হ'ল।</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>কমাণ্ড আৰম্ভ কৰাৰ সময়ত আভ্যন্তৰীণ ক্ৰুটি।</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>প্ৰক্ৰিয়া কাৰ্য্যৰ বাবে বেয়া মান।</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>বাহ্যিক কমাণ্ড সমাপ্ত কৰাত বিফল হ'ল।</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation><i>%1</i> কমাণ্ড সমাপ্ত কৰাত %2 ছেকেণ্ডত বিফল হ'ল।</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>বাহ্যিক কমাণ্ড ক্ৰটিৰ সৈতে সমাপ্ত হ'ল।</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation><i>%1</i> কমাণ্ড %2 এক্সিড্ কোডৰ সৈতে সমাপ্ত হ'ল।</translation> </message> diff --git a/lang/calamares_ast.ts b/lang/calamares_ast.ts index d25285a0055002eda43a898af39165502583a9f2..b39c4ba0617d71eed764827f419bad9a807c015c 100644 --- a/lang/calamares_ast.ts +++ b/lang/calamares_ast.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Fecho</translation> </message> @@ -320,17 +320,17 @@ <translation>&Zarrar</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1922,35 +1922,35 @@ L'instalador va colar y van perdese tolos cambeos.</translation> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2923,14 +2923,14 @@ L'instalador va colar y van perdese tolos cambeos.</translation> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> El comandu nun produxo nenguna salida.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2939,52 +2939,52 @@ Salida: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>El comandu esternu cascó.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>El comandu <i>%1</i> cascó.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>El comandu esternu falló al aniciar.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>El comandu <i>%1</i> falló al aniciar.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Fallu internu al aniciar el comandu.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Los parámetros son incorreutos pa la llamada del trabayu de procesos.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>El comandu esternu finó al finar.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>El comandu <i>%1</i> falló al finar en %2 segundos.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>El comandu esternu finó con fallos.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>El comandu <i>%1</i> finó col códigu de salida %2.</translation> </message> diff --git a/lang/calamares_az.ts b/lang/calamares_az.ts index eecb26d62d3deb09f38170565e5bb27564ee297c..558bc7f7a57118c91e6a1626781ecbf16a5ae407 100644 --- a/lang/calamares_az.ts +++ b/lang/calamares_az.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Quraşdırılma başa çatdı</translation> </message> @@ -320,17 +320,17 @@ <translation>&Bağlamaq</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>Jurnal yerləşdirmə URL-nu daxil etmək</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>Yükləmə uğursuz oldu. Heç nə vebdə daxil edilmədi.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1926,35 +1926,35 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>LUKS düymə faylını ayarlamaq.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Heç bir bölmə müəyyən edilməyib.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Kök fayl sisteminin şifrələnməsi xətası</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>%1 Kök bölməsi LUKS-dur lakin, şifrə təyin olunmayıb.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>%1 kök bölməsi üçün LUKS düymə faylı yaradılmadı.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>%1 bölməsində LUKS düymə faylı tənzimlənə bilmədi.</translation> </message> @@ -2930,14 +2930,14 @@ Lütfən bir birinci disk bölümünü çıxarın və əvəzinə genişləndiril <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> Əmrlərdən çıxarış alınmadı.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2946,52 +2946,52 @@ Output: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Xarici əmr qəzası baş verdi.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation><i>%1</i> əmrində qəza baş verdi.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Xarici əmr başladıla bilmədi.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation><i>%1</i> əmri əmri başladıla bilmədi.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Əmr başlayarkən daxili xəta.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>İş prosesini çağırmaq üçün xətalı parametr.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Xarici əmr başa çatdırıla bilmədi.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation><i>%1</i> əmrini %2 saniyədə başa çatdırmaq mümkün olmadı.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Xarici əmr xəta ilə başa çatdı.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation><i>%1</i> əmri %2 xəta kodu ilə başa çatdı.</translation> </message> diff --git a/lang/calamares_az_AZ.ts b/lang/calamares_az_AZ.ts index 787cf03456f1fcdb5fdd23dd037f0a551465b415..275af2030b841a0959b6562e353cb58a7c4ddf8f 100644 --- a/lang/calamares_az_AZ.ts +++ b/lang/calamares_az_AZ.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Quraşdırılma başa çatdı</translation> </message> @@ -320,17 +320,17 @@ <translation>&Bağlamaq</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>Jurnal yerləşdirmə URL-nu daxil etmək</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>Yükləmə uğursuz oldu. Heç nə vebdə daxil edilmədi.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1926,35 +1926,35 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>LUKS düymə faylını ayarlamaq.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Heç bir bölmə müəyyən edilməyib.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Kök fayl sisteminin şifrələnməsi xətası</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>%1 Kök bölməsi LUKS-dur lakin, şifrə təyin olunmayıb.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>%1 kök bölməsi üçün LUKS düymə faylı yaradılmadı.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>%1 bölməsində LUKS düymə faylı tənzimlənə bilmədi.</translation> </message> @@ -2930,14 +2930,14 @@ Lütfən bir birinci disk bölümünü çıxarın və əvəzinə genişləndiril <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> Əmrlərdən çıxarış alınmadı.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2946,52 +2946,52 @@ Output: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Xarici əmr qəzası baş verdi.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation><i>%1</i> əmrində qəza baş verdi.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Xarici əmr başladıla bilmədi.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation><i>%1</i> əmri əmri başladıla bilmədi.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Əmr başlayarkən daxili xəta.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>İş prosesini çağırmaq üçün xətalı parametr.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Xarici əmr başa çatdırıla bilmədi.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation><i>%1</i> əmrini %2 saniyədə başa çatdırmaq mümkün olmadı.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Xarici əmr xəta ilə başa çatdı.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation><i>%1</i> əmri %2 xəta kodu ilə başa çatdı.</translation> </message> diff --git a/lang/calamares_be.ts b/lang/calamares_be.ts index b1ae0842c88a20b51b8d9e3c5364501951bceba2..bf8f8a45f4b184b0f9875ee98008937418879ba3 100644 --- a/lang/calamares_be.ts +++ b/lang/calamares_be.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Завершана</translation> </message> @@ -324,17 +324,17 @@ <translation>&Закрыць</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>Уставіць журнал усталёўкі па URL</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>Запампаваць не атрымалася.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1924,35 +1924,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>Наладка файла ключа LUKS.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Раздзелаў не вызначана.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Не атрымалася зашыфраваць rootfs</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>Каранёвы раздзел %1 зашыфраваны як LUKS, але парольная фраза не была вызначаная.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>Не атрымалася стварыць файл ключа LUKS для каранёвага раздзела %1.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>Не атрымалася наладзіць файл ключа LUKS на каранёвым раздзеле %1.</translation> </message> @@ -2945,14 +2945,14 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> Вываду ад загада няма.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2961,52 +2961,52 @@ Output: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Вонкавы загад схібіў.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Загад <i>%1</i> схібіў.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Не атрымалася запусціць вонкавы загад.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Не атрымалася запусціць загад <i>%1</i>.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Падчас запуску загада адбылася ўнутраная памылка.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Хібныя параметры выкліку працэсу.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Не атрымалася завяршыць вонкавы загад.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Загад <i>%1</i> не атрымалася завяршыць за %2 секунд.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Вонкавы загад завяршыўся з памылкамі.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Загад <i>%1</i> завяршыўся з кодам %2.</translation> </message> diff --git a/lang/calamares_bg.ts b/lang/calamares_bg.ts index c72c3def25efb315dfec802e9263d4b7e160aae9..1eebcf23bbd1678f74f95322af38f5dc197c009e 100644 --- a/lang/calamares_bg.ts +++ b/lang/calamares_bg.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Готово</translation> </message> @@ -320,17 +320,17 @@ <translation>&Затвори</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1922,35 +1922,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2923,13 +2923,13 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2938,52 +2938,52 @@ Output: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Невалидни параметри за извикване на задача за процес.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_bn.ts b/lang/calamares_bn.ts index 49269be576807ccd72d8d450b0a97f16916f00bc..272fd3cd488caaceaa52b9f9b36c5d156f082201 100644 --- a/lang/calamares_bn.ts +++ b/lang/calamares_bn.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>সম্পন্ন</translation> </message> @@ -320,17 +320,17 @@ <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1921,35 +1921,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2922,65 +2922,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_ca.ts b/lang/calamares_ca.ts index d132ea85dd0a8286a7b395d6d068ba4769e8a444..206f7237f48a06501488c2cc0d2a49b845067b67 100644 --- a/lang/calamares_ca.ts +++ b/lang/calamares_ca.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Fet</translation> </message> @@ -320,17 +320,17 @@ <translation>Tan&ca</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>URL de publicació del registre d'instal·lació</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>La càrrega no s'ha fet correctament. No s'ha enganxat res a la xarxa.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1926,35 +1926,35 @@ L'instal·lador es tancarà i tots els canvis es perdran.</translation> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>Es configura el fitxer de clau LUKS.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>No s'ha definit cap partició.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Error de configuració de rootfs encriptat.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>La partició d'arrel %1 és LUKS però no se n'ha establert cap contrasenya.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>No s'ha pogut crear el fitxer de clau de LUKS per a la partició d'arrel %1.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>No s'ha pogut configurar el fitxer de clau de LUKS a la partició %1.</translation> </message> @@ -2929,14 +2929,14 @@ per desplaçar-s'hi i useu els botons +/- per fer ampliar-lo o reduir-lo, o bé <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> No hi ha hagut sortida de l'ordre.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2945,52 +2945,52 @@ Sortida: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>L'ordre externa ha fallat.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>L'ordre <i>%1</i> ha fallat.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>L'ordre externa no s'ha pogut iniciar.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>L'ordre <i>%1</i> no s'ha pogut iniciar.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Error intern en iniciar l'ordre.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Paràmetres incorrectes per a la crida de la tasca del procés.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>L'ordre externa no ha acabat correctament.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>L'ordre <i>%1</i> no ha pogut acabar en %2 segons.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>L'ordre externa ha acabat amb errors.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>L'ordre <i>%1</i> ha acabat amb el codi de sortida %2.</translation> </message> diff --git a/lang/calamares_ca@valencia.ts b/lang/calamares_ca@valencia.ts index 1bc4da3abeb3bdb11126916e6c5d788c82e0a485..edadb7702f9de1d112615f748b08b64a3ee08329 100644 --- a/lang/calamares_ca@valencia.ts +++ b/lang/calamares_ca@valencia.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Fet</translation> </message> @@ -320,17 +320,17 @@ <translation>Tan&ca</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>URL de publicació del registre d'instal·lació</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>La càrrega no s'ha fet correctament. No s'ha enganxat res a la xarxa.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1922,35 +1922,35 @@ L'instal·lador es tancarà i tots els canvis es perdran.</translation> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>S'està configurant el fitxer de clau LUKS.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>No s'ha definit cap partició.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>S'ha produït un error de configuració del rootfs encriptat.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>La partició d'arrel %1 és LUKS, però no se n'ha establit cap contrasenya.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>No s'ha pogut crear el fitxer de clau de LUKS per a la partició d'arrel %1.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>No s'ha pogut configurar el fitxer de clau de LUKS en la partició %1.</translation> </message> @@ -2925,14 +2925,14 @@ per a desplaçar-s'hi i useu els botons +/- per a ampliar-lo o reduir-lo, o bé <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> No hi ha hagut eixida de l'ordre.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2941,52 +2941,52 @@ Eixida: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>L'ordre externa ha fallat.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>L'ordre <i>%1</i> ha fallat.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>L'ordre externa no s'ha pogut iniciar.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>L'ordre <i>%1</i> no s'ha pogut iniciar.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>S'ha produït un error intern en iniciar l'ordre.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Hi ha paràmetres incorrectes per a la crida de la tasca del procés.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>L'ordre externa no ha acabat correctament.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>L'ordre <i>%1</i> no ha pogut acabar en %2 segons.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>L'ordre externa ha acabat amb errors.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>L'ordre <i>%1</i> ha acabat amb el codi d'eixida %2.</translation> </message> diff --git a/lang/calamares_cs_CZ.ts b/lang/calamares_cs_CZ.ts index 5714c4e31bdc2bb8cf28dbaf725885c671a4e9b2..9b6d31daf9ac9d2fd06695a375549fb761755428 100644 --- a/lang/calamares_cs_CZ.ts +++ b/lang/calamares_cs_CZ.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Hotovo</translation> </message> @@ -324,17 +324,17 @@ <translation>&Zavřít</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>URL pro vložení záznamu událostí při instalaci</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>Nahrání se nezdařilo. Na web nebylo nic vloženo.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1930,35 +1930,35 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>Nastavování souboru s klíčem pro LUKS šifrování.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Nejsou definovány žádné oddíly.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Chyba nastavení šifrovaného kořenového oddílu</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>Kořenový oddíl %1 je LUKS, ale nebyla nastavena žádná heslová fráze.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>Nedaří se vytvořit LUKS klíč pro kořenový oddíl %1.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>Nedaří se nastavit LUKS klíč pro oddíl %1.</translation> </message> @@ -2951,14 +2951,14 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> Příkaz neposkytl žádný výstup.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2967,52 +2967,52 @@ Výstup: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Vnější příkaz byl neočekávaně ukončen.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Příkaz <i>%1</i> byl neočekávaně ukončen.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Vnější příkaz se nepodařilo spustit.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Příkaz <i>%1</i> se nepodařilo spustit.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Vnitřní chyba při spouštění příkazu.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Chybné parametry volání úlohy procesu.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Vnější příkaz se nepodařilo dokončit.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Příkaz <i>%1</i> se nepodařilo dokončit do %2 sekund.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Vnější příkaz skončil s chybami.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Příkaz <i>%1</i> skončil s návratovým kódem %2.</translation> </message> diff --git a/lang/calamares_da.ts b/lang/calamares_da.ts index b09d8682871e18fdf9bb42b8797f4403251b99da..23635953a00073e579ad30b9a987f4dd6f19ef2b 100644 --- a/lang/calamares_da.ts +++ b/lang/calamares_da.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Færdig</translation> </message> @@ -320,17 +320,17 @@ <translation>&Luk</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>Indsættelses-URL for installationslog</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>Uploaden lykkedes ikke. Der blev ikke foretaget nogen webindsættelse.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1922,35 +1922,35 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>Konfigurerer LUKS-nøglefil.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Der er ikke defineret nogen partitioner.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Fejl ved opsætning af krypteret rootfs</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>Rodpartitionen %1 er LUKS men der er ikke indstillet nogen adgangskode.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>Kunne ikke oprette LUKS-nøglefil for rodpartitionen %1.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>Kunne ikke konfigurere LUKS-nøglefil på partitionen %1.</translation> </message> @@ -2925,14 +2925,14 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> Der var ikke nogen output fra kommandoen.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2941,52 +2941,52 @@ Output: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Ekstern kommando holdt op med at virke.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Kommandoen <i>%1</i> holdte op med at virke.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Ekstern kommando kunne ikke starte.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Kommandoen <i>%1</i> kunne ikke starte.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Intern fejl ved start af kommando.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Ugyldige parametre til kald af procesjob.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Ekstern kommando blev ikke færdig.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Kommandoen <i>%1</i> blev ikke færdig på %2 sekunder.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Ekstern kommando blev færdig med fejl.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Kommandoen <i>%1</i> blev færdig med afslutningskoden %2.</translation> </message> diff --git a/lang/calamares_de.ts b/lang/calamares_de.ts index 5b941d4c5aae232b1a276f69c397a84fc5da4fcd..0eca622867c7050da6e84845385d2f22272a7895 100644 --- a/lang/calamares_de.ts +++ b/lang/calamares_de.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Fertig</translation> </message> @@ -320,17 +320,17 @@ <translation>&Schließen</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>Internetadresse für das Senden des Installationsprotokolls</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>Das Hochladen ist fehlgeschlagen. Es wurde nichts an eine Internetadresse gesendet.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1927,35 +1927,35 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>Konfiguriere LUKS-Schlüsseldatei.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Keine Partitionen definiert.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Fehler bei der Einrichtung der verschlüsselten Root-Partition</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>Root-Partition %1 ist mit LUKS verschlüsselt, aber es wurde kein Passwort gesetzt.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>Konnte die LUKS-Schlüsseldatei für die Root-Partition %1 nicht erstellen. </translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>Die LUKS-Schlüsseldatei konnte nicht auf Partition %1 eingerichtet werden.</translation> </message> @@ -2930,14 +2930,14 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> Dieser Befehl hat keine Ausgabe erzeugt.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2946,52 +2946,52 @@ Ausgabe: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Externes Programm abgestürzt.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Programm <i>%1</i> abgestürzt.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Externes Programm konnte nicht gestartet werden.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Das Programm <i>%1</i> konnte nicht gestartet werden.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Interner Fehler beim Starten des Programms.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Ungültige Parameter für Prozessaufruf.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Externes Programm konnte nicht abgeschlossen werden.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Programm <i>%1</i> konnte nicht innerhalb von %2 Sekunden abgeschlossen werden.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Externes Programm mit Fehlern beendet.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Befehl <i>%1</i> beendet mit Exit-Code %2.</translation> </message> diff --git a/lang/calamares_el.ts b/lang/calamares_el.ts index 23fe2160b4621cd5b51e694cf0e0cd3c89b14cfb..a6cec4b5cd42375660628618d869ee71c91bb9b5 100644 --- a/lang/calamares_el.ts +++ b/lang/calamares_el.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Ολοκληρώθηκε</translation> </message> @@ -320,17 +320,17 @@ <translation>&Κλείσιμο</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1921,35 +1921,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2922,65 +2922,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Λανθασμένοι παράμετροι για την κλήση διεργασίας.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_en.ts b/lang/calamares_en.ts index 884498c2ce46d160dd951b385fe101041b01f25f..5575b69645b28b090d9e799c16349a6da5ab89a0 100644 --- a/lang/calamares_en.ts +++ b/lang/calamares_en.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Done</translation> </message> @@ -320,17 +320,17 @@ <translation>&Close</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>Install Log Paste URL</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>The upload was unsuccessful. No web-paste was done.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1926,35 +1926,35 @@ The installer will quit and all changes will be lost.</translation> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>Configuring LUKS key file.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>No partitions are defined.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Encrypted rootfs setup error</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>Root partition %1 is LUKS but no passphrase has been set.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>Could not create LUKS key file for root partition %1.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>Could not configure LUKS key file on partition %1.</translation> </message> @@ -2929,14 +2929,14 @@ The installer will quit and all changes will be lost.</translation> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> There was no output from the command.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2945,52 +2945,52 @@ Output: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>External command crashed.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Command <i>%1</i> crashed.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>External command failed to start.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Command <i>%1</i> failed to start.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Internal error when starting command.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Bad parameters for process job call.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>External command failed to finish.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Command <i>%1</i> failed to finish in %2 seconds.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>External command finished with errors.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Command <i>%1</i> finished with exit code %2.</translation> </message> diff --git a/lang/calamares_en_GB.ts b/lang/calamares_en_GB.ts index 6e5df1e1810821d92cb2de531d919944b1fdcda5..931a4e1cae97e4fb592aa7db865ee1178f0582ba 100644 --- a/lang/calamares_en_GB.ts +++ b/lang/calamares_en_GB.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Done</translation> </message> @@ -320,17 +320,17 @@ <translation>&Close</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1921,35 +1921,35 @@ The installer will quit and all changes will be lost.</translation> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2922,14 +2922,14 @@ The installer will quit and all changes will be lost.</translation> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> There was no output from the command.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2938,52 +2938,52 @@ Output: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>External command crashed.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Command <i>%1</i> crashed.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>External command failed to start.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Command <i>%1</i> failed to start.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Internal error when starting command.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Bad parameters for process job call.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>External command failed to finish.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Command <i>%1</i> failed to finish in %2 seconds.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>External command finished with errors.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Command <i>%1</i> finished with exit code %2.</translation> </message> diff --git a/lang/calamares_eo.ts b/lang/calamares_eo.ts index 3d7a5b6d85958ea46decbf318d36db4f510e1e93..22e36e30a5edc9dced650dea93308f014594b129 100644 --- a/lang/calamares_eo.ts +++ b/lang/calamares_eo.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Finita</translation> </message> @@ -320,17 +320,17 @@ <translation>&Fermi</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>Retadreso de la alglua servilo</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>Alŝuto malsukcesinta. Neniu transpoŝigis al la reto.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1925,35 +1925,35 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos.</translation> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2926,65 +2926,65 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos.</translation> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_es.ts b/lang/calamares_es.ts index c30894c66d4e80f13d2dd3dfde3f4616effcb48d..42f9f71a798d7037641069215c267b763a2e87fb 100644 --- a/lang/calamares_es.ts +++ b/lang/calamares_es.ts @@ -172,7 +172,7 @@ Para configurar el arranque desde un entorno BIOS, este instalador debe instalar <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Hecho</translation> </message> @@ -321,17 +321,17 @@ Para configurar el arranque desde un entorno BIOS, este instalador debe instalar <translation>&Cerrar</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>Pegar URL Registro de Instalación</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>La carga no tuvo éxito. No se realizó pegado web.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1922,35 +1922,35 @@ Saldrá del instalador y se perderán todos los cambios.</translation> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>No hay particiones definidas.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2923,14 +2923,14 @@ Saldrá del instalador y se perderán todos los cambios.</translation> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> No hubo salida del comando.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2939,52 +2939,52 @@ Salida: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>El comando externo falló.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>El comando <i>%1</i> falló.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>El comando externo no se pudo iniciar.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>El comando <i>%1</i> no se pudo iniciar.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Error interno al iniciar el comando.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Parámetros erróneos para la llamada de la tarea del procreso.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>El comando externo no se pudo finalizar.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>El comando <i>%1</i> no se pudo finalizar en %2 segundos.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>El comando externo finalizó con errores.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>El comando <i>%1</i> finalizó con un código de salida %2.</translation> </message> diff --git a/lang/calamares_es_MX.ts b/lang/calamares_es_MX.ts index 4720eb6ceab28d173ae260be3dbadebdaa606150..6613af6b2f5a4783bd0e6a47039647cb993b4def 100644 --- a/lang/calamares_es_MX.ts +++ b/lang/calamares_es_MX.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Hecho</translation> </message> @@ -320,17 +320,17 @@ <translation>&Cerrar</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1923,35 +1923,35 @@ El instalador terminará y se perderán todos los cambios.</translation> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2924,14 +2924,14 @@ El instalador terminará y se perderán todos los cambios.</translation> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> No hubo salida desde el comando.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2940,52 +2940,52 @@ Salida </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>El comando externo ha fallado.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>El comando <i>%1</i> ha fallado.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>El comando externo falló al iniciar.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>El comando <i>%1</i> Falló al iniciar.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Error interno al iniciar el comando.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Parámetros erróneos en la llamada al proceso.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Comando externo falla al finalizar</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Comando <i>%1</i> falló al finalizar en %2 segundos.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Comando externo finalizado con errores</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Comando <i>%1</i> finalizó con código de salida %2.</translation> </message> diff --git a/lang/calamares_es_PE.ts b/lang/calamares_es_PE.ts index 1bda9e5bded07eb0171bec72585331b51be8db87..0a04f79c1c993feba10204d6fc1693f0ccbd9f94 100644 --- a/lang/calamares_es_PE.ts +++ b/lang/calamares_es_PE.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation type="unfinished"/> </message> @@ -320,17 +320,17 @@ <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1920,35 +1920,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2921,65 +2921,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_es_PR.ts b/lang/calamares_es_PR.ts index f1cd768c970e1cd12a62ad75ff0dfcaacc716c34..9a07a3091ec2904952d0818e2d142188287eeec4 100644 --- a/lang/calamares_es_PR.ts +++ b/lang/calamares_es_PR.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Hecho</translation> </message> @@ -320,17 +320,17 @@ <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1920,35 +1920,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2921,65 +2921,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Parámetros erróneos para el trabajo en proceso.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_et.ts b/lang/calamares_et.ts index 108e7ffc55eff9f31c1a76d452e64750df9ff229..ee9b98b834b7784013aebf78b813951de982ac53 100644 --- a/lang/calamares_et.ts +++ b/lang/calamares_et.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Valmis</translation> </message> @@ -320,17 +320,17 @@ <translation>&Sulge</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1921,35 +1921,35 @@ Paigaldaja sulgub ning kõik muutused kaovad.</translation> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2922,14 +2922,14 @@ Paigaldaja sulgub ning kõik muutused kaovad.</translation> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> Käsul polnud väljundit.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2938,52 +2938,52 @@ Väljund: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Väline käsk jooksis kokku.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Käsk <i>%1</i> jooksis kokku.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Välise käsu käivitamine ebaõnnestus.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Käsu <i>%1</i> käivitamine ebaõnnestus.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Käsu käivitamisel esines sisemine viga.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Protsessi töö kutsel olid halvad parameetrid.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Väline käsk ei suutnud lõpetada.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Käsk <i>%1</i> ei suutnud lõpetada %2 sekundi jooksul.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Väline käsk lõpetas vigadega.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Käsk <i>%1</i> lõpetas sulgemiskoodiga %2.</translation> </message> diff --git a/lang/calamares_eu.ts b/lang/calamares_eu.ts index 22be781de73e0a5ce0a78c4d9b5fd6c7c96bbdd4..766cc31c3fae7d8e0538ce56d4aa79f1a5f49738 100644 --- a/lang/calamares_eu.ts +++ b/lang/calamares_eu.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Egina</translation> </message> @@ -320,17 +320,17 @@ <translation>&Itxi</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1921,35 +1921,35 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira.</translation> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2922,13 +2922,13 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira.</translation> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2937,52 +2937,52 @@ Irteera: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Kanpo-komandoak huts egin du.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation><i>%1</i> komandoak huts egin du.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Ezin izan da %1 kanpo-komandoa abiarazi.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Ezin izan da <i>%1</i> komandoa abiarazi.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Barne-akatsa komandoa abiarazterakoan.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Kanpo-komandoa ez da bukatu.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Kanpo-komandoak akatsekin bukatu da.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_fa.ts b/lang/calamares_fa.ts index ff50a49be1c8fd977dc0e91015b9dc84caa495de..18268b6c0ef77f3e328ffab5eb63c97ec9e01f51 100644 --- a/lang/calamares_fa.ts +++ b/lang/calamares_fa.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>انجام شد.</translation> </message> @@ -320,17 +320,17 @@ <translation>&بسته</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>Install Log Paste URL</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>The upload was unsuccessful. No web-paste was done.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1922,35 +1922,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>پیکربندی پروندهٔ کلید LUKS.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>هیچ افرازی تعریف نشده</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>خطای برپاسازی rootfs رمزشده</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2923,65 +2923,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation>output هیچ خروجی از دستور نبود.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation>خروجی</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>فرمان خارجی خراب شد.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>دستور خارجی شروع نشد.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>خطای داخلی هنگام شروع دستور.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>پارامترهای نامناسب برای صدا زدن کار پردازش شده است</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>فرمان خارجی به پایان نرسید.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>دستور خارجی با خطا به پایان رسید.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_fi_FI.ts b/lang/calamares_fi_FI.ts index f08e023ac81d8427962e35d1292ec9c97f87e363..7b88ba17c1c2aa7cb2c9dd12237f7494b1779458 100644 --- a/lang/calamares_fi_FI.ts +++ b/lang/calamares_fi_FI.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Valmis</translation> </message> @@ -320,17 +320,17 @@ <translation>&Sulje</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>Asenna lokiliitoksen URL-osoite</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>Lähettäminen epäonnistui. Verkko-liittämistä ei tehty.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1927,35 +1927,35 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä.</tra <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>LUKS-avaintiedoston määrittäminen.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Osioita ei ole määritelty.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Salattu rootfs asennusvirhe</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>Juuriosio %1 on LUKS, mutta salasanaa ei ole asetettu.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>LUKS-avaintiedostoa ei voitu luoda juuriosioon %1.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>LUKS-avaintiedostoa ei voi määrittää osiossa %1.</translation> </message> @@ -2930,14 +2930,14 @@ hiiren vieritystä skaalaamiseen.</translation> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> Komentoa ei voitu ajaa.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2946,52 +2946,52 @@ Ulostulo: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Ulkoinen komento kaatui.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Komento <i>%1</i> kaatui.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Ulkoisen komennon käynnistäminen epäonnistui.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Komennon <i>%1</i> käynnistäminen epäonnistui.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Sisäinen virhe käynnistettäessä komentoa.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Huonot parametrit prosessin kutsuun.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Ulkoinen komento ei onnistunut.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Komento <i>%1</i> epäonnistui %2 sekunnissa.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Ulkoinen komento päättyi virheisiin.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Komento <i>%1</i> päättyi koodiin %2.</translation> </message> diff --git a/lang/calamares_fr.ts b/lang/calamares_fr.ts index 5f4281f6d22401573790b798eda6497673e753bb..2f799fdc2550a0288fab953610b06ae622b1d8b9 100644 --- a/lang/calamares_fr.ts +++ b/lang/calamares_fr.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Fait</translation> </message> @@ -320,17 +320,17 @@ <translation>&Fermer</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>URL de copie du journal d'installation</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>L'envoi a échoué. La copie sur le web n'a pas été effectuée.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1926,35 +1926,35 @@ L'installateur se fermera et les changements seront perdus.</translation> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>Configuration de la clé de fichier LUKS.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Aucune partition n'est définie.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Erreur du chiffrement du setup rootfs</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>La partition racine %1 est LUKS mais aucune phrase secrète n'a été configurée.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>Impossible de créer le fichier de clé LUKS pour la partition racine %1.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>La clé LUKS n'a pas pu être configurée sur la partition %1.</translation> </message> @@ -2930,14 +2930,14 @@ Vous pouvez obtenir un aperçu des différentes apparences en cliquant sur celle <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> Il y a eu aucune sortie de la commande</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2946,52 +2946,52 @@ Sortie </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>La commande externe s'est mal terminée.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>La commande <i>%1</i> s'est arrêtée inopinément.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>La commande externe n'a pas pu être lancée.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>La commande <i>%1</i> n'a pas pu être lancée.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Erreur interne au lancement de la commande</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Mauvais paramètres pour l'appel au processus de job.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>La commande externe ne s'est pas terminée.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>La commande <i>%1</i> ne s'est pas terminée en %2 secondes.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>La commande externe s'est terminée avec des erreurs.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>La commande <i>%1</i> s'est terminée avec le code de sortie %2.</translation> </message> diff --git a/lang/calamares_fr_CH.ts b/lang/calamares_fr_CH.ts index eb15ba1e8b65621aebcb3f508ac6e845279b10f3..ef9c992e39901fa0b0f70c171da842d64c6eee43 100644 --- a/lang/calamares_fr_CH.ts +++ b/lang/calamares_fr_CH.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation type="unfinished"/> </message> @@ -320,17 +320,17 @@ <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1920,35 +1920,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2921,65 +2921,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_fur.ts b/lang/calamares_fur.ts index 12682c7a739c6f93c8a1de8142b68166c55a5395..c80a78f0a8ab74b6a8333872b59847b09fa41651 100644 --- a/lang/calamares_fur.ts +++ b/lang/calamares_fur.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Fat</translation> </message> @@ -320,17 +320,17 @@ <translation>S&iere</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>URL de copie dal regjistri di instalazion</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>Il cjariament sù pe rêt al è lât strucj. No je stade fate nissune copie sul web.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1922,35 +1922,35 @@ Il program di instalazion al jessarà e dutis lis modifichis a laran pierdudis.< <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>Daûr a configurâ dal file clâf di LUKS.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>No je stade definide nissune partizion.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Erôr te configurazion di rootfs cifrât</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>La partizion lidrîs (root) %1 e je LUKS ma no je stade stabilide nissune frase di acès.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>Impussibil creâ il file clâf di LUKS pe partizion lidrîs (root) %1.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>No si è rivâts a configurâ il file clâf di LUKS su la partizion %1.</translation> </message> @@ -2925,14 +2925,14 @@ Il program di instalazion al jessarà e dutis lis modifichis a laran pierdudis.< <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> No si à vût un output dal comant.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2941,52 +2941,52 @@ Output: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Comant esterni colassât.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Comant <i>%1</i> colassât.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Il comant esterni nol è rivât a inviâsi.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Il comant <i>%1</i> nol è rivât a inviâsi.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Erôr interni tal inviâ il comant.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Parametris sbaliâts par processâ la clamade de operazion.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Il comant esterni nol è stât finît.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Il comant <i>%1</i> nol è stât finît in %2 seconts.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Il comant esterni al è terminât cun erôrs.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Il comant <i>%1</i> al è terminât cul codiç di jessude %2.</translation> </message> diff --git a/lang/calamares_gl.ts b/lang/calamares_gl.ts index cf0df383dd5344d0cfa6756729116efecb01006f..4a94560e172ea8d98af6e1588876c249753d825e 100644 --- a/lang/calamares_gl.ts +++ b/lang/calamares_gl.ts @@ -172,7 +172,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Feito</translation> </message> @@ -321,17 +321,17 @@ <translation>&Pechar</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1922,35 +1922,35 @@ O instalador pecharase e perderanse todos os cambios.</translation> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2923,14 +2923,14 @@ O instalador pecharase e perderanse todos os cambios.</translation> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> A saída non produciu ningunha saída.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2939,52 +2939,52 @@ Saída: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>A orde externa fallou</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>A orde <i>%1</i> fallou.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Non foi posíbel iniciar a orde externa.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Non foi posíbel iniciar a orde <i>%1</i>.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Produciuse un erro interno ao iniciar a orde.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Erro nos parámetros ao chamar o traballo</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>A orde externa non se puido rematar.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>A orde <i>%1</i> non se puido rematar en %2s segundos.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>A orde externa rematou con erros.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>A orde <i>%1</i> rematou co código de erro %2.</translation> </message> diff --git a/lang/calamares_gu.ts b/lang/calamares_gu.ts index 2c2263f2045e17459b4313620a9c51a7fa84ad86..55531a27723e07f165239fb0b9b7e3fd88f3e433 100644 --- a/lang/calamares_gu.ts +++ b/lang/calamares_gu.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation type="unfinished"/> </message> @@ -320,17 +320,17 @@ <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1920,35 +1920,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2921,65 +2921,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_he.ts b/lang/calamares_he.ts index 90a5fd39e83475684d1ce61bbdec74d246fbe6df..bb873c0fa9bc74b2969af46a80cef1178012eb8b 100644 --- a/lang/calamares_he.ts +++ b/lang/calamares_he.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>סיום</translation> </message> @@ -324,17 +324,17 @@ <translation>&סגירה</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>כתובת הדבקת יומן התקנה</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>ההעלאה לא הצליחה. לא בוצעה הדבקה לאינטרנט.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1930,35 +1930,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>קובץ מפתח ה־LUKS מוגדר.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>לא הוגדרו מחיצות.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>שגיאת התקנת מחיצת שורש מוצפנת</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>מחיצת השורש %1 היא LUKS אבל לא הוגדרה מילת צופן.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>לא ניתן ליצור קובץ מפתח LUKS למחיצת השורש %1.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>לא ניתן להגדיר קובץ מפתח LUKS למחיצה %1.</translation> </message> @@ -2951,14 +2951,14 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> לא היה פלט מהפקודה.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2967,52 +2967,52 @@ Output: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>הפקודה החיצונית נכשלה.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>הפקודה <i>%1</i> קרסה.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>הפעלת הפעולה החיצונית נכשלה.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>הפעלת הפקודה <i>%1</i> נכשלה.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>שגיאה פנימית בעת הפעלת פקודה.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>פרמטרים לא תקינים עבור קריאת עיבוד פעולה.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>סיום הפקודה החיצונית נכשל.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>הפקודה <i>%1</i> לא הסתיימה תוך %2 שניות.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>הפקודה החיצונית הסתיימה עם שגיאות.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>הפקודה <i>%1</i> הסתיימה עם קוד היציאה %2.</translation> </message> diff --git a/lang/calamares_hi.ts b/lang/calamares_hi.ts index a7ce01d65388e1b72a89e39e73162b79821bb77b..72505744a5c6018373a585546513975f9916cbe6 100644 --- a/lang/calamares_hi.ts +++ b/lang/calamares_hi.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>पूर्ण</translation> </message> @@ -320,17 +320,17 @@ <translation>बंद करें (&C)</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>इंस्टॉल प्रक्रिया की लॉग फ़ाइल पेस्ट करें</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>अपलोड विफल रहा। इंटरनेट पर पेस्ट नहीं हो सका।</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1926,35 +1926,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>LUKS कुंजी फ़ाइल विन्यस्त करना।</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>कोई विभाजन परिभाषित नहीं है।</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>एन्क्रिप्टेड रुट फ़ाइल सिस्टम सेटअप करने में त्रुटि</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>रुट विभाजन %1, LUKS है परंतु कोई कूटशब्द सेट नहीं है।</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>रुट विभाजन %1 हेतु LUKS कुंजी फ़ाइल बनाई नहीं जा सकी।</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>विभाजन %1 हेतु LUKS कुंजी फ़ाइल विन्यस्त नहीं हो सकी।</translation> </message> @@ -2929,14 +2929,14 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> कमांड से कोई आउटपुट नहीं मिला।</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2945,52 +2945,52 @@ Output: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>बाह्य कमांड क्रैश हो गई।</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>कमांड <i>%1</i> क्रैश हो गई।</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>बाह्य कमांड शुरू होने में विफल।</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>कमांड <i>%1</i> शुरू होने में विफल।</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>कमांड शुरू करते समय आंतरिक त्रुटि।</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>प्रक्रिया कार्य कॉल के लिए गलत मापदंड।</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation> बाहरी कमांड समाप्त करने में विफल।</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>कमांड <i>%1</i> %2 सेकंड में समाप्त होने में विफल।</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>बाहरी कमांड त्रुटि के साथ समाप्त।</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>कमांड <i>%1</i> exit कोड %2 के साथ समाप्त।</translation> </message> diff --git a/lang/calamares_hr.ts b/lang/calamares_hr.ts index c9170fdc7dca0eedda056b50de248fcedc2adad1..f3a98171d0d357adbbefe78f999b39c962291127 100644 --- a/lang/calamares_hr.ts +++ b/lang/calamares_hr.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Gotovo</translation> </message> @@ -322,17 +322,17 @@ <translation>&Zatvori</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>URL za objavu dnevnika instaliranja</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>Objava dnevnika instaliranja na web nije uspjela.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1928,35 +1928,35 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>Konfiguriranje LUKS ključne datoteke.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Nema definiranih particija.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Pogreška postavljanja šifriranog rootfs-a</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>Root particija %1 je LUKS, ali nije postavljena zaporka.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>Nije moguće kreirati LUKS ključnu datoteku za root particiju %1.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>Nije moguće konfigurirati datoteku LUKS ključevima na particiji %1.</translation> </message> @@ -2940,14 +2940,14 @@ te korištenjem tipki +/- ili skrolanjem miša za zumiranje.</translation> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> Nema izlazne informacije od naredbe.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2956,52 +2956,52 @@ Izlaz: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Vanjska naredba je prekinula s radom.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Naredba <i>%1</i> je prekinula s radom.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Vanjska naredba nije uspješno pokrenuta.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Naredba <i>%1</i> nije uspješno pokrenuta.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Unutrašnja greška pri pokretanju naredbe.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Krivi parametri za proces poziva posla.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Vanjska naredba se nije uspjela izvršiti.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Naredba <i>%1</i> nije uspjela završiti za %2 sekundi.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Vanjska naredba je završila sa pogreškama.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Naredba <i>%1</i> je završila sa izlaznim kodom %2.</translation> </message> diff --git a/lang/calamares_hu.ts b/lang/calamares_hu.ts index 6d7ea4dabac3a1a0ef9693202cf812d49adbe471..ecb8108f79a09d8a35b56f1ff81e5878e9e637c4 100644 --- a/lang/calamares_hu.ts +++ b/lang/calamares_hu.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Kész</translation> </message> @@ -320,17 +320,17 @@ <translation>&Bezár</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>Telepítési napló beillesztési URL-je.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1923,35 +1923,35 @@ Telepítés nem folytatható. <a href="#details">Részletek...</a></ <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>LUKS kulcs fájl konfigurálása.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Nincsenek partíciók definiálva.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Titkosított rootfs telepítési hiba</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>A %1 root partíció LUKS de beállítva nincs kulcs.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>Nem sikerült létrehozni a LUKS kulcs fájlt a %1 root partícióhoz</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2924,14 +2924,14 @@ Telepítés nem folytatható. <a href="#details">Részletek...</a></ <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> A parancsnak nem volt kimenete.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2940,52 +2940,52 @@ Kimenet: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Külső parancs összeomlott.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Parancs <i>%1</i> összeomlott.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>A külső parancsot nem sikerült elindítani.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>A(z) <i>%1</i> parancsot nem sikerült elindítani.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Belső hiba a parancs végrehajtásakor.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Hibás paraméterek a folyamat hívásához.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Külső parancs nem fejeződött be.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>A(z) <i>%1</i> parancsot nem sikerült befejezni %2 másodperc alatt.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>A külső parancs hibával fejeződött be.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>A(z) <i>%1</i> parancs hibakóddal lépett ki: %2.</translation> </message> diff --git a/lang/calamares_id.ts b/lang/calamares_id.ts index ece403fcef8c27398462a1e67f03ef9ad0dc1201..5370b9bcece860d6cc30c3c7a157278d0f2b5199 100644 --- a/lang/calamares_id.ts +++ b/lang/calamares_id.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Selesai</translation> </message> @@ -318,17 +318,17 @@ <translation>&Tutup</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1920,35 +1920,35 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</translat <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>Mengkonfigurasi file kunci LUKS</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Tidak ada partisi yang didefinisikan.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Kesalahan penyiapan rootfs yang terenkripsi</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>Partisi root %1 merupakan LUKS tetapi frasa sandi tidak ditetapkan</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>Tidak dapat membuat file kunci LUKS untuk partisi root %1</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>Tidak dapat mengkonfigurasi file kunci LUKS pada partisi %1</translation> </message> @@ -2912,14 +2912,14 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</translat <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> Tidak ada keluaran dari perintah.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2928,52 +2928,52 @@ Keluaran: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Perintah eksternal rusak.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Perintah <i>%1</i> mogok.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Perintah eksternal gagal dimulai</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Perintah <i>%1</i> gagal dimulai.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Terjadi kesalahan internal saat menjalankan perintah.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Parameter buruk untuk memproses panggilan tugas,</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Perintah eksternal gagal diselesaikan .</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Perintah <i>%1</i> gagal untuk diselesaikan dalam %2 detik.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Perintah eksternal diselesaikan dengan kesalahan .</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Perintah <i>%1</i> diselesaikan dengan kode keluar %2.</translation> </message> diff --git a/lang/calamares_id_ID.ts b/lang/calamares_id_ID.ts index 4cef1cddcc7bcebf86517bbf90e62cf67813cc2f..9f165f5e0fc0f9aecccf2e2a589b2866883ff7f9 100644 --- a/lang/calamares_id_ID.ts +++ b/lang/calamares_id_ID.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation type="unfinished"/> </message> @@ -318,17 +318,17 @@ <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1918,35 +1918,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2910,65 +2910,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_ie.ts b/lang/calamares_ie.ts index 515ad1f68b3e5b727c57df9b41d7fb5f4a4f1b7e..99139f13e9fe551218ffd589d8c92eeea253153b 100644 --- a/lang/calamares_ie.ts +++ b/lang/calamares_ie.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Finit</translation> </message> @@ -320,17 +320,17 @@ <translation>C&luder</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1920,35 +1920,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Null partition es definit.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2921,65 +2921,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_is.ts b/lang/calamares_is.ts index 4618682f6eb06d63a86b129410a1587cb2a58bac..c89a754955621030cbef0aea7efbb459fe319f5c 100644 --- a/lang/calamares_is.ts +++ b/lang/calamares_is.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Búið</translation> </message> @@ -320,17 +320,17 @@ <translation>&Loka</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1921,35 +1921,35 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2922,65 +2922,65 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_it_IT.ts b/lang/calamares_it_IT.ts index faae2b071bceb0d1b84cd2b21cc0744a99d0adee..df4d5d360df20cb1495e2bd517f0fd779389f416 100644 --- a/lang/calamares_it_IT.ts +++ b/lang/calamares_it_IT.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Fatto</translation> </message> @@ -320,17 +320,17 @@ <translation>&Chiudi</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>URL di copia del log d'installazione</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>Il caricamento è fallito. Non è stata fatta la copia sul web.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1921,35 +1921,35 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>Configurazione in corso del file chiave LUKS.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Non è stata specificata alcuna partizione.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Errore nella configurazione del rootfs crittato</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>La partizione root %1 è LUKS ma non sono state configurate passphrase.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>Impossibile creare il file chiave LUKS per la partizione root %1.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>Impossibile configurare il file chiave LUKS per la partizione %1.</translation> </message> @@ -2922,13 +2922,13 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation>Non c'era output dal comando.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2937,53 +2937,53 @@ Output: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Il comando esterno si è arrestato.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Il comando <i>%1</i> si è arrestato.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Il comando esterno non si è avviato.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Il comando %1 non si è avviato. </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Errore interno all'avvio del comando.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Parametri errati per elaborare la chiamata al job.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Il comando esterno non è stato portato a termine.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Il comando <i>%1</i> non è stato portato a termine in %2 secondi.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Il comando esterno è terminato con errori.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Il comando <i>%1</i> è terminato con codice di uscita %2.</translation> </message> diff --git a/lang/calamares_ja.ts b/lang/calamares_ja.ts index 9177acec25646eaa99afb5078d55af41c8dd9547..05c78a85b542d5280c1e9142814afe20b2de89b9 100644 --- a/lang/calamares_ja.ts +++ b/lang/calamares_ja.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>完了</translation> </message> @@ -318,17 +318,17 @@ <translation>閉じる (&C)</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>インストールログを貼り付けるURL</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>アップロードは失敗しました。 ウェブへの貼り付けは行われませんでした。</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1925,35 +1925,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>LUKSキーファイルを設定しています。</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>パーティションが定義されていません。</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>暗号化された rootfs のセットアップエラー</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>ルートパーティション %1 はLUKSですが、パスワードが設定されていません。</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>ルートパーティション %1 のLUKSキーファイルを作成できませんでした。</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>パーティション %1 でLUKSキーファイルを設定できませんでした。</translation> </message> @@ -2920,14 +2920,14 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> コマンドから出力するものがありませんでした。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2936,52 +2936,52 @@ Output: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>外部コマンドがクラッシュしました。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>コマンド <i>%1</i> がクラッシュしました。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>外部コマンドの起動に失敗しました。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>コマンド <i>%1</i> の起動に失敗しました。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>コマンドが起動する際に内部エラーが発生しました。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>ジョブ呼び出しにおける不正なパラメータ</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>外部コマンドの終了に失敗しました。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>コマンド<i>%1</i> %2 秒以内に終了することに失敗しました。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>外部のコマンドがエラーで停止しました。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>コマンド <i>%1</i> が終了コード %2 で終了しました。.</translation> </message> diff --git a/lang/calamares_kk.ts b/lang/calamares_kk.ts index 2ee79850d345d9e49ea69fddd26f2a47563d2d65..5dd7b974bae500d001c02f2d63d4781be3dbb0c6 100644 --- a/lang/calamares_kk.ts +++ b/lang/calamares_kk.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Дайын</translation> </message> @@ -320,17 +320,17 @@ <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1920,35 +1920,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2921,65 +2921,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_kn.ts b/lang/calamares_kn.ts index 2468db5c354806efd17272632ac8c9f0f9083fdc..6177d478f63c41c21c90abbec9a88421caa91b1a 100644 --- a/lang/calamares_kn.ts +++ b/lang/calamares_kn.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation type="unfinished"/> </message> @@ -320,17 +320,17 @@ <translation>ಮುಚ್ಚಿರಿ</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1920,35 +1920,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2921,65 +2921,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_ko.ts b/lang/calamares_ko.ts index ea92efc8cdb9e67fa46f6221dfc9c281e82ddcef..a5931d79ebd89de1179505b99d6a308fdf1b02a4 100644 --- a/lang/calamares_ko.ts +++ b/lang/calamares_ko.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>완료</translation> </message> @@ -318,17 +318,17 @@ <translation>닫기(&C)</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>로그 붙여넣기 URL 설치</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>업로드에 실패했습니다. 웹 붙여넣기가 수행되지 않았습니다.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1924,35 +1924,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>LUKS 키 파일 구성 중.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>파티션이 정의되지 않았습니다.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>암호화된 rootfs 설정 오류</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>루트 파티션 %1이(가) LUKS이지만 암호가 설정되지 않았습니다.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>루트 파티션 %1에 대한 LUKS 키 파일을 생성할 수 없습니다.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>파티션 %1에 LUKS 키 파일을 설정할 수 없습니다.</translation> </message> @@ -2918,14 +2918,14 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> 명령으로부터 아무런 출력이 없습니다.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2934,52 +2934,52 @@ Output: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>외부 명령이 실패했습니다.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation><i>%1</i> 명령이 실패했습니다.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>외부 명령을 시작하지 못했습니다.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation><i>%1</i> 명령을 시작하지 못했습니다.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>명령을 시작하는 중에 내부 오류가 발생했습니다.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>프로세스 작업 호출에 대한 잘못된 매개 변수입니다.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>외부 명령을 완료하지 못했습니다.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation><i>%1</i> 명령을 %2초 안에 완료하지 못했습니다.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>외부 명령이 오류와 함께 완료되었습니다.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation><i>%1</i> 명령이 종료 코드 %2와 함께 완료되었습니다.</translation> </message> diff --git a/lang/calamares_ko_KR.ts b/lang/calamares_ko_KR.ts index dfb236fffeb24cae47bce4e230f0be13638f96ec..dda8064844382790bd1f2ed9296ee25e32b7ea4f 100644 --- a/lang/calamares_ko_KR.ts +++ b/lang/calamares_ko_KR.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation type="unfinished"/> </message> @@ -318,17 +318,17 @@ <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1918,35 +1918,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2910,65 +2910,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_lo.ts b/lang/calamares_lo.ts index 4f3524d3ce0318e34d7bb9c5e7bad1a8e387c34b..96df1d1d1fa700e67d7a0976742172c22ee823a3 100644 --- a/lang/calamares_lo.ts +++ b/lang/calamares_lo.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation type="unfinished"/> </message> @@ -318,17 +318,17 @@ <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1918,35 +1918,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2910,65 +2910,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_lt.ts b/lang/calamares_lt.ts index f4face044fd1bd7fbb360ed4179d8f2e771d8690..cd6d7b871ec4cefc93b6b7982eff0b89c4667d9e 100644 --- a/lang/calamares_lt.ts +++ b/lang/calamares_lt.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Atlikta</translation> </message> @@ -324,17 +324,17 @@ <translation>&Užverti</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>Diegimo žurnalo įdėjimo URL</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>Įkėlimas buvo nesėkmingas. Nebuvo atlikta jokio įdėjimo į saityną.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1930,35 +1930,35 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>Konfigūruojamas LUKS raktų failas.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Nėra jokių apibrėžtų skaidinių.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Šifruoto rootfs sąrankos klaida</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>Šaknies skaidinys %1 yra LUKS, tačiau nebuvo nustatyta jokia slaptafrazė.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>Nepavyko šakniniam skaidiniui %1 sukurti LUKS rakto failo. </translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>Nepavyko konfigūruoti LUKS rakto failo skaidinyje %1.</translation> </message> @@ -2951,14 +2951,14 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> Nebuvo jokios išvesties iš komandos.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2967,52 +2967,52 @@ Išvestis: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Išorinė komanda užstrigo.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Komanda <i>%1</i> užstrigo.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Nepavyko paleisti išorinės komandos.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Nepavyko paleisti komandos <i>%1</i>.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Paleidžiant komandą, įvyko vidinė klaida.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Blogi parametrai proceso užduoties iškvietai.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Nepavyko pabaigti išorinės komandos.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Nepavyko per %2 sek. pabaigti komandos <i>%1</i>.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Išorinė komanda pabaigta su klaidomis.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Komanda <i>%1</i> pabaigta su išėjimo kodu %2.</translation> </message> diff --git a/lang/calamares_lv.ts b/lang/calamares_lv.ts index f27c798a9dc8202ddf9a2943716cfe0cf54b808a..1a0667dcaa1002d6ef8f322e8775e54446332763 100644 --- a/lang/calamares_lv.ts +++ b/lang/calamares_lv.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation type="unfinished"/> </message> @@ -322,17 +322,17 @@ <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1922,35 +1922,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2932,65 +2932,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_mk.ts b/lang/calamares_mk.ts index 1fb5054345b92e8a2b8179e5b6a79be84044fa0c..2a69471f840e19ce6f30049ab0563ac34231e8de 100644 --- a/lang/calamares_mk.ts +++ b/lang/calamares_mk.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Готово</translation> </message> @@ -320,17 +320,17 @@ <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1920,35 +1920,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2921,65 +2921,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_ml.ts b/lang/calamares_ml.ts index 0b0771f73d44e0ececb5a4544d00d9b11117068b..d733567d2fc5de5e334ba1b5d9d46524e6a19ca6 100644 --- a/lang/calamares_ml.ts +++ b/lang/calamares_ml.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>പൂർത്തിയായി</translation> </message> @@ -320,17 +320,17 @@ <translation>അടയ്ക്കുക (&C)</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>ഇൻസ്റ്റാൾ ലോഗ് പകർപ്പിന്റെ വിലാസം</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>അപ്ലോഡ് പരാജയമായിരുന്നു. വെബിലേക്ക് പകർത്തിയില്ല.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1922,35 +1922,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>LUKS കീ ഫയൽ ക്രമീകരിക്കുന്നു.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>പാര്ട്ടീഷ്യനുകള് നിര്വ്വചിച്ചിട്ടില്ല</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>എന്ക്രിപ്റ്റുചെയ്ത റൂട്ട് എഫ്എസ് സജ്ജീകരണത്തില് പ്രശ്നമുണ്ടു്</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>റൂട്ട് പാർട്ടീഷൻ %1 LUKS ആണ് പക്ഷേ രഹസ്യവാക്കൊന്നും ക്രമീകരിച്ചിട്ടില്ല.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>റൂട്ട് പാർട്ടീഷൻ %1ന് വേണ്ടി LUKS കീ ഫയൽ നിർമ്മിക്കാനായില്ല.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2923,14 +2923,14 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> ആജ്ഞയിൽ നിന്നും ഔട്ട്പുട്ടൊന്നുമില്ല.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2939,52 +2939,52 @@ Output: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>ബാഹ്യമായ ആജ്ഞ തകർന്നു.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>ആജ്ഞ <i>%1</i> പ്രവർത്തനരഹിതമായി.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>ബാഹ്യമായ ആജ്ഞ ആരംഭിക്കുന്നതിൽ പരാജയപ്പെട്ടു.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation><i>%1</i>ആജ്ഞ ആരംഭിക്കുന്നതിൽ പരാജയപ്പെട്ടു.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>ആജ്ഞ ആരംഭിക്കുന്നതിൽ ആന്തരികമായ പിഴവ്.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>പ്രക്രിയ ജോലി വിളിയ്ക്ക് ശരിയല്ലാത്ത പരാമീറ്ററുകൾ.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>ബാഹ്യമായ ആജ്ഞ പൂർത്തിയാവുന്നതിൽ പരാജയപ്പെട്ടു.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>ആജ്ഞ <i>%1</i> %2 സെക്കൻഡുകൾക്കുള്ളിൽ പൂർത്തിയാവുന്നതിൽ പരാജയപ്പെട്ടു.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>ബാഹ്യമായ ആജ്ഞ പിഴവുകളോട് കൂടീ പൂർത്തിയായി.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>ആജ്ഞ <i>%1</i> എക്സിറ്റ് കോഡ് %2ഓട് കൂടി പൂർത്തിയായി.</translation> </message> diff --git a/lang/calamares_mr.ts b/lang/calamares_mr.ts index c26f4ec658b12862515b0564f46ce5963ff0a100..c6cced54a747a4912b11d975bd45b4c6cded90d2 100644 --- a/lang/calamares_mr.ts +++ b/lang/calamares_mr.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>पूर्ण झाली</translation> </message> @@ -320,17 +320,17 @@ <translation>&बंद करा</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1920,35 +1920,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2921,65 +2921,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_nb.ts b/lang/calamares_nb.ts index c2b03cca70eff116ca8983f056c9176242592388..4b8fc324ea5ed46aa06578b809a794ec9826cbc0 100644 --- a/lang/calamares_nb.ts +++ b/lang/calamares_nb.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Ferdig</translation> </message> @@ -320,17 +320,17 @@ <translation>&Lukk</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1921,35 +1921,35 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2922,65 +2922,65 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Ugyldige parametere for prosessens oppgavekall</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_ne.ts b/lang/calamares_ne.ts index 2e0826c914100cb3e60a38ce59391821e5dddc59..81c37c417cf0baafadd7e727dda21a21669d4cc7 100644 --- a/lang/calamares_ne.ts +++ b/lang/calamares_ne.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation type="unfinished"/> </message> @@ -320,17 +320,17 @@ <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1920,35 +1920,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2921,65 +2921,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_ne_NP.ts b/lang/calamares_ne_NP.ts index a02ab78ff056a065662e0953ed1444b27c3fcfd1..b734188aabe0292198d62f3c24e867409333d05a 100644 --- a/lang/calamares_ne_NP.ts +++ b/lang/calamares_ne_NP.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>सकियो</translation> </message> @@ -320,17 +320,17 @@ <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1920,35 +1920,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2921,65 +2921,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_nl.ts b/lang/calamares_nl.ts index 738bb72a39ef986efa3a5d60e48d439518eb1eef..2e892182e4791ec2b9d65618f255a68d91f010da 100644 --- a/lang/calamares_nl.ts +++ b/lang/calamares_nl.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Gereed</translation> </message> @@ -320,17 +320,17 @@ <translation>&Sluiten</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>URL voor het verzenden van het installatielogboek</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>Het uploaden is mislukt. Web-plakken niet gedaan.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1926,35 +1926,35 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>LUKS-sleutelbestand configureren.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Geen partities gedefineerd.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Versleutelde rootfs installatiefout</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>Rootpartitie %1 is LUKS maar er is een wachtwoord ingesteld.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>Kon het LUKS-sleutelbestand niet aanmaken voor rootpartitie %1.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>Kon het LUKS-sleutelbestand niet aanmaken op partitie %1.</translation> </message> @@ -2927,14 +2927,14 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> Er was geen uitvoer van de opdracht.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2943,52 +2943,52 @@ Uitvoer: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Externe opdracht is vastgelopen.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Opdracht <i>%1</i> is vastgelopen.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Externe opdracht kon niet worden gestart.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Opdracht <i>%1</i> kon niet worden gestart.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Interne fout bij het starten van de opdracht.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Onjuiste parameters voor procestaak</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Externe opdracht is niet correct beëindigd.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Opdracht <i>%1</i> is niet beëindigd in %2 seconden.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Externe opdracht beëindigd met fouten.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Opdracht <i>%1</i> beëindigd met foutcode %2.</translation> </message> diff --git a/lang/calamares_pl.ts b/lang/calamares_pl.ts index bee6313b214ada9a4c42cd97a8b9af57324cbdde..e48429e10b9f47bd6b40b0c82554a4d673fb138c 100644 --- a/lang/calamares_pl.ts +++ b/lang/calamares_pl.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Ukończono</translation> </message> @@ -324,17 +324,17 @@ <translation>Zam&knij</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1925,35 +1925,35 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>Konfigurowanie pliku klucza LUKS.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2944,14 +2944,14 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> W wyniku polecenia nie ma żadnego rezultatu.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2960,52 +2960,52 @@ Wyjście: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Zewnętrzne polecenie zakończone niepowodzeniem.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Wykonanie polecenia <i>%1</i> nie powiodło się.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Nie udało się uruchomić zewnętrznego polecenia.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Polecenie <i>%1</i> nie zostało uruchomione.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Wystąpił wewnętrzny błąd podczas uruchamiania polecenia.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Błędne parametry wywołania zadania.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Nie udało się ukończyć zewnętrznego polecenia.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Nie udało się ukończyć polecenia <i>%1</i> w ciągu %2 sekund.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Ukończono zewnętrzne polecenie z błędami.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Polecenie <i>%1</i> zostało ukończone z błędem o kodzie %2.</translation> </message> diff --git a/lang/calamares_pt_BR.ts b/lang/calamares_pt_BR.ts index 26ec8441f03730b2444692debcb87141a91cf107..0f1686a2bc8cc039d491143573a4c97dcdc83db1 100644 --- a/lang/calamares_pt_BR.ts +++ b/lang/calamares_pt_BR.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Concluído</translation> </message> @@ -297,7 +297,7 @@ <message> <location filename="../src/libcalamaresui/ViewManager.cpp" line="163"/> <source>Would you like to paste the install log to the web?</source> - <translation>Deseja colar o registro de instalação na web?</translation> + <translation>Deseja colar o registro de instalação na internet?</translation> </message> <message> <location filename="../src/libcalamaresui/ViewManager.cpp" line="179"/> @@ -320,17 +320,17 @@ <translation>&Fechar</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>Colar URL de Registro de Instalação</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> - <translation>Não foi possível fazer o upload. Nenhuma colagem foi feita na web.</translation> + <translation>Não foi possível fazer o upload. Nenhuma colagem foi feita na internet.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -610,7 +610,7 @@ O instalador será fechado e todas as alterações serão perdidas.</translation <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1398"/> <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1423"/> <source><strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device.</source> - <translation><strong>Apagar disco</strong><br/>Isto <font color="red">excluirá</font> todos os dados no dispositivo de armazenamento selecionado.</translation> + <translation><strong>Apagar disco</strong><br/>Isto <font color="red">excluirá</font> todos os dados presentes atualmente no dispositivo de armazenamento selecionado.</translation> </message> <message> <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1343"/> @@ -949,12 +949,12 @@ O instalador será fechado e todas as alterações serão perdidas.</translation <message> <location filename="../src/modules/packagechooser/Config.cpp" line="177"/> <source>Install option: <strong>%1</strong></source> - <translation type="unfinished"/> + <translation>Instalar opção: <strong>%1</strong></translation> </message> <message> <location filename="../src/modules/packagechooser/Config.cpp" line="177"/> <source>None</source> - <translation type="unfinished"/> + <translation>Nenhum</translation> </message> <message> <location filename="../src/modules/summary/Config.cpp" line="82"/> @@ -1926,35 +1926,35 @@ O instalador será fechado e todas as alterações serão perdidas.</translation <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>Configurando o arquivo de chave do LUKS.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Nenhuma partição está definida.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Erro de configuração de rootfs encriptado</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>A partição raiz %1 é LUKS, mas nenhuma senha foi definida.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>Não foi possível criar o arquivo de chave LUKS para a partição raiz %1.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>Não foi possível configurar a chave LUKS na partição %1.</translation> </message> @@ -2024,7 +2024,7 @@ O instalador será fechado e todas as alterações serão perdidas.</translation <message> <location filename="../src/modules/netinstall/NetInstallViewStep.cpp" line="54"/> <source>Web browser</source> - <translation>Navegador web</translation> + <translation>Navegador de internet</translation> </message> <message> <location filename="../src/modules/netinstall/NetInstallViewStep.cpp" line="55"/> @@ -2805,37 +2805,37 @@ O instalador será fechado e todas as alterações serão perdidas.</translation <message> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="534"/> <source>EFI system partition configured incorrectly</source> - <translation type="unfinished"/> + <translation>Partição EFI do sistema configurada incorretamente</translation> </message> <message> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="539"/> <source>An EFI system partition is necessary to start %1.<br/><br/>To configure an EFI system partition, go back and select or create a suitable filesystem.</source> - <translation type="unfinished"/> + <translation>Uma partição de sistema EFI é necessária para iniciar o %1. <br/><br/>Para configurar uma partição de sistema EFI, volte atrás e selecione ou crie um sistema de arquivos adequado.</translation> </message> <message> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="550"/> <source>The filesystem must be mounted on <strong>%1</strong>.</source> - <translation type="unfinished"/> + <translation>O sistema de arquivos deve ser montado em <strong>%1</strong>.</translation> </message> <message> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="556"/> <source>The filesystem must have type FAT32.</source> - <translation type="unfinished"/> + <translation>O sistema de arquivos deve ter o tipo FAT32.</translation> </message> <message> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="562"/> <source>The filesystem must be at least %1 MiB in size.</source> - <translation type="unfinished"/> + <translation>O sistema de arquivos deve ter pelo menos %1 MiB de tamanho.</translation> </message> <message> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="569"/> <source>The filesystem must have flag <strong>%1</strong> set.</source> - <translation type="unfinished"/> + <translation>O sistema de arquivos deve ter o marcador %1 definido.</translation> </message> <message> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="575"/> <source>You can continue without setting up an EFI system partition but your system may fail to start.</source> - <translation type="unfinished"/> + <translation>Você pode continuar sem configurar uma partição de sistema EFI, mas seu sistema pode não iniciar.</translation> </message> <message> <location filename="../src/modules/partition/PartitionViewStep.cpp" line="592"/> @@ -2929,14 +2929,14 @@ O instalador será fechado e todas as alterações serão perdidas.</translation <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> Não houve saída do comando.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2945,52 +2945,52 @@ Saída: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>O comando externo falhou.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>O comando <i>%1</i> falhou.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>O comando externo falhou ao iniciar.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>O comando <i>%1</i> falhou ao iniciar.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Erro interno ao iniciar o comando.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Parâmetros ruins para a chamada da tarefa do processo.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>O comando externo falhou ao finalizar.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>O comando <i>%1</i> falhou ao finalizar em %2 segundos.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>O comando externo foi concluído com erros.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>O comando <i>%1</i> foi concluído com o código %2.</translation> </message> @@ -3933,7 +3933,7 @@ Saída: <message> <location filename="../src/modules/welcome/WelcomePage.ui" line="189"/> <source>Open release notes website</source> - <translation>Abrir o site com as notas de lançamento</translation> + <translation>Abrir website com as notas de lançamento</translation> </message> <message> <location filename="../src/modules/welcome/WelcomePage.ui" line="192"/> @@ -4099,7 +4099,7 @@ Saída: <message> <location filename="../src/modules/keyboardq/keyboardq.qml" line="60"/> <source>To activate keyboard preview, select a layout.</source> - <translation type="unfinished"/> + <translation>Para ativar a pré-visualização do teclado, selecione um layout.</translation> </message> <message> <location filename="../src/modules/keyboardq/keyboardq.qml" line="86"/> @@ -4146,37 +4146,38 @@ Saída: <location filename="../src/modules/packagechooserq/packagechooserq.qml" line="45"/> <source>LibreOffice is a powerful and free office suite, used by millions of people around the world. It includes several applications that make it the most versatile Free and Open Source office suite on the market.<br/> Default option.</source> - <translation type="unfinished"/> + <translation>O LibreOffice é um programa de produtividade poderoso e gratuito, utilizado por milhões de pessoas ao redor do mundo. Ele inclui vários aplicativos que o tornam o programa de produtividade Livre e de Código Aberto mais versátil do mercado.<br/> + Opção padrão.</translation> </message> <message> <location filename="../src/modules/packagechooserq/packagechooserq.qml" line="59"/> <source>LibreOffice</source> - <translation type="unfinished"/> + <translation>LibreOffice</translation> </message> <message> <location filename="../src/modules/packagechooserq/packagechooserq.qml" line="108"/> <source>If you don't want to install an office suite, just select No Office Suite. You can always add one (or more) later on your installed system as the need arrives.</source> - <translation type="unfinished"/> + <translation>Se você não quiser instalar uma suíte de escritório, basta selecionar Sem Suíte de Escritório. Você pode sempre adicionar uma (ou mais) mais tarde no sistema instalado, à medida que precisar.</translation> </message> <message> <location filename="../src/modules/packagechooserq/packagechooserq.qml" line="121"/> <source>No Office Suite</source> - <translation type="unfinished"/> + <translation>Sem Suíte de Escritório</translation> </message> <message> <location filename="../src/modules/packagechooserq/packagechooserq.qml" line="172"/> <source>Create a minimal Desktop install, remove all extra applications and decide later on what you would like to add to your system. Examples of what won't be on such an install, there will be no Office Suite, no media players, no image viewer or print support. It will be just a desktop, file browser, package manager, text editor and simple web-browser.</source> - <translation type="unfinished"/> + <translation>Crie uma instalação mínima da Área de Trabalho, remova todas as aplicações adicionais e decida mais tarde o que gostaria de adicionar ao sistema. Exemplos do que não estará em tal instalação: não haverá nenhuma suíte de escritório, nenhum reprodutor multimídia, nenhum visualizador de imagens ou suporte para impressão. Será apenas um ambiente de trabalho, navegador de arquivos, gerenciador de pacotes, editor de texto e um simples navegador de internet.</translation> </message> <message> <location filename="../src/modules/packagechooserq/packagechooserq.qml" line="185"/> <source>Minimal Install</source> - <translation type="unfinished"/> + <translation>Instalação Mínima</translation> </message> <message> <location filename="../src/modules/packagechooserq/packagechooserq.qml" line="233"/> <source>Please select an option for your install, or use the default: LibreOffice included.</source> - <translation type="unfinished"/> + <translation>Por favor, selecione uma opção para sua instalação, ou use o padrão: LibreOffice incluído.</translation> </message> </context> <context> @@ -4237,7 +4238,7 @@ Saída: <message> <location filename="../src/modules/usersq/usersq.qml" line="43"/> <source>Pick your user name and credentials to login and perform admin tasks</source> - <translation>Escolha seu nome de usuário e credenciais para fazer login e executar tarefas de administrador</translation> + <translation>Escolha seu nome de usuário e credenciais para entrar e executar tarefas de administrador</translation> </message> <message> <location filename="../src/modules/usersq/usersq.qml" line="56"/> diff --git a/lang/calamares_pt_PT.ts b/lang/calamares_pt_PT.ts index bed076938c0812a753f52f4421b0411a743966b3..14d2ccf84b7e1e6ad6ec1a79caa00663decca6e2 100644 --- a/lang/calamares_pt_PT.ts +++ b/lang/calamares_pt_PT.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Concluído</translation> </message> @@ -320,17 +320,17 @@ <translation>&Fechar</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>Instalar o Registo Colar URL</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>O carregamento não teve êxito. Nenhuma pasta da web foi feita.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1926,35 +1926,35 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>A configurar o ficheiro chave do LUKS.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Nenhuma partição é definida.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Erro de configuração do rootfs criptografado</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>A partição root %1 é LUKS, mas nenhuma palavra-passe foi definida.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>Não foi possível criar o ficheiro de chave LUKS para a partição root %1.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>Não foi possível configurar a chave LUKS na partição %1.</translation> </message> @@ -2929,14 +2929,14 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> O comando não produziu saída de dados.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2945,52 +2945,52 @@ Saída de Dados: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>O comando externo "crashou".</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Comando <i>%1</i> "crashou".</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Comando externo falhou ao iniciar.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Comando <i>%1</i> falhou a inicialização.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Erro interno ao iniciar comando.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Maus parâmetros para chamada de processamento de tarefa.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Comando externo falhou a finalização.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Comando <i>%1</i> falhou ao finalizar em %2 segundos.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Comando externo finalizou com erros.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Comando <i>%1</i> finalizou com código de saída %2.</translation> </message> diff --git a/lang/calamares_ro.ts b/lang/calamares_ro.ts index a424b5d854267ee3df610b5b74e8c457355364bb..5e12af50fc8e5f98ffc550f22f1668104253e13b 100644 --- a/lang/calamares_ro.ts +++ b/lang/calamares_ro.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Gata</translation> </message> @@ -322,17 +322,17 @@ <translation>În&chide</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1923,35 +1923,35 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2936,14 +2936,14 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> Nu a existat nici o iesire din comanda</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2952,52 +2952,52 @@ Output </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Comanda externă a eșuat.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Comanda <i>%1</i> a eșuat.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Comanda externă nu a putut fi pornită.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Comanda <i>%1</i> nu a putut fi pornită.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Eroare internă la pornirea comenzii.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Parametri proști pentru apelul sarcinii de proces.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Finalizarea comenzii externe a eșuat.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Comanda <i>%1</i> nu a putut fi finalizată în %2 secunde.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Comanda externă finalizată cu erori.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Comanda <i>%1</i> finalizată cu codul de ieșire %2.</translation> </message> diff --git a/lang/calamares_ru.ts b/lang/calamares_ru.ts index d137ed6840873603520a3d003b5bd49007abcc81..5572e525f306b128d7cde5b59e72d2b6404ea283 100644 --- a/lang/calamares_ru.ts +++ b/lang/calamares_ru.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Готово</translation> </message> @@ -324,17 +324,17 @@ <translation>&Закрыть</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>Адрес для отправки журнала установки</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>Загрузка не удалась. Веб-вставка не была завершена.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1925,35 +1925,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>Конфигурация файла ключа LUKS.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Разделы не были заданы.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Ошибка шифрования корневой файловой системы</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>Корневой раздел %1 это LUKS, но ключ шифрования не был задан.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>Не удалось создать файл ключа LUKS для корневого раздела %1.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>Не удалось настроить файл ключа LUKS на разделе %1.</translation> </message> @@ -2944,14 +2944,14 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> Вывода из команды не последовало.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2960,52 +2960,52 @@ Output: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Сбой внешней команды.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Сбой команды <i>%1</i>.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Не удалось запустить внешнюю команду.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Не удалось запустить команду <i>%1</i>.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Внутренняя ошибка при запуске команды.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Неверные параметры для вызова процесса.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Не удалось завершить внешнюю команду.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Команда <i>%1</i> не завершилась за %2 с.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Внешняя команда завершилась с ошибками.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Команда <i>%1</i> завершилась с кодом %2.</translation> </message> diff --git a/lang/calamares_ru_RU.ts b/lang/calamares_ru_RU.ts index fbd17a18225e2e52d1e43a950d097cd7802f8bb1..c9963a5ab8616f67decf9ade41446895c78acde7 100644 --- a/lang/calamares_ru_RU.ts +++ b/lang/calamares_ru_RU.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation type="unfinished"/> </message> @@ -324,17 +324,17 @@ <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1924,35 +1924,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2943,65 +2943,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_si.ts b/lang/calamares_si.ts index 13c382c2ae2f304b735584aded6b6978ed2db2f1..7abc28ff868bfc74fe63215449f5cf49f452acc6 100644 --- a/lang/calamares_si.ts +++ b/lang/calamares_si.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation type="unfinished"/> </message> @@ -320,17 +320,17 @@ <translation>වසන්න (C)</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1920,35 +1920,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2921,65 +2921,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_sk.ts b/lang/calamares_sk.ts index 916912ca12c93c06f16f32f9be73cd4661461ee7..df597f2578b8689e849629ca9aa3c17a1062a4e3 100644 --- a/lang/calamares_sk.ts +++ b/lang/calamares_sk.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Hotovo</translation> </message> @@ -324,17 +324,17 @@ <translation>&Zavrieť</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>Odovzdanie nebolo úspešné. Nebolo dokončené žiadne webové vloženie.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1927,35 +1927,35 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>Nastavuje sa kľúčový súbor LUKS.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Nie sú určené žiadne oddiely.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Chyba pri inštalácii zašifrovaného koreňového súborového systému</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>Koreňový oddiel %1 je typu LUKS, ale nebolo nastavené žiadne heslo.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>Nepodarilo sa vytvoriť kľúčový súbor LUKS pre koreňový oddiel %1.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>Nepodarilo sa nastaviť kľúčový súbor LUKS na oddieli %1.</translation> </message> @@ -2947,14 +2947,14 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> Žiadny výstup z príkazu.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2963,52 +2963,52 @@ Výstup: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Externý príkaz nečakane skončil.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Príkaz <i>%1</i> nečakane skončil.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Zlyhalo spustenie externého príkazu.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Zlyhalo spustenie príkazu <i>%1</i> .</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Počas spúšťania príkazu sa vyskytla interná chyba.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Nesprávne parametre pre volanie úlohy procesu.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Zlyhalo dokončenie externého príkazu.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Zlyhalo dokončenie príkazu <i>%1</i> počas doby %2 sekúnd.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Externý príkaz bol dokončený s chybami.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Príkaz <i>%1</i> skončil s ukončovacím kódom %2.</translation> </message> diff --git a/lang/calamares_sl.ts b/lang/calamares_sl.ts index c762ddcc75f412103bba4c40562acc73b50f8a88..b13864f7e8b454e3f24b6fe3c59a5a88adeeadeb 100644 --- a/lang/calamares_sl.ts +++ b/lang/calamares_sl.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Končano</translation> </message> @@ -324,17 +324,17 @@ <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1925,35 +1925,35 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2944,65 +2944,65 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Nepravilni parametri za klic procesa opravila.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_sq.ts b/lang/calamares_sq.ts index f2b5e2f51d4f442819321e0f58264c219223b4b1..d771823b2e147ad45fdae477abf3a55f755367d3 100644 --- a/lang/calamares_sq.ts +++ b/lang/calamares_sq.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>U bë</translation> </message> @@ -320,17 +320,17 @@ <translation>&Mbylle</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>URL Ngjitjeje Regjistri Instalimi</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>Ngarkimi s’qe i suksesshëm. S’u bë hedhje në web.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1926,35 +1926,35 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>Po formësohet kartelë kyçesh LUKS.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>S’ka pjesë të përkufizuara.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Gabim ujdisjeje rootfs të fshehtëzuar</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>Pjesa rrënjë %1 është LUKS, por s’është caktuar frazëkalim.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>S’u krijua dot kartelë kyçi LUKS për ndarjen rrënjë %1.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>S’u formësua dot kartelë kyçesh LUKS te pjesën %1.</translation> </message> @@ -2927,14 +2927,14 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> S’pati përfundim nga urdhri.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2943,52 +2943,52 @@ Përfundim: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Urdhri i jashtëm u vithis.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Urdhri <i>%1</i> u vithis.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Dështoi nisja e urdhrit të jashtëm.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Dështoi nisja e urdhrit <i>%1</i>.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Gabim i brendshëm kur niset urdhri.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Parametra të gabuar për thirrje akti procesi.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>S’u arrit të përfundohej urdhër i jashtëm.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Urdhri <i>%1</i> s’arriti të përfundohej në %2 sekonda.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Urdhri i jashtë përfundoi me gabime.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Urdhri <i>%1</i> përfundoi me kod daljeje %2.</translation> </message> diff --git a/lang/calamares_sr.ts b/lang/calamares_sr.ts index bdf938e111144067f8b377fe945933855ab3766e..5348dbbc2c999d7101bd834396e72d7a123efedb 100644 --- a/lang/calamares_sr.ts +++ b/lang/calamares_sr.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Завршено</translation> </message> @@ -322,17 +322,17 @@ <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1923,35 +1923,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2933,65 +2933,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Лоши параметри при позиву посла процеса.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_sr@latin.ts b/lang/calamares_sr@latin.ts index 2e4649735ebaa95bd0c1f791a7f5b99762be1efe..22d43b72f36b0b99b0cd6facf4de7742e5cb8393 100644 --- a/lang/calamares_sr@latin.ts +++ b/lang/calamares_sr@latin.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Gotovo</translation> </message> @@ -322,17 +322,17 @@ <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1923,35 +1923,35 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2933,65 +2933,65 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Pogrešni parametri kod poziva funkcije u procesu.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_sv.ts b/lang/calamares_sv.ts index 43f7cca888ebc031a11f2b8b95f2c759c73c2d9c..972c78a00621873488b9f509a776169136415a96 100644 --- a/lang/calamares_sv.ts +++ b/lang/calamares_sv.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Klar</translation> </message> @@ -320,17 +320,17 @@ <translation>&Stäng</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>URL till installationslogg</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>Sändningen misslyckades. Ingenting sparades på webbplatsen.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1925,35 +1925,35 @@ Alla ändringar kommer att gå förlorade.</translation> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>Konfigurerar LUKS nyckel fil.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Inga partitioner är definerade.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Fel vid inställning av krypterat rootfs</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>Root partition %1 är LUKS men ingen lösenfras har ställts in.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>Kunde inte skapa LUKS nyckelfil för root partition %1.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>Kunde inte konfigurera LUKS nyckelfil på partition %1.</translation> </message> @@ -2929,14 +2929,14 @@ Sök på kartan genom att dra <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> Det kom ingen utdata från kommandot.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2945,52 +2945,52 @@ Utdata: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Externt kommando kraschade.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Kommando <i>%1</i> kraschade.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Externt kommando misslyckades med att starta</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Kommando <i>%1</i> misslyckades med att starta. </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Internt fel under kommandostart.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Ogiltiga parametrar för processens uppgiftsanrop.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Fel inträffade när externt kommando kördes.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Kommando <i>%1</i> misslyckades att slutföras på %2 sekunder.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Externt kommando kördes färdigt med fel.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Kommando <i>%1</i>avslutades under körning med avslutningskod %2.</translation> </message> diff --git a/lang/calamares_te.ts b/lang/calamares_te.ts index 8c354686e433348e9bd1bb95d7a572a42ee46cee..fd1b1ed61c785b3bb62b95693daed8a8f5fad373 100644 --- a/lang/calamares_te.ts +++ b/lang/calamares_te.ts @@ -173,7 +173,7 @@ automatic ఉంటుంది, మీరు మాన్యువల్ వి <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>ముగించు </translation> </message> @@ -322,17 +322,17 @@ automatic ఉంటుంది, మీరు మాన్యువల్ వి <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1922,35 +1922,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2923,65 +2923,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_tg.ts b/lang/calamares_tg.ts index 7382e637055bafe7c693521975d534a1f52cf0ee..adb4488c3c5ea259d699ac01fb3aac7c83e23c58 100644 --- a/lang/calamares_tg.ts +++ b/lang/calamares_tg.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Анҷоми кор</translation> </message> @@ -320,17 +320,17 @@ <translation>&Пӯшидан</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>Гузоштани нишонии URL-и сабти рӯйдодҳои насб</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>Боркунӣ иҷро нашуд. Гузариш ба шабака иҷро нашуд.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1922,35 +1922,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>Танзимкунии файли калиди LUKS.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Ягон қисми диск муайян карда нашуд.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Хатои танзими рамзгузории "rootfs"</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>Қисми диски реша (root)-и %1 дар LUKS асос меёбад, вале гузарвожа танзим нашудааст.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>Файли калидии LUKS барои қисми диски реша (root)-и %1 эҷод карда нашуд.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>Файли калидии LUKS дар қисми диски %1 танзим карда нашуд.</translation> </message> @@ -2925,14 +2925,14 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> Фармони иҷрошуда ягон натиҷа надод.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2941,52 +2941,52 @@ Output: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Фармони берунӣ иҷро нашуд.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Фармони <i>%1</i> иҷро нашуд.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Фармони берунӣ оғоз нашуд.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Фармони <i>%1</i> оғоз нашуд.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Ҳангоми оғоз кардани фармон хатои дохилӣ ба миён омад.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Имконоти нодуруст барои дархости вазифаи раванд.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Фармони берунӣ ба анҷом нарасид.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Фармони <i>%1</i> дар муддати %2 сония ба анҷом нарасид.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Фармони берунӣ бо хатоҳо ба анҷом расид.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Фармони <i>%1</i> бо рамзи барориши %2 ба анҷом расид.</translation> </message> diff --git a/lang/calamares_th.ts b/lang/calamares_th.ts index 3f64d84f639f0a1b699949a864d07842f1fc3fe7..8899fc658656408aea0fa7249c40c6d9b8f4804f 100644 --- a/lang/calamares_th.ts +++ b/lang/calamares_th.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>เสร็จสิ้น</translation> </message> @@ -318,17 +318,17 @@ <translation>ปิ&ด</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1919,35 +1919,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2911,65 +2911,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>พารามิเตอร์ไม่ถูกต้องสำหรับการเรียกการทำงาน</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_tr_TR.ts b/lang/calamares_tr_TR.ts index cedfceea8352f03400e64cc6dde213aa3bb9e3d6..f52cefb2f35941e0a2f8468a69bf7c16c8eedefa 100644 --- a/lang/calamares_tr_TR.ts +++ b/lang/calamares_tr_TR.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Sistem kurulumu tamamlandı, kurulum aracından çıkabilirsiniz.</translation> </message> @@ -320,17 +320,17 @@ <translation>&Kapat</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>Günlük Yapıştırma URL'sini Yükle</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>Yükleme başarısız oldu. Web yapıştırması yapılmadı.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1930,35 +1930,35 @@ Sistem güç kaynağına bağlı değil.</translation> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>LUKS anahtar dosyası yapılandırılıyor.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Hiçbir disk bölümü tanımlanmadı.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Şifrelenmiş rootfs kurulum hatası</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>%1 kök disk bölümü LUKS olacak fakat bunun için parola belirlenmedi.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>%1 kök disk bölümü için LUKS anahtar dosyası oluşturulamadı.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>%1 disk bölümü LUKS anahtar dosyası yapılandırılamadı.</translation> </message> @@ -2934,14 +2934,14 @@ Sistem güç kaynağına bağlı değil.</translation> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> Komut çıktısı yok.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2950,52 +2950,52 @@ Output: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Harici komut çöktü.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Komut <i>%1</i> çöktü.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Harici komut başlatılamadı.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Komut <i>%1</i> başlatılamadı.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Komut başlatılırken dahili hata.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Çalışma adımları başarısız oldu.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Harici komut başarısız oldu.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Komut <i>%1</i> %2 saniyede başarısız oldu.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Harici komut hatalarla bitti.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Komut <i>%1</i> %2 çıkış kodu ile tamamlandı</translation> </message> diff --git a/lang/calamares_uk.ts b/lang/calamares_uk.ts index 57a75a70e7cec8fbd44d8589cef84d1fcd3e5643..b55f1586c566e9762269c645b57e06708aa7512b 100644 --- a/lang/calamares_uk.ts +++ b/lang/calamares_uk.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Готово</translation> </message> @@ -324,17 +324,17 @@ <translation>&Закрити</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>Адреса для вставлення журналу встановлення</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>Не вдалося вивантажити дані.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1930,35 +1930,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>Налаштовуємо файл ключа LUKS.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Не визначено жодного розділу.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Помилка налаштовування зашифрованих rootfs</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>Кореневим розділом %1 є розділ LUKS, але пароль до нього не встановлено.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>Не вдалося створити файл ключа LUKS для кореневого розділу %1.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>Не вдалося налаштувати файл ключа LUKS на розділі %1.</translation> </message> @@ -2952,14 +2952,14 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> У результаті виконання команди не отримано виведених даних.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2968,52 +2968,52 @@ Output: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Виконання зовнішньої команди завершилося помилкою.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Аварійне завершення виконання команди <i>%1</i>.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Не вдалося виконати зовнішню команду.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Не вдалося виконати команду <i>%1</i>.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Внутрішня помилка під час спроби виконати команду.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Неправильні параметри виклику завдання обробки.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Не вдалося завершити виконання зовнішньої команди.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Не вдалося завершити виконання команди <i>%1</i> за %2 секунд.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Виконання зовнішньої команди завершено із помилками.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Виконання команди <i>%1</i> завершено повідомленням із кодом виходу %2.</translation> </message> diff --git a/lang/calamares_ur.ts b/lang/calamares_ur.ts index bad7f3e70f4073caed95d614fe70d65ed508289f..244d7f8a8a9794befd7d8fdbebfd0507620c1f3f 100644 --- a/lang/calamares_ur.ts +++ b/lang/calamares_ur.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation type="unfinished"/> </message> @@ -320,17 +320,17 @@ <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1920,35 +1920,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2921,65 +2921,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_uz.ts b/lang/calamares_uz.ts index 3edbeeea635cb13d456b6fe85f341c3591332528..c14ca6d1eac688720784f95f7b1dd9a9887be7e3 100644 --- a/lang/calamares_uz.ts +++ b/lang/calamares_uz.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation type="unfinished"/> </message> @@ -318,17 +318,17 @@ <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1918,35 +1918,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2910,65 +2910,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_vi.ts b/lang/calamares_vi.ts index e662622513ca6fc78f81a829986caedc6d996ca2..063c2bfd7608b1603f62204c316dddbbd6f55e9d 100644 --- a/lang/calamares_vi.ts +++ b/lang/calamares_vi.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>Xong</translation> </message> @@ -318,17 +318,17 @@ <translation>Đón&g</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>URL để gửi nhật ký cài đặt</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>Tải lên không thành công. Không có quá trình gửi lên web nào được thực hiện.</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1920,35 +1920,35 @@ Trình cài đặt sẽ thoát và tất cả các thay đổi sẽ bị mất.< <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>Định cấu hình tệp khóa LUKS.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>Không có phân vùng nào được xác định.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>Lỗi thiết lập rootfs mã hóa</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>Phân vùng gốc %1 là LUKS nhưng không có cụm mật khẩu nào được đặt.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>Không thể tạo tệp khóa LUKS cho phân vùng gốc %1.</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>Không thể định cấu hình tệp khóa LUKS trên phân vùng %1.</translation> </message> @@ -2914,14 +2914,14 @@ Trình cài đặt sẽ thoát và tất cả các thay đổi sẽ bị mất.< <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> Không có đầu ra từ lệnh.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2930,52 +2930,52 @@ Output: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>Lệnh bên ngoài bị lỗi.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>Lệnh <i>%1</i> bị lỗi.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>Lệnh ngoài không thể bắt đầu.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>Lệnh <i>%1</i> không thể bắt đầu.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>Lỗi nội bộ khi bắt đầu lệnh.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>Tham số không hợp lệ cho lệnh gọi công việc của quy trình.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>Không thể hoàn tất lệnh bên ngoài.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>Lệnh <i>%1</i> không thể hoàn thành trong %2 giây.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>Lệnh bên ngoài kết thúc với lỗi.</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>Lệnh <i>%1</i> hoàn thành với lỗi %2.</translation> </message> diff --git a/lang/calamares_zh.ts b/lang/calamares_zh.ts index 7de03283d1dd1197628ed8d80549d33c53275964..1be9e79a5017b966d12695f69b8b6d9370a17f66 100644 --- a/lang/calamares_zh.ts +++ b/lang/calamares_zh.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation type="unfinished"/> </message> @@ -318,17 +318,17 @@ <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1918,35 +1918,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2910,65 +2910,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_zh_CN.ts b/lang/calamares_zh_CN.ts index 4449b5d093d7d3ad8652d8756b68f657de237e01..338a1aa8ca21c995a84edc17ead1ab5900d41e02 100644 --- a/lang/calamares_zh_CN.ts +++ b/lang/calamares_zh_CN.ts @@ -172,7 +172,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>完成</translation> </message> @@ -319,17 +319,17 @@ <translation>&关闭</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>安装日志粘贴 URL</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>上传失败,未完成网页粘贴。</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1928,35 +1928,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>配置 LUKS key 文件。</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>未定义分区。</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>加密根文件系时配置错误</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>根分区%1为LUKS但没有设置密钥。</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>无法创建根分区%1的LUKS密钥文件。</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>无法配置根分区%1的LUKS密钥文件。</translation> </message> @@ -2922,14 +2922,14 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> 命令没有输出。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2938,52 +2938,52 @@ Output: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>外部命令已崩溃。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>命令 <i>%1</i> 已崩溃。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>无法启动外部命令。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>无法启动命令 <i>%1</i>。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>启动命令时出现内部错误。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>呼叫进程任务出现错误参数</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>外部命令未成功完成。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>命令 <i>%1</i> 未能在 %2 秒内完成。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>外部命令已完成,但出现了错误。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>命令 <i>%1</i> 以退出代码 %2 完成。</translation> </message> diff --git a/lang/calamares_zh_HK.ts b/lang/calamares_zh_HK.ts index 4ef2f473ba0e56ce68c0075be6898bb19c64b509..362e6a74a10fd4025e5181c0711e26e1637a4e36 100644 --- a/lang/calamares_zh_HK.ts +++ b/lang/calamares_zh_HK.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation type="unfinished"/> </message> @@ -318,17 +318,17 @@ <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1918,35 +1918,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation type="unfinished"/> </message> @@ -2910,65 +2910,65 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation type="unfinished"/> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation type="unfinished"/> </message> diff --git a/lang/calamares_zh_TW.ts b/lang/calamares_zh_TW.ts index ccd786aa070d728ac833df66ab42f38e8479e21f..c1493be76c77a2610bc3a240dc5e6b3bfc0a7b59 100644 --- a/lang/calamares_zh_TW.ts +++ b/lang/calamares_zh_TW.ts @@ -171,7 +171,7 @@ <context> <name>Calamares::JobThread</name> <message> - <location filename="../src/libcalamares/JobQueue.cpp" line="199"/> + <location filename="../src/libcalamares/JobQueue.cpp" line="201"/> <source>Done</source> <translation>完成</translation> </message> @@ -318,17 +318,17 @@ <translation>關閉(&C)</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="171"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="183"/> <source>Install Log Paste URL</source> <translation>安裝紀錄檔張貼 URL</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="153"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> <source>The upload was unsuccessful. No web-paste was done.</source> <translation>上傳不成功。並未完成網路張貼。</translation> </message> <message> - <location filename="../src/libcalamaresui/utils/Paste.cpp" line="165"/> + <location filename="../src/libcalamaresui/utils/Paste.cpp" line="177"/> <source>Install log posted to %1 @@ -1924,35 +1924,35 @@ The installer will quit and all changes will be lost.</source> <context> <name>LuksBootKeyFileJob</name> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="28"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="30"/> <source>Configuring LUKS key file.</source> <translation>正在設定 LUKS 金鑰檔案。</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="168"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="176"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="186"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="194"/> <source>No partitions are defined.</source> <translation>沒有已定義的分割區。</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="211"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="218"/> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="226"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="229"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="236"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="244"/> <source>Encrypted rootfs setup error</source> <translation>已加密的 rootfs 設定錯誤</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="212"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="230"/> <source>Root partition %1 is LUKS but no passphrase has been set.</source> <translation>根分割區 %1 為 LUKS 但沒有設定密碼。</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="219"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="237"/> <source>Could not create LUKS key file for root partition %1.</source> <translation>無法為根分割區 %1 建立 LUKS 金鑰檔。</translation> </message> <message> - <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="227"/> + <location filename="../src/modules/luksbootkeyfile/LuksBootKeyFileJob.cpp" line="245"/> <source>Could not configure LUKS key file on partition %1.</source> <translation>無法於分割區 %1 設定 LUKS 金鑰檔。</translation> </message> @@ -2918,14 +2918,14 @@ The installer will quit and all changes will be lost.</source> <context> <name>ProcessResult</name> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="429"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="425"/> <source> There was no output from the command.</source> <translation> 指令沒有輸出。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="426"/> <source> Output: </source> @@ -2934,52 +2934,52 @@ Output: </translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="434"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="430"/> <source>External command crashed.</source> <translation>外部指令當機。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="435"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="431"/> <source>Command <i>%1</i> crashed.</source> <translation>指令 <i>%1</i> 已當機。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="440"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="436"/> <source>External command failed to start.</source> <translation>外部指令啟動失敗。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="437"/> <source>Command <i>%1</i> failed to start.</source> <translation>指令 <i>%1</i> 啟動失敗。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="445"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="441"/> <source>Internal error when starting command.</source> <translation>當啟動指令時發生內部錯誤。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="442"/> <source>Bad parameters for process job call.</source> <translation>呼叫程序的參數無效。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="450"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="446"/> <source>External command failed to finish.</source> <translation>外部指令結束失敗。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="451"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="447"/> <source>Command <i>%1</i> failed to finish in %2 seconds.</source> <translation>指令 <i>%1</i> 在結束 %2 秒內失敗。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="458"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="454"/> <source>External command finished with errors.</source> <translation>外部指令結束時發生錯誤。</translation> </message> <message> - <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="459"/> + <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="455"/> <source>Command <i>%1</i> finished with exit code %2.</source> <translation>指令 <i>%1</i> 結束時有錯誤碼 %2。</translation> </message> diff --git a/lang/python.pot b/lang/python.pot index 335a89206b396c2253dfdd122e2f69959f18a75d..c6b17006fae46d06388f79dbe7dd3bb86966b1d7 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -26,8 +26,8 @@ msgstr "Configure GRUB." msgid "Mounting partitions." msgstr "Mounting partitions." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -38,7 +38,7 @@ msgstr "Mounting partitions." msgid "Configuration Error" msgstr "Configuration Error" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -210,7 +210,7 @@ msgstr "Display manager configuration was incomplete" msgid "Configuring mkinitcpio." msgstr "Configuring mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/ar/LC_MESSAGES/python.po b/lang/python/ar/LC_MESSAGES/python.po index 0696c896bbb743c1476e5a30687e1ecf2e963b9a..24bf52316c170704ca20e7db2bd2193e1e8ad5ba 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -30,8 +30,8 @@ msgstr "" msgid "Mounting partitions." msgstr "جاري تركيب الأقسام" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -42,7 +42,7 @@ msgstr "جاري تركيب الأقسام" msgid "Configuration Error" msgstr "خطأ في الضبط" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -207,7 +207,7 @@ msgstr "إعداد مدير العرض لم يكتمل" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/as/LC_MESSAGES/python.po b/lang/python/as/LC_MESSAGES/python.po index d7886ee5d411e88252bed2524e18dc217ee0f160..15832959ea35c6b761ddc2c2b974c42ce77eb8ef 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Deep Jyoti Choudhury <deep.choudhury@libresoft.in>, 2020\n" "Language-Team: Assamese (https://www.transifex.com/calamares/teams/20061/as/)\n" @@ -29,8 +29,8 @@ msgstr "GRUB কনফিগাৰ কৰক।" msgid "Mounting partitions." msgstr "বিভাজন মাউন্ট্ কৰা।" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "বিভাজন মাউন্ট্ কৰা।" msgid "Configuration Error" msgstr "কনফিগাৰেচন ত্ৰুটি" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -210,7 +210,7 @@ msgstr "ডিস্প্লে প্ৰবন্ধক কন্ফিগা msgid "Configuring mkinitcpio." msgstr "mkinitcpio কনফিগাৰ কৰি আছে।" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/ast/LC_MESSAGES/python.po b/lang/python/ast/LC_MESSAGES/python.po index 4372045e39dd797935825253f5c9502817488dfb..4e2c43c10674bcc7f099551cfc9a3414e8f409e7 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: enolp <enolp@softastur.org>, 2020\n" "Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n" @@ -29,8 +29,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -209,7 +209,7 @@ msgstr "La configuración del xestor de pantalles nun se completó" msgid "Configuring mkinitcpio." msgstr "Configurando mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/az/LC_MESSAGES/python.po b/lang/python/az/LC_MESSAGES/python.po index 8ac8172d8fd0cc8a703b13c6b795664664aa9a9e..4e66da4b75ad7d276892e5619d23388fd19a7cd7 100644 --- a/lang/python/az/LC_MESSAGES/python.po +++ b/lang/python/az/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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Xəyyam Qocayev <xxmn77@gmail.com>, 2021\n" "Language-Team: Azerbaijani (https://www.transifex.com/calamares/teams/20061/az/)\n" @@ -29,8 +29,8 @@ msgstr "GRUB tənzimləmələri" msgid "Mounting partitions." msgstr "Disk bölmələri qoşulur." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "Disk bölmələri qoşulur." msgid "Configuration Error" msgstr "Tənzimləmə xətası" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -217,7 +217,7 @@ msgstr "Ekran meneceri tənzimləmələri başa çatmadı" msgid "Configuring mkinitcpio." msgstr "mkinitcpio tənzimlənir." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/az_AZ/LC_MESSAGES/python.po b/lang/python/az_AZ/LC_MESSAGES/python.po index 0df66e71111f8b221a4714bd5548043cf9b5899e..9eb80694498f21644e9847248b01b1890db4f6c3 100644 --- a/lang/python/az_AZ/LC_MESSAGES/python.po +++ b/lang/python/az_AZ/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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Xəyyam Qocayev <xxmn77@gmail.com>, 2021\n" "Language-Team: Azerbaijani (Azerbaijan) (https://www.transifex.com/calamares/teams/20061/az_AZ/)\n" @@ -29,8 +29,8 @@ msgstr "GRUB tənzimləmələri" msgid "Mounting partitions." msgstr "Disk bölmələri qoşulur." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "Disk bölmələri qoşulur." msgid "Configuration Error" msgstr "Tənzimləmə xətası" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -217,7 +217,7 @@ msgstr "Ekran meneceri tənzimləmələri başa çatmadı" msgid "Configuring mkinitcpio." msgstr "mkinitcpio tənzimlənir." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/be/LC_MESSAGES/python.po b/lang/python/be/LC_MESSAGES/python.po index ac0742a68491b7c8b2b9a19ad33e2a9204a03346..e0780e9a05c8bb39322408a80a4c8b687fbb641c 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Źmicier Turok <nashtlumach@gmail.com>, 2020\n" "Language-Team: Belarusian (https://www.transifex.com/calamares/teams/20061/be/)\n" @@ -29,8 +29,8 @@ msgstr "Наладзіць GRUB." msgid "Mounting partitions." msgstr "Мантаванне раздзелаў." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "Мантаванне раздзелаў." msgid "Configuration Error" msgstr "Памылка канфігурацыі" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -212,7 +212,7 @@ msgstr "Наладка дысплейнага кіраўніка не завер msgid "Configuring mkinitcpio." msgstr "Наладка mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/bg/LC_MESSAGES/python.po b/lang/python/bg/LC_MESSAGES/python.po index ba6ac533a3329b4ae205dace8c4fffbf5464afb1..592a69d026a0e6566e1dc111b440d4245081d9ce 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Georgi Georgiev (Жоро) <g.georgiev.shumen@gmail.com>, 2020\n" "Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n" @@ -29,8 +29,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -206,7 +206,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/bn/LC_MESSAGES/python.po b/lang/python/bn/LC_MESSAGES/python.po index 90f0c32d93e63ae2fbb2f202ca0559dfdcbbae7e..bb34c2bb2338e595a21a7a79925dc5decab4901d 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: 508a8b0ef95404aa3dc5178f0ccada5e_017b8a4 <d0ef5d977ab7abf012ef53891f8ca2b5_900530>, 2020\n" "Language-Team: Bengali (https://www.transifex.com/calamares/teams/20061/bn/)\n" @@ -29,8 +29,8 @@ msgstr "কনফিগার করুন জিআরইউবি।" msgid "Mounting partitions." msgstr "মাউন্ট করছে পার্টিশনগুলো।" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "মাউন্ট করছে পার্টিশনগুলো।" msgid "Configuration Error" msgstr "কনফিগারেশন ত্রুটি" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -207,7 +207,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/ca/LC_MESSAGES/python.po b/lang/python/ca/LC_MESSAGES/python.po index 3fc48b291ce9c4574780d52d8b3137c534b05711..24cf02961e51ff3ee058eea31747cff9aee5d97d 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Davidmp <medipas@gmail.com>, 2021\n" "Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n" @@ -29,8 +29,8 @@ msgstr "Configura el GRUB." msgid "Mounting partitions." msgstr "Es munten les particions." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "Es munten les particions." msgid "Configuration Error" msgstr "Error de configuració" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -215,7 +215,7 @@ msgstr "La configuració del gestor de pantalla no era completa." msgid "Configuring mkinitcpio." msgstr "Es configura mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/ca@valencia/LC_MESSAGES/python.po b/lang/python/ca@valencia/LC_MESSAGES/python.po index 1b4ff596b6c56f7711658b81751ec4fe3b773304..f93bced23fd18291859168270d417498e72d56cc 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Raul <raurodse@gmail.com>, 2021\n" "Language-Team: Catalan (Valencian) (https://www.transifex.com/calamares/teams/20061/ca@valencia/)\n" @@ -29,8 +29,8 @@ msgstr "Configura el GRUB" msgid "Mounting partitions." msgstr "S'estan muntant les particions." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "S'estan muntant les particions." msgid "Configuration Error" msgstr "S'ha produït un error en la configuració." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -217,7 +217,7 @@ msgstr "La configuració del gestor de pantalla no era completa." msgid "Configuring mkinitcpio." msgstr "S'està configurant mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/cs_CZ/LC_MESSAGES/python.po b/lang/python/cs_CZ/LC_MESSAGES/python.po index 993ed0b3f39f43d26892f765fe0f55a4552927d7..a299596f6d7c2a767c67187ed23e9ed34be8d44d 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2021\n" "Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n" @@ -31,8 +31,8 @@ msgstr "Nastavování zavaděče GRUB." msgid "Mounting partitions." msgstr "Připojování oddílů." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -43,7 +43,7 @@ msgstr "Připojování oddílů." msgid "Configuration Error" msgstr "Chyba nastavení" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -217,7 +217,7 @@ msgstr "Nastavení správce displeje nebylo úplné" msgid "Configuring mkinitcpio." msgstr "Nastavování mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/da/LC_MESSAGES/python.po b/lang/python/da/LC_MESSAGES/python.po index f267baf4085b4d6af22bf5c09aaffcfda817a9e0..08fc3959354ca0f5a2a4deb770e70a986c31404c 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -30,8 +30,8 @@ msgstr "Konfigurer GRUB." msgid "Mounting partitions." msgstr "Monterer partitioner." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -42,7 +42,7 @@ msgstr "Monterer partitioner." msgid "Configuration Error" msgstr "Fejl ved konfiguration" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -215,7 +215,7 @@ msgstr "Displayhåndtering-konfiguration er ikke komplet" msgid "Configuring mkinitcpio." msgstr "Konfigurerer mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/de/LC_MESSAGES/python.po b/lang/python/de/LC_MESSAGES/python.po index 11f6d6075b57b5c6ee9c4a82dd59bb25043e61f3..703718bc711b57c1b67945b21661bae377070a7e 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Gustav Gyges, 2021\n" "Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n" @@ -31,8 +31,8 @@ msgstr "GRUB konfigurieren." msgid "Mounting partitions." msgstr "Hänge Partitionen ein." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -43,7 +43,7 @@ msgstr "Hänge Partitionen ein." msgid "Configuration Error" msgstr "Konfigurationsfehler" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -219,7 +219,7 @@ msgstr "Die Konfiguration des Displaymanager war unvollständig." msgid "Configuring mkinitcpio." msgstr "Konfiguriere mkinitcpio. " -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/el/LC_MESSAGES/python.po b/lang/python/el/LC_MESSAGES/python.po index 9f51ecda64bd3384251c92d7ba1636b147b17243..50704931399ba1812b3443f62f6c116c0b415639 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>, 2017\n" "Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n" @@ -29,8 +29,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -206,7 +206,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/en_GB/LC_MESSAGES/python.po b/lang/python/en_GB/LC_MESSAGES/python.po index 2ab98df1b55dfdd2c821b59cd450f96b40e8d757..3d7632573b43116a855fa1738732835ccbca2463 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Jason Collins <JasonPCollins@protonmail.com>, 2018\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/calamares/teams/20061/en_GB/)\n" @@ -29,8 +29,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -206,7 +206,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/eo/LC_MESSAGES/python.po b/lang/python/eo/LC_MESSAGES/python.po index 804772892c43d8053a1be3b40610d5955f443a98..32c73160fbc0fef7764b2de2fefa4ad6dcb127e0 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Kurt Ankh Phoenix <kurtphoenix@tuta.io>, 2018\n" "Language-Team: Esperanto (https://www.transifex.com/calamares/teams/20061/eo/)\n" @@ -29,8 +29,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -206,7 +206,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/es/LC_MESSAGES/python.po b/lang/python/es/LC_MESSAGES/python.po index cb05fd2a4fa8f6b7af7dea772a4a96b8810b1671..4ef7be0c57dcdfbe4dee47448881e2dc9b84a8bf 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Pier Jose Gotta Perez <piegope@protonmail.com>, 2020\n" "Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n" @@ -34,8 +34,8 @@ msgstr "Configure GRUB - menú de arranque multisistema -" msgid "Mounting partitions." msgstr "Montando particiones" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -46,7 +46,7 @@ msgstr "Montando particiones" msgid "Configuration Error" msgstr "Error de configuración" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -224,7 +224,7 @@ msgstr "La configuración del gestor de pantalla estaba incompleta" msgid "Configuring mkinitcpio." msgstr "Configurando mkinitcpio - sistema de arranque básico -." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/es_MX/LC_MESSAGES/python.po b/lang/python/es_MX/LC_MESSAGES/python.po index 7b0a08a1d0f5e30027e87099e4f014181174f4f6..0655f2a8a272b64a47de609d7bf401ac3fe474f1 100644 --- a/lang/python/es_MX/LC_MESSAGES/python.po +++ b/lang/python/es_MX/LC_MESSAGES/python.po @@ -5,7 +5,7 @@ # # Translators: # guillermo pacheco <guillopacheco@gmail.com>, 2018 -# Logan 8192 <logan8192@protonmail.com>, 2018 +# a1a9b52a3f40dff112eca965c254c602_089360e <d1597d94e208cfb976efe0f2ce18d2e5_734602>, 2018 # Erland Huaman <blackadress.01@gmail.com>, 2021 # #, fuzzy @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Erland Huaman <blackadress.01@gmail.com>, 2021\n" "Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n" @@ -31,8 +31,8 @@ msgstr "Configura GRUB." msgid "Mounting partitions." msgstr "Montando particiones." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -43,7 +43,7 @@ msgstr "Montando particiones." msgid "Configuration Error" msgstr "Error de configuración" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -220,7 +220,7 @@ msgstr "La configuración del gestor de pantalla estaba incompleta" msgid "Configuring mkinitcpio." msgstr "Configurando mkinitcpio" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/es_PE/LC_MESSAGES/python.po b/lang/python/es_PE/LC_MESSAGES/python.po index 2dffb08d6a37198a59b368f0868404d4c6bfce61..116f8cbfef8ec3fc9069a2655eae213297a0990e 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -25,8 +25,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -37,7 +37,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -202,7 +202,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/es_PR/LC_MESSAGES/python.po b/lang/python/es_PR/LC_MESSAGES/python.po index 1a2e6f6ed021aa5ebea974c69e4941aeabf2ce6b..a3558eaeee968b543e5d73baf229583a6971ad80 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -25,8 +25,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -37,7 +37,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -202,7 +202,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/et/LC_MESSAGES/python.po b/lang/python/et/LC_MESSAGES/python.po index 891f3cf81feb0e38c5d2ae34c5f6f26038c19c1b..b044009726de74fd80e82171d650b716f3e05813 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -29,8 +29,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -206,7 +206,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/eu/LC_MESSAGES/python.po b/lang/python/eu/LC_MESSAGES/python.po index 388b04a2c18d5c034438d795b938b608d2d91d1c..9da15601208e78c41b79cc17193ab5648cfff0f7 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -29,8 +29,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -207,7 +207,7 @@ msgstr "Pantaila kudeatzaile konfigurazioa osotu gabe" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/fa/LC_MESSAGES/python.po b/lang/python/fa/LC_MESSAGES/python.po index 4d919b8b8a32e514cb5ce5a943107f171b76d20a..3dc17bd5e0af9b26632b4b753d2c24941e863d99 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: alireza jamshidi <alirezajam98@gmail.com>, 2020\n" "Language-Team: Persian (https://www.transifex.com/calamares/teams/20061/fa/)\n" @@ -30,8 +30,8 @@ msgstr "در حال پیکربندی گراب." msgid "Mounting partitions." msgstr "در حال سوار کردن افرازها." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -42,7 +42,7 @@ msgstr "در حال سوار کردن افرازها." msgid "Configuration Error" msgstr "خطای پیکربندی" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -211,7 +211,7 @@ msgstr "پیکربندی مدیر نمایش کامل نبود" msgid "Configuring mkinitcpio." msgstr "پیکربندی mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/fi_FI/LC_MESSAGES/python.po b/lang/python/fi_FI/LC_MESSAGES/python.po index 98b130e9cf6666b0dfc565d8cce7e41656a2875b..53bc0109814817fe544a9cde0bdb4fc7e65cb417 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Kimmo Kujansuu <mrkujansuu@gmail.com>, 2021\n" "Language-Team: Finnish (Finland) (https://www.transifex.com/calamares/teams/20061/fi_FI/)\n" @@ -29,8 +29,8 @@ msgstr "Määritä GRUB." msgid "Mounting partitions." msgstr "Yhdistä osiot." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "Yhdistä osiot." msgid "Configuration Error" msgstr "Määritysvirhe" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -212,7 +212,7 @@ msgstr "Näytönhallinnan kokoonpano oli puutteellinen" msgid "Configuring mkinitcpio." msgstr "Määritetään mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/fr/LC_MESSAGES/python.po b/lang/python/fr/LC_MESSAGES/python.po index 63a28659e0c0a512be255027666f9e10f5dd16b7..0463a3fa2e741378f222c9b5b8eadfda638d4d55 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: roxfr <roxfr@outlook.fr>, 2021\n" "Language-Team: French (https://www.transifex.com/calamares/teams/20061/fr/)\n" @@ -38,8 +38,8 @@ msgstr "Configuration du GRUB." msgid "Mounting partitions." msgstr "Montage des partitions." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -50,7 +50,7 @@ msgstr "Montage des partitions." msgid "Configuration Error" msgstr "Erreur de configuration" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -228,7 +228,7 @@ msgstr "La configuration du gestionnaire d'affichage était incomplète" msgid "Configuring mkinitcpio." msgstr "Configuration de mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/fr_CH/LC_MESSAGES/python.po b/lang/python/fr_CH/LC_MESSAGES/python.po index b8660efc2a269cd7fa704a6c8202083387d43cce..10e1b7ff19489929d32b68100a17d04ffcdc75fd 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -25,8 +25,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -37,7 +37,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -202,7 +202,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/fur/LC_MESSAGES/python.po b/lang/python/fur/LC_MESSAGES/python.po index 7b2b423f84bd5bc93789b834fbc4535e17842254..bc6081bc045bfea54d40152bc56db4e96c93b7ba 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Fabio Tomat <f.t.public@gmail.com>, 2020\n" "Language-Team: Friulian (https://www.transifex.com/calamares/teams/20061/fur/)\n" @@ -29,8 +29,8 @@ msgstr "Configure GRUB." msgid "Mounting partitions." msgstr "Montaç des partizions." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "Montaç des partizions." msgid "Configuration Error" msgstr "Erôr di configurazion" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -216,7 +216,7 @@ msgstr "La configurazion dal gjestôr dai visôrs no jere complete" msgid "Configuring mkinitcpio." msgstr "Daûr a configurâ di mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/gl/LC_MESSAGES/python.po b/lang/python/gl/LC_MESSAGES/python.po index 009f4d259dc9652eecabcf1b0f89b028b22f08ef..d00e842fa1dca09e064899f5a663fe66c0314b9f 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -29,8 +29,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -207,7 +207,7 @@ msgstr "A configuración do xestor de pantalla foi incompleta" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/gu/LC_MESSAGES/python.po b/lang/python/gu/LC_MESSAGES/python.po index e71e257dcea2bd1c48f942de8e6112a2a947cf6d..cb78e3bff01942aa07343dddf3081ff79403fc65 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -25,8 +25,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -37,7 +37,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -202,7 +202,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/he/LC_MESSAGES/python.po b/lang/python/he/LC_MESSAGES/python.po index 75427fdeae0ddcd4fe871dfe05bb963e3151678c..2d64b17b9f9755bcbe084766400f7c7cf66b748a 100644 --- a/lang/python/he/LC_MESSAGES/python.po +++ b/lang/python/he/LC_MESSAGES/python.po @@ -5,7 +5,7 @@ # # Translators: # Eli Shleifer <eligator@gmail.com>, 2017 -# Omer I.S. <omeritzicschwartz@gmail.com>, 2020 +# Omeritzics Games <omeritzicschwartz@gmail.com>, 2020 # Yaron Shahrabani <sh.yaron@gmail.com>, 2021 # #, fuzzy @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>, 2021\n" "Language-Team: Hebrew (https://www.transifex.com/calamares/teams/20061/he/)\n" @@ -31,8 +31,8 @@ msgstr "הגדרת GRUB." msgid "Mounting partitions." msgstr "מחיצות מעוגנות." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -43,7 +43,7 @@ msgstr "מחיצות מעוגנות." msgid "Configuration Error" msgstr "שגיאת הגדרות" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -213,7 +213,7 @@ msgstr "תצורת מנהל התצוגה אינה שלמה" msgid "Configuring mkinitcpio." msgstr "mkinitcpio מותקן." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/hi/LC_MESSAGES/python.po b/lang/python/hi/LC_MESSAGES/python.po index 3fd2e9ade6e95f9387572571407939b9c76829ca..3d2f0dd75c645a3cf97b649a923c98806e351f71 100644 --- a/lang/python/hi/LC_MESSAGES/python.po +++ b/lang/python/hi/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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Panwar108 <caspian7pena@gmail.com>, 2021\n" "Language-Team: Hindi (https://www.transifex.com/calamares/teams/20061/hi/)\n" @@ -29,8 +29,8 @@ msgstr "GRUB विन्यस्त करना।" msgid "Mounting partitions." msgstr "विभाजन माउंट करना।" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "विभाजन माउंट करना।" msgid "Configuration Error" msgstr "विन्यास त्रुटि" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -211,7 +211,7 @@ msgstr "डिस्प्ले प्रबंधक विन्यास अ msgid "Configuring mkinitcpio." msgstr "mkinitcpio को विन्यस्त करना।" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/hr/LC_MESSAGES/python.po b/lang/python/hr/LC_MESSAGES/python.po index b28d93dd9f21e7945bd0c041685ef51df8b0aa1d..e1102a8bcc4c655251e0f32842b65c8f3ba7bbbc 100644 --- a/lang/python/hr/LC_MESSAGES/python.po +++ b/lang/python/hr/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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Lovro Kudelić <lovro.kudelic@outlook.com>, 2021\n" "Language-Team: Croatian (https://www.transifex.com/calamares/teams/20061/hr/)\n" @@ -29,8 +29,8 @@ msgstr "Konfigurirajte GRUB." msgid "Mounting partitions." msgstr "Montiranje particija." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "Montiranje particija." msgid "Configuration Error" msgstr "Greška konfiguracije" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -214,7 +214,7 @@ msgstr "Konfiguracija upravitelja zaslona nije bila potpuna" msgid "Configuring mkinitcpio." msgstr "Konfiguriranje mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/hu/LC_MESSAGES/python.po b/lang/python/hu/LC_MESSAGES/python.po index 6a1cf2e7fb95adb328ceeaaec711a595af36b68c..a9c62455e4d9e617ad8e40d5c2f4584946decc42 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Lajos Pasztor <mrlajos@gmail.com>, 2019\n" "Language-Team: Hungarian (https://www.transifex.com/calamares/teams/20061/hu/)\n" @@ -32,8 +32,8 @@ msgstr "GRUB konfigurálása." msgid "Mounting partitions." msgstr "Partíciók csatolása." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -44,7 +44,7 @@ msgstr "Partíciók csatolása." msgid "Configuration Error" msgstr "Konfigurációs hiba" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -216,7 +216,7 @@ msgstr "A kijelzőkezelő konfigurációja hiányos volt" msgid "Configuring mkinitcpio." msgstr "mkinitcpio konfigurálása." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/id/LC_MESSAGES/python.po b/lang/python/id/LC_MESSAGES/python.po index adb7016334535f01533ce0e54b30b0285aaa32a5..bc219cfc2f3c0d9fb4af578aee8a2d943f39f5d5 100644 --- a/lang/python/id/LC_MESSAGES/python.po +++ b/lang/python/id/LC_MESSAGES/python.po @@ -5,7 +5,7 @@ # # Translators: # Choiril Abdul, 2018 -# harsxv <harsxv@gmail.com>, 2018 +# Harry Suryapambagya <harsxv@gmail.com>, 2018 # Wantoyèk <wantoyek@gmail.com>, 2018 # Drajat Hasan <drajathasan20@gmail.com>, 2021 # @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Drajat Hasan <drajathasan20@gmail.com>, 2021\n" "Language-Team: Indonesian (https://www.transifex.com/calamares/teams/20061/id/)\n" @@ -32,8 +32,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -44,7 +44,7 @@ msgstr "" msgid "Configuration Error" msgstr "Kesalahan Konfigurasi" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -209,7 +209,7 @@ msgstr "Konfigurasi display manager belum rampung" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/id_ID/LC_MESSAGES/python.po b/lang/python/id_ID/LC_MESSAGES/python.po index 834e99cde2e773c714b4a0210e7a65d276c2500a..9729b543e8073bf8eed99f9302b6b404502e4d47 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -25,8 +25,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -37,7 +37,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -202,7 +202,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/ie/LC_MESSAGES/python.po b/lang/python/ie/LC_MESSAGES/python.po index 94e10c1f29fc5b3580c53a7caf7ad08faa978ecb..c1fa40fa3589f4f7a915bee7e8264fd7d5faad66 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -29,8 +29,8 @@ msgstr "Configurante GRUB." msgid "Mounting partitions." msgstr "Montente partitiones." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "Montente partitiones." msgid "Configuration Error" msgstr "Errore de configuration" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -208,7 +208,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "Configurante mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/is/LC_MESSAGES/python.po b/lang/python/is/LC_MESSAGES/python.po index 786eb811bb9478aec0e1ab2f3ed8aabeb9eb6ac8..f33450a5711be922b9e394a1b7be764cf336e32a 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -29,8 +29,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -206,7 +206,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/it_IT/LC_MESSAGES/python.po b/lang/python/it_IT/LC_MESSAGES/python.po index 9990499fbbad88a8be1680d170dc3aa49648185c..d4e6c3380b5963713586bdcdf47f789a581e4865 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Giuseppe Pignataro <rogepix@gmail.com>, 2021\n" "Language-Team: Italian (Italy) (https://www.transifex.com/calamares/teams/20061/it_IT/)\n" @@ -32,8 +32,8 @@ msgstr "Configura GRUB." msgid "Mounting partitions." msgstr "Montaggio partizioni." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -44,7 +44,7 @@ msgstr "Montaggio partizioni." msgid "Configuration Error" msgstr "Errore di Configurazione" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -221,7 +221,7 @@ msgstr "La configurazione del display manager è incompleta" msgid "Configuring mkinitcpio." msgstr "Configurazione di mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/ja/LC_MESSAGES/python.po b/lang/python/ja/LC_MESSAGES/python.po index 0112c1e6a5653d6ef6202970e72f12aba05f563a..a744d664da31baccd781f0b8cc69eb4672ec4be4 100644 --- a/lang/python/ja/LC_MESSAGES/python.po +++ b/lang/python/ja/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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: UTUMI Hirosi <utuhiro78@yahoo.co.jp>, 2021\n" "Language-Team: Japanese (https://www.transifex.com/calamares/teams/20061/ja/)\n" @@ -31,8 +31,8 @@ msgstr "GRUBを設定にします。" msgid "Mounting partitions." msgstr "パーティションのマウント。" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -43,7 +43,7 @@ msgstr "パーティションのマウント。" msgid "Configuration Error" msgstr "コンフィグレーションエラー" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -211,7 +211,7 @@ msgstr "ディスプレイマネージャの設定が不完全です" msgid "Configuring mkinitcpio." msgstr "mkinitcpioを設定しています。" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/kk/LC_MESSAGES/python.po b/lang/python/kk/LC_MESSAGES/python.po index ca14c90d8e8e012465532bc8d530e6723e9ce836..85fac58c550792f2146c68c553b01a8dfe5bea92 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -25,8 +25,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -37,7 +37,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -202,7 +202,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/kn/LC_MESSAGES/python.po b/lang/python/kn/LC_MESSAGES/python.po index 702f8a7a7f100ac38be3165ddbd68601586996c0..07ee65884ec247c0811b5414b21309d6fccd74ee 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -25,8 +25,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -37,7 +37,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -202,7 +202,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/ko/LC_MESSAGES/python.po b/lang/python/ko/LC_MESSAGES/python.po index acca0391d210b4db767243d580eeae9a709fc837..dd418e56a7cde85d6939a40510e20e736cd8fd1b 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 <potatogim@potatogim.net>, 2018 -# JungHee Lee <daemul72@gmail.com>, 2021 +# 이정희 <daemul72@gmail.com>, 2021 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" -"Last-Translator: JungHee Lee <daemul72@gmail.com>, 2021\n" +"Last-Translator: 이정희 <daemul72@gmail.com>, 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" @@ -30,8 +30,8 @@ msgstr "GRUB 구성" msgid "Mounting partitions." msgstr "파티션 마운트 중." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -42,7 +42,7 @@ msgstr "파티션 마운트 중." msgid "Configuration Error" msgstr "구성 오류" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -211,7 +211,7 @@ msgstr "디스플레이 관리자 구성이 완료되지 않았습니다." msgid "Configuring mkinitcpio." msgstr "mkinitcpio 구성 중." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/ko_KR/LC_MESSAGES/python.po b/lang/python/ko_KR/LC_MESSAGES/python.po index 12c662f53b4996b0e45ff5d566cbeac1aac1563c..d2f6f4d9b652dc3c5950f6eee26a0111a6300df5 100644 --- a/lang/python/ko_KR/LC_MESSAGES/python.po +++ b/lang/python/ko_KR/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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -25,8 +25,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -37,7 +37,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -202,7 +202,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/lo/LC_MESSAGES/python.po b/lang/python/lo/LC_MESSAGES/python.po index af73c3ed55b4df10fa4c3c434e891fb656a9a954..d8c4a3a6d1bcc51b7d87e79c16d4c061612969b1 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -25,8 +25,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -37,7 +37,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -202,7 +202,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/lt/LC_MESSAGES/python.po b/lang/python/lt/LC_MESSAGES/python.po index 1c1f54ba89f87d77007b77b048ed70af55f04250..b2e0559022d938f8681d96e9e1ba65132070ce3e 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -30,8 +30,8 @@ msgstr "Konfigūruoti GRUB." msgid "Mounting partitions." msgstr "Prijungiami skaidiniai." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -42,7 +42,7 @@ msgstr "Prijungiami skaidiniai." msgid "Configuration Error" msgstr "Konfigūracijos klaida" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -215,7 +215,7 @@ msgstr "Ekranų tvarkytuvės konfigūracija yra nepilna" msgid "Configuring mkinitcpio." msgstr "Konfigūruojama mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/lv/LC_MESSAGES/python.po b/lang/python/lv/LC_MESSAGES/python.po index 45d84a3a38303d40188403e9e3fd3b5910a516b3..8e9813195425db48bcad751c99884155682f7f64 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -25,8 +25,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -37,7 +37,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -202,7 +202,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/mk/LC_MESSAGES/python.po b/lang/python/mk/LC_MESSAGES/python.po index 12d936266abdb65536ec4bc7965dd4a9b33bc8d2..e3f7bceb9b3ec4a9cb1dabea9715bdd338ae402c 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Martin Ristovski <martinristovski@protonmail.com>, 2018\n" "Language-Team: Macedonian (https://www.transifex.com/calamares/teams/20061/mk/)\n" @@ -29,8 +29,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -206,7 +206,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/ml/LC_MESSAGES/python.po b/lang/python/ml/LC_MESSAGES/python.po index 1399955460213195e51bd98a5bcbbc0a82e02d7a..d37b3ef32aa3e5c3b02c5d99139216588121e3be 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Balasankar C <balasankarc@autistici.org>, 2019\n" "Language-Team: Malayalam (https://www.transifex.com/calamares/teams/20061/ml/)\n" @@ -30,8 +30,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -42,7 +42,7 @@ msgstr "" msgid "Configuration Error" msgstr "ക്രമീകരണത്തിൽ പിഴവ്" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -207,7 +207,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/mr/LC_MESSAGES/python.po b/lang/python/mr/LC_MESSAGES/python.po index c0263c764d9a441592c27840a632831ef5a6acc1..f725ad2f3dff252cb4f93059262e5439477a89d2 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -25,8 +25,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -37,7 +37,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -202,7 +202,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/nb/LC_MESSAGES/python.po b/lang/python/nb/LC_MESSAGES/python.po index 2211af617495363a9c795b2c64e01ba65ded1f09..2d8599231f0d03e08666feeb5def51c917ffc3f1 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -29,8 +29,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -206,7 +206,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/ne/LC_MESSAGES/python.po b/lang/python/ne/LC_MESSAGES/python.po index 2338ccf6c663459bf29b7cd7fff5532db921e26d..e7a906d1e22c6c59a22add8df598eec2dad03e86 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -25,8 +25,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -37,7 +37,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -202,7 +202,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/ne_NP/LC_MESSAGES/python.po b/lang/python/ne_NP/LC_MESSAGES/python.po index 60b90bdf3ba1ef98273d64d274bce300ae88cde6..51483e5aeff8e5e723f9c1977750f5c182a1bc1a 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -25,8 +25,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -37,7 +37,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -202,7 +202,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/nl/LC_MESSAGES/python.po b/lang/python/nl/LC_MESSAGES/python.po index 4976cb14db0d4735c642989e136df1cbb6ef83c2..a10e60fcdd6a0b159def541372f7cb0bc4d0969b 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Adriaan de Groot <groot@kde.org>, 2020\n" "Language-Team: Dutch (https://www.transifex.com/calamares/teams/20061/nl/)\n" @@ -30,8 +30,8 @@ msgstr "GRUB instellen." msgid "Mounting partitions." msgstr "Partities mounten." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -42,7 +42,7 @@ msgstr "Partities mounten." msgid "Configuration Error" msgstr "Configuratiefout" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -220,7 +220,7 @@ msgstr "Display manager configuratie was incompleet" msgid "Configuring mkinitcpio." msgstr "Instellen van mkinitcpio" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/pl/LC_MESSAGES/python.po b/lang/python/pl/LC_MESSAGES/python.po index ccc246e55177071fbd786a8df9cb12a864f3984c..4232cd2b493158efebb17d61a616eb0f2913cb59 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Jacob B. <brickminerplyt@gmail.com>, 2021\n" "Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n" @@ -32,8 +32,8 @@ msgstr "Konfiguracja GRUB." msgid "Mounting partitions." msgstr "Montowanie partycji." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -44,7 +44,7 @@ msgstr "Montowanie partycji." msgid "Configuration Error" msgstr "Błąd konfiguracji" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -222,7 +222,7 @@ msgstr "Konfiguracja menedżera wyświetlania była niekompletna" msgid "Configuring mkinitcpio." msgstr "Konfigurowanie mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/pt_BR/LC_MESSAGES/python.po b/lang/python/pt_BR/LC_MESSAGES/python.po index 7b7ef5941eea107400e446223d522b2b2852cd87..d711c6e8a40a2e62f01049af635fb0b4bce16038 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Guilherme Marçal Silva, 2021\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n" @@ -30,8 +30,8 @@ msgstr "Configurar GRUB." msgid "Mounting partitions." msgstr "Montando partições." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -42,7 +42,7 @@ msgstr "Montando partições." msgid "Configuration Error" msgstr "Erro de Configuração." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -216,7 +216,7 @@ msgstr "A configuração do gerenciador de exibição está incompleta" msgid "Configuring mkinitcpio." msgstr "Configurando mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/pt_PT/LC_MESSAGES/python.po b/lang/python/pt_PT/LC_MESSAGES/python.po index d0124ad068cd95058635298dbcfbe356e7eaa445..afa94f31e1a8c762668669f55a2fa1f818f589d4 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>, 2021\n" "Language-Team: Portuguese (Portugal) (https://www.transifex.com/calamares/teams/20061/pt_PT/)\n" @@ -31,8 +31,8 @@ msgstr "Configurar o GRUB." msgid "Mounting partitions." msgstr "A montar partições." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -43,7 +43,7 @@ msgstr "A montar partições." msgid "Configuration Error" msgstr "Erro de configuração" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -219,7 +219,7 @@ msgstr "A configuração do gestor de exibição estava incompleta" msgid "Configuring mkinitcpio." msgstr "A configurar o mkintcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/ro/LC_MESSAGES/python.po b/lang/python/ro/LC_MESSAGES/python.po index 71925e8518e52cddf0c3f69a102ced9388fc72d7..f28a466a043f125273130ab3a89b26b60d6ff2d3 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Sebastian Brici <bricisebastian@gmail.com>, 2018\n" "Language-Team: Romanian (https://www.transifex.com/calamares/teams/20061/ro/)\n" @@ -30,8 +30,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -42,7 +42,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -207,7 +207,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/ru/LC_MESSAGES/python.po b/lang/python/ru/LC_MESSAGES/python.po index ff9d25d4622d8f14cd8107bac9b427eaa25b9921..a5e624a74e976e062d36d9387d188aa9d21f6730 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -30,8 +30,8 @@ msgstr "Настройте GRUB." msgid "Mounting partitions." msgstr "Монтирование разделов." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -42,7 +42,7 @@ msgstr "Монтирование разделов." msgid "Configuration Error" msgstr "Ошибка конфигурации" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -208,7 +208,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/ru_RU/LC_MESSAGES/python.po b/lang/python/ru_RU/LC_MESSAGES/python.po index f7e725f595ef426c5baabb00dc8292c7984481fd..b55cdf62a0e59719c007bde6245e240938e442d7 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -25,8 +25,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -37,7 +37,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -202,7 +202,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/si/LC_MESSAGES/python.po b/lang/python/si/LC_MESSAGES/python.po index 4e7ead539dc4fecf9c39eb570c65675c63425e72..7f9a7a26bd3e0b341ddb5b7a1f996e343ab4c2a2 100644 --- a/lang/python/si/LC_MESSAGES/python.po +++ b/lang/python/si/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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Hela Basa, 2021\n" "Language-Team: Sinhala (https://www.transifex.com/calamares/teams/20061/si/)\n" @@ -29,8 +29,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -206,7 +206,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/sk/LC_MESSAGES/python.po b/lang/python/sk/LC_MESSAGES/python.po index 8eb67ebc627b70051fb5c3575aef199bff735eb1..a5e6a729b28fda2ad95da6aed649376c31b9921b 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Dušan Kazik <prescott66@gmail.com>, 2020\n" "Language-Team: Slovak (https://www.transifex.com/calamares/teams/20061/sk/)\n" @@ -29,8 +29,8 @@ msgstr "Konfigurácia zavádzača GRUB." msgid "Mounting partitions." msgstr "Pripájanie oddielov." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "Pripájanie oddielov." msgid "Configuration Error" msgstr "Chyba konfigurácie" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -210,7 +210,7 @@ msgstr "Konfigurácia správcu zobrazenia nebola úplná" msgid "Configuring mkinitcpio." msgstr "Konfigurácia mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/sl/LC_MESSAGES/python.po b/lang/python/sl/LC_MESSAGES/python.po index 46cb83357c1e998602a0e6907314b540d79060d6..f9c78ddc4d9ad13a38999e9994656539dca3039f 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -25,8 +25,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -37,7 +37,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -202,7 +202,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/sq/LC_MESSAGES/python.po b/lang/python/sq/LC_MESSAGES/python.po index 84a16d9791fc25fcaf58821f78918fdde5290ae9..ec14c307fe0f7490289ebec1bc2c5fcd5f9d0c11 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Besnik Bleta <besnik@programeshqip.org>, 2021\n" "Language-Team: Albanian (https://www.transifex.com/calamares/teams/20061/sq/)\n" @@ -29,8 +29,8 @@ msgstr "Formësoni GRUB-in." msgid "Mounting partitions." msgstr "Po montohen pjesë." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "Po montohen pjesë." msgid "Configuration Error" msgstr "Gabim Formësimi" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -215,7 +215,7 @@ msgstr "Formësimi i përgjegjësit të ekranit s’qe i plotë" msgid "Configuring mkinitcpio." msgstr "Po formësohet mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/sr/LC_MESSAGES/python.po b/lang/python/sr/LC_MESSAGES/python.po index 0d7b1f3c9d965d2593639830e419c789f7096059..d5f6fa2e5743d3c263f642e5343adfd673681366 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Slobodan Simić <slsimic@gmail.com>, 2020\n" "Language-Team: Serbian (https://www.transifex.com/calamares/teams/20061/sr/)\n" @@ -29,8 +29,8 @@ msgstr "Подеси ГРУБ" msgid "Mounting partitions." msgstr "Монтирање партиција." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "Монтирање партиција." msgid "Configuration Error" msgstr "Грешка поставе" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -206,7 +206,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/sr@latin/LC_MESSAGES/python.po b/lang/python/sr@latin/LC_MESSAGES/python.po index 32845fa8171af6a9304b1d3f088aa5ff72d64092..74c990217b33d11c5c42dc4bf93680fb6caf62c3 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -25,8 +25,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -37,7 +37,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -202,7 +202,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/sv/LC_MESSAGES/python.po b/lang/python/sv/LC_MESSAGES/python.po index 10923c5c1b47f13f2e7223713f692f5e5c148c49..44631b1462bd2363c49238cbfd8e383b47f214e3 100644 --- a/lang/python/sv/LC_MESSAGES/python.po +++ b/lang/python/sv/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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Luna Jernberg <bittin@cafe8bitar.se>, 2021\n" "Language-Team: Swedish (https://www.transifex.com/calamares/teams/20061/sv/)\n" @@ -31,8 +31,8 @@ msgstr "Konfigurera GRUB." msgid "Mounting partitions." msgstr "Monterar partitioner." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -43,7 +43,7 @@ msgstr "Monterar partitioner." msgid "Configuration Error" msgstr "Konfigurationsfel" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -216,7 +216,7 @@ msgstr "Konfiguration för displayhanteraren var inkomplett" msgid "Configuring mkinitcpio." msgstr "Konfigurerar mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/te/LC_MESSAGES/python.po b/lang/python/te/LC_MESSAGES/python.po index 869c7996198b9f34f7cfe8acb0eb2f4834100dfb..59b5a7968a786e48894dc526b84dcd309454f58a 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -25,8 +25,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -37,7 +37,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -202,7 +202,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/tg/LC_MESSAGES/python.po b/lang/python/tg/LC_MESSAGES/python.po index 2d422b448395739e87d05b893c323a7a2f67cc4a..291410c1c829bb8d5e28c0837f3b052cae235178 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Victor Ibragimov <victor.ibragimov@gmail.com>, 2020\n" "Language-Team: Tajik (https://www.transifex.com/calamares/teams/20061/tg/)\n" @@ -29,8 +29,8 @@ msgstr "Танзимоти GRUB." msgid "Mounting partitions." msgstr "Васлкунии қисмҳои диск." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "Васлкунии қисмҳои диск." msgid "Configuration Error" msgstr "Хатои танзимкунӣ" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -216,7 +216,7 @@ msgstr "Раванди танзимкунии мудири намоиш ба а msgid "Configuring mkinitcpio." msgstr "Танзимкунии mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/th/LC_MESSAGES/python.po b/lang/python/th/LC_MESSAGES/python.po index f83e97bcdbc15bbcf0cf8a475854736f7621b1ec..c2ea492d997bbcb24852e3c2a925a132ffb1d564 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -25,8 +25,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -37,7 +37,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -202,7 +202,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/tr_TR/LC_MESSAGES/python.po b/lang/python/tr_TR/LC_MESSAGES/python.po index 419a5c4617a13e273e440939e14a08e221681dc0..b29e50390bb0c8b682984c2e81db0bb085eda10e 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Demiray Muhterem <mdemiray@msn.com>, 2020\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/calamares/teams/20061/tr_TR/)\n" @@ -30,8 +30,8 @@ msgstr "GRUB'u yapılandır." msgid "Mounting partitions." msgstr "Disk bölümlemeleri bağlanıyor." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -42,7 +42,7 @@ msgstr "Disk bölümlemeleri bağlanıyor." msgid "Configuration Error" msgstr "Yapılandırma Hatası" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -215,7 +215,7 @@ msgstr "Ekran yöneticisi yapılandırma işi tamamlanamadı" msgid "Configuring mkinitcpio." msgstr "Mkinitcpio yapılandırılıyor." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/uk/LC_MESSAGES/python.po b/lang/python/uk/LC_MESSAGES/python.po index 3f2682f50dd1b17777bbf2575ed783a212dbb0e5..cd0737d0506bc51ff8497bb28cd6ad141461d39f 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Yuri Chornoivan <yurchor@ukr.net>, 2021\n" "Language-Team: Ukrainian (https://www.transifex.com/calamares/teams/20061/uk/)\n" @@ -31,8 +31,8 @@ msgstr "Налаштовування GRUB." msgid "Mounting partitions." msgstr "Монтування розділів." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -43,7 +43,7 @@ msgstr "Монтування розділів." msgid "Configuration Error" msgstr "Помилка налаштовування" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -221,7 +221,7 @@ msgstr "Налаштування засобу керування дисплеє msgid "Configuring mkinitcpio." msgstr "Налаштовуємо mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/ur/LC_MESSAGES/python.po b/lang/python/ur/LC_MESSAGES/python.po index 3a2c39bb972c732aea71b5c5946d84eeaa6329e1..216e83227f59ec47cd40d7571d575c2a5acfdf42 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -25,8 +25,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -37,7 +37,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -202,7 +202,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/uz/LC_MESSAGES/python.po b/lang/python/uz/LC_MESSAGES/python.po index f1656b484294c2d5385f056182606089d2805268..46926ae468989ad26bb364f6d0a2db15782f2c84 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -25,8 +25,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -37,7 +37,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -202,7 +202,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/vi/LC_MESSAGES/python.po b/lang/python/vi/LC_MESSAGES/python.po index c5d101ccb21a14a784c96ccde46cc351a33122bd..3ff22861344e7b49a9e2089875eaf83a4a6bffba 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: T. Tran <transifex@emiu.net>, 2020\n" "Language-Team: Vietnamese (https://www.transifex.com/calamares/teams/20061/vi/)\n" @@ -29,8 +29,8 @@ msgstr "Cấu hình GRUB" msgid "Mounting partitions." msgstr "Đang gắn kết các phân vùng." -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -41,7 +41,7 @@ msgstr "Đang gắn kết các phân vùng." msgid "Configuration Error" msgstr "Lỗi cấu hình" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -212,7 +212,7 @@ msgstr "Cầu hình quản lý hiện thị không hoàn tất" msgid "Configuring mkinitcpio." msgstr "Đang cấu hình mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/zh/LC_MESSAGES/python.po b/lang/python/zh/LC_MESSAGES/python.po index da9c9a79b2beaf0e09b79a6f40c8314f3edfb013..4f577d612a93a081f7b1272282273bbef0646c6c 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -25,8 +25,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -37,7 +37,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -202,7 +202,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/zh_CN/LC_MESSAGES/python.po b/lang/python/zh_CN/LC_MESSAGES/python.po index 2f14a3af4be75c650b202fa4d57b72f18fd6f375..7bef5b81bc71c724567125f42e18d4eb39e35138 100644 --- a/lang/python/zh_CN/LC_MESSAGES/python.po +++ b/lang/python/zh_CN/LC_MESSAGES/python.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: 玉堂白鹤 <yjwork@qq.com>, 2021\n" "Language-Team: Chinese (China) (https://www.transifex.com/calamares/teams/20061/zh_CN/)\n" @@ -33,8 +33,8 @@ msgstr "配置 GRUB." msgid "Mounting partitions." msgstr "挂载分区。" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -45,7 +45,7 @@ msgstr "挂载分区。" msgid "Configuration Error" msgstr "配置错误" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -212,7 +212,7 @@ msgstr "显示管理器配置不完全" msgid "Configuring mkinitcpio." msgstr "配置 mkinitcpio." -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/zh_HK/LC_MESSAGES/python.po b/lang/python/zh_HK/LC_MESSAGES/python.po index 94713bf244f69fb58d5d5309b2d15f33f57b31ef..62114f75aa2516d8860e8486a5b505e50faa8684 100644 --- a/lang/python/zh_HK/LC_MESSAGES/python.po +++ b/lang/python/zh_HK/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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+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" @@ -25,8 +25,8 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -37,7 +37,7 @@ msgstr "" msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -202,7 +202,7 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/lang/python/zh_TW/LC_MESSAGES/python.po b/lang/python/zh_TW/LC_MESSAGES/python.po index 447f5f7973f2c2040e7fea95c42b66807d6c5192..b242ade311f0176950f29562d8330e345e5de624 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-09-08 13:31+0200\n" +"POT-Creation-Date: 2021-09-22 11:02+0200\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: 黃柏諺 <s8321414@gmail.com>, 2021\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/calamares/teams/20061/zh_TW/)\n" @@ -30,8 +30,8 @@ msgstr "設定 GRUB。" msgid "Mounting partitions." msgstr "正在掛載分割區。" -#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:197 -#: src/modules/initcpiocfg/main.py:201 +#: src/modules/mount/main.py:144 src/modules/initcpiocfg/main.py:227 +#: src/modules/initcpiocfg/main.py:231 #: 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 @@ -42,7 +42,7 @@ msgstr "正在掛載分割區。" msgid "Configuration Error" msgstr "設定錯誤" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:198 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:228 #: 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 @@ -209,7 +209,7 @@ msgstr "顯示管理器設定不完整" msgid "Configuring mkinitcpio." msgstr "正在設定 mkinitcpio。" -#: src/modules/initcpiocfg/main.py:202 +#: src/modules/initcpiocfg/main.py:232 #: 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 diff --git a/src/calamares/testmain.cpp b/src/calamares/testmain.cpp index 6d75a4fbb1aa73d5dd51d9d25212f2fea999db19..9d018903154cc2316601f8facc8b2fdf148328fe 100644 --- a/src/calamares/testmain.cpp +++ b/src/calamares/testmain.cpp @@ -71,22 +71,20 @@ handle_args( QCoreApplication& a ) { QCommandLineOption debugLevelOption( QStringLiteral( "D" ), "Verbose output for debugging purposes (0-8), ignored.", "level" ); - QCommandLineOption globalOption( QStringList() << QStringLiteral( "g" ) << QStringLiteral( "global " ), + QCommandLineOption globalOption( { QStringLiteral( "g" ), QStringLiteral( "global" ) }, QStringLiteral( "Global settings document" ), "global.yaml" ); - QCommandLineOption jobOption( QStringList() << QStringLiteral( "j" ) << QStringLiteral( "job" ), - QStringLiteral( "Job settings document" ), - "job.yaml" ); - QCommandLineOption langOption( QStringList() << QStringLiteral( "l" ) << QStringLiteral( "language" ), + QCommandLineOption jobOption( + { QStringLiteral( "j" ), QStringLiteral( "job" ) }, QStringLiteral( "Job settings document" ), "job.yaml" ); + QCommandLineOption langOption( { QStringLiteral( "l" ), QStringLiteral( "language" ) }, QStringLiteral( "Language (global)" ), "languagecode" ); - QCommandLineOption brandOption( QStringList() << QStringLiteral( "b" ) << QStringLiteral( "branding" ), + QCommandLineOption brandOption( { QStringLiteral( "b" ), QStringLiteral( "branding" ) }, QStringLiteral( "Branding directory" ), "path/to/branding.desc", "src/branding/default/branding.desc" ); - QCommandLineOption uiOption( QStringList() << QStringLiteral( "U" ) << QStringLiteral( "ui" ), - QStringLiteral( "Enable UI" ) ); - QCommandLineOption slideshowOption( QStringList() << QStringLiteral( "s" ) << QStringLiteral( "slideshow" ), + QCommandLineOption uiOption( { QStringLiteral( "U" ), QStringLiteral( "ui" ) }, QStringLiteral( "Enable UI" ) ); + QCommandLineOption slideshowOption( { QStringLiteral( "s" ), QStringLiteral( "slideshow" ) }, QStringLiteral( "Run slideshow module" ) ); QCommandLineParser parser; parser.setApplicationDescription( "Calamares module tester" ); @@ -101,7 +99,7 @@ handle_args( QCoreApplication& a ) parser.addOption( uiOption ); parser.addOption( slideshowOption ); #ifdef WITH_PYTHON - QCommandLineOption pythonOption( QStringList() << QStringLiteral( "P" ) << QStringLiteral( "no-injected-python" ), + QCommandLineOption pythonOption( { QStringLiteral( "P" ), QStringLiteral( "no-injected-python" ) }, QStringLiteral( "Do not disable potentially-harmful Python commands" ) ); parser.addOption( pythonOption ); #endif @@ -143,8 +141,7 @@ handle_args( QCoreApplication& a ) parser.value( langOption ), parser.value( brandOption ), parser.isSet( slideshowOption ) || parser.isSet( uiOption ), - pythonInjection - }; + pythonInjection }; } } @@ -299,7 +296,8 @@ load_module( const ModuleConfig& moduleConfig ) bool ok = false; QVariantMap descriptor; - for ( const QString& prefix : QStringList { "./", "src/modules/", "modules/" } ) + QStringList moduleDirectories { "./", "src/modules/", "modules/", CMAKE_INSTALL_FULL_LIBDIR "/calamares/modules/" }; + for ( const QString& prefix : qAsConst( moduleDirectories ) ) { // Could be a complete path, eg. src/modules/dummycpp/module.desc fi = QFileInfo( prefix + moduleName ); @@ -325,12 +323,23 @@ load_module( const ModuleConfig& moduleConfig ) { break; } + else + { + if ( !fi.exists() ) + { + cDebug() << "Expected a descriptor file" << fi.path(); + } + else + { + cDebug() << "Read descriptor" << fi.path() << "and it was empty."; + } + } } } if ( !ok ) { - cWarning() << "No suitable module descriptor found."; + cWarning() << "No suitable module descriptor found in" << Logger::DebugList( moduleDirectories ); return nullptr; } @@ -461,7 +470,7 @@ main( int argc, char* argv[] ) #ifdef WITH_PYTHON if ( module.m_pythonInjection ) { - Calamares::PythonJob::setInjectedPreScript(pythonPreScript); + Calamares::PythonJob::setInjectedPreScript( pythonPreScript ); } #endif #ifdef WITH_QML diff --git a/src/libcalamares/PythonJob.cpp b/src/libcalamares/PythonJob.cpp index 1a4683c29ce4d626daf258a9c19737e19def2b59..201f56a1593cf9608fbfb01df17e09711e0e593c 100644 --- a/src/libcalamares/PythonJob.cpp +++ b/src/libcalamares/PythonJob.cpp @@ -330,7 +330,8 @@ void PythonJob::setInjectedPreScript( const char* preScript ) { s_preScript = preScript; - cDebug() << "Python pre-script set to" << Logger::Pointer( preScript ); + cDebug() << "Python pre-script set to string" << Logger::Pointer( preScript ) << "length" + << ( preScript ? strlen( preScript ) : 0 ); } } // namespace Calamares diff --git a/src/libcalamaresui/utils/CalamaresUtilsGui.cpp b/src/libcalamaresui/utils/CalamaresUtilsGui.cpp index e16763a701e52f5c18f70e2a3b4bea406479b160..d10aada739d76595c9586e463559fa18a0525617 100644 --- a/src/libcalamaresui/utils/CalamaresUtilsGui.cpp +++ b/src/libcalamaresui/utils/CalamaresUtilsGui.cpp @@ -180,16 +180,20 @@ createRoundedImage( const QPixmap& pixmap, const QSize& size, float frameWidthPc void unmarginLayout( QLayout* layout ) { - layout->setContentsMargins( 0, 0, 0, 0 ); - layout->setMargin( 0 ); - layout->setSpacing( 0 ); - - for ( int i = 0; i < layout->count(); i++ ) + if ( layout ) { - QLayout* childLayout = layout->itemAt( i )->layout(); - if ( childLayout ) + layout->setContentsMargins( 0, 0, 0, 0 ); + layout->setMargin( 0 ); + layout->setSpacing( 0 ); + + for ( int i = 0; i < layout->count(); i++ ) { - unmarginLayout( childLayout ); + auto* childItem = layout->itemAt( i ); + QLayout* childLayout = childItem ? childItem->layout() : nullptr; + if ( childLayout ) + { + unmarginLayout( childLayout ); + } } } } diff --git a/src/modules/displaymanager/main.py b/src/modules/displaymanager/main.py index 8b63b9e8d8fd2232667f709239e1e14a8d722eba..5fb228682239c5b3dc77f64cd67d2350c2de5cf3 100644 --- a/src/modules/displaymanager/main.py +++ b/src/modules/displaymanager/main.py @@ -198,7 +198,7 @@ desktop_environments = [ DesktopEnvironment('/usr/bin/fvwm3', 'fvwm3'), DesktopEnvironment('/usr/bin/sway', 'sway'), DesktopEnvironment('/usr/bin/ukui-session', 'ukui'), - DesktopEnvironment('/usr/bin/cutefish-session', 'cutefish-xsession'), + DesktopEnvironment('/usr/bin/cutefish-session', 'cutefish-xsession'), ] @@ -923,7 +923,7 @@ def run(): else: dm_instance = None else: - libcalamares.utils.debug("{!s} has {!d} implementation classes.".format(dm).format(len(impl))) + libcalamares.utils.debug("{!s} has {!s} implementation classes.".format(dm, len(impl))) if dm_instance is None: libcalamares.utils.debug("{!s} selected but not installed".format(dm)) diff --git a/src/modules/partition/Config.cpp b/src/modules/partition/Config.cpp index 508231a75fe9b7fa358609ee4ecbafc6d5f1639d..05975213efa4f82b0de6c82d7fc9a244c89e20b0 100644 --- a/src/modules/partition/Config.cpp +++ b/src/modules/partition/Config.cpp @@ -13,6 +13,7 @@ #include "GlobalStorage.h" #include "JobQueue.h" +#include "partition/PartitionSize.h" #include "utils/Logger.h" #include "utils/Variant.h" @@ -233,7 +234,25 @@ fillGSConfigurationEFI( Calamares::GlobalStorage* gs, const QVariantMap& configu // Read and parse key efiSystemPartitionSize if ( configurationMap.contains( "efiSystemPartitionSize" ) ) { - gs->insert( "efiSystemPartitionSize", CalamaresUtils::getString( configurationMap, "efiSystemPartitionSize" ) ); + const QString sizeString = CalamaresUtils::getString( configurationMap, "efiSystemPartitionSize" ); + CalamaresUtils::Partition::PartitionSize part_size + = CalamaresUtils::Partition::PartitionSize( sizeString ); + if (part_size.isValid()) + { + // Insert once as string, once as a size-in-bytes; + // changes to these keys should be synchronized with PartUtils.cpp + gs->insert( "efiSystemPartitionSize", sizeString ); + gs->insert( "efiSystemPartitionSize_i", part_size.toBytes()); + + if (part_size.toBytes() != PartUtils::efiFilesystemMinimumSize()) + { + cWarning() << "EFI partition size" << sizeString << "has been adjusted to" << PartUtils::efiFilesystemMinimumSize() << "bytes"; + } + } + else + { + cWarning() << "EFI partition size" << sizeString << "is invalid, ignored"; + } } // Read and parse key efiSystemPartitionName diff --git a/src/modules/partition/PartitionViewStep.cpp b/src/modules/partition/PartitionViewStep.cpp index c17954810101ca51d20437ba938cf8d31877c272..a6b5e1dd8b887fd0340fcfc54c0bff83c0bf983d 100644 --- a/src/modules/partition/PartitionViewStep.cpp +++ b/src/modules/partition/PartitionViewStep.cpp @@ -558,9 +558,10 @@ PartitionViewStep::onLeave() if ( !okSize ) { cDebug() << o << "ESP too small"; + const auto atLeastBytes = PartUtils::efiFilesystemMinimumSize(); + const auto atLeastMiB = CalamaresUtils::BytesToMiB( atLeastBytes ); description.append( ' ' ); - description.append( tr( "The filesystem must be at least %1 MiB in size." ) - .arg( PartUtils::efiFilesystemMinimumSize() ) ); + description.append( tr( "The filesystem must be at least %1 MiB in size." ).arg( atLeastMiB ) ); } if ( !okFlag ) { diff --git a/src/modules/partition/core/PartUtils.cpp b/src/modules/partition/core/PartUtils.cpp index 806c0ceb37113a2c222246eba6c263ba98cc7dbe..507330a80b6edb4e540fa4f72892a6ccdf88a763 100644 --- a/src/modules/partition/core/PartUtils.cpp +++ b/src/modules/partition/core/PartUtils.cpp @@ -471,9 +471,12 @@ bool isEfiFilesystemSuitableSize( const Partition* candidate ) { auto size = candidate->capacity(); // bytes + if ( size <= 0 ) + { + return false; + } - using CalamaresUtils::Units::operator""_MiB; - if ( size >= 300_MiB ) + if ( size_t( size ) >= efiFilesystemMinimumSize() ) { return true; } @@ -522,7 +525,22 @@ size_t efiFilesystemMinimumSize() { using CalamaresUtils::Units::operator""_MiB; - return 300_MiB; + + auto uefisys_part_sizeB = 300_MiB; + + // The default can be overridden; the key used here comes + // from the partition module Config.cpp + auto* gs = Calamares::JobQueue::instance()->globalStorage(); + if ( gs->contains( "efiSystemPartitionSize_i" ) ) + { + uefisys_part_sizeB = gs->value( "efiSystemPartitionSize_i" ).toLongLong(); + } + // There is a lower limit of what can be configured + if ( uefisys_part_sizeB < 32_MiB ) + { + uefisys_part_sizeB = 32_MiB; + } + return uefisys_part_sizeB; } diff --git a/src/modules/partition/core/PartUtils.h b/src/modules/partition/core/PartUtils.h index dd4efc8678a03a73c96c1c5664825b27dadb32cb..31b4cde84e0e1f857b1ec6e98874b98fddf90471 100644 --- a/src/modules/partition/core/PartUtils.h +++ b/src/modules/partition/core/PartUtils.h @@ -94,12 +94,18 @@ bool isEfiFilesystemSuitableType( const Partition* candidate ); */ bool isEfiFilesystemSuitableSize( const Partition* candidate ); -/** @brief Returns the minimum size of an EFI boot partition. +/** @brief Returns the minimum size of an EFI boot partition in bytes. * * This is determined as 300MiB, based on the FAT32 standard * and EFI documentation (and not a little discussion in Calamares * issues about what works, what is effective, and what is mandated * by the standard and how all of those are different). + * + * This can be configured through the `partition.conf` file, + * key *efiSystemPartitionSize*, which will then apply to both + * automatic partitioning **and** the warning for manual partitioning. + * + * A minimum of 32MiB (which is bonkers-small) is enforced. */ size_t efiFilesystemMinimumSize(); diff --git a/src/modules/partition/core/PartitionActions.cpp b/src/modules/partition/core/PartitionActions.cpp index 422c1d38f185b0e042aa3743d5262321c403473c..8514bbe2cdc1cff9b9f13698a950b2a676cefc25 100644 --- a/src/modules/partition/core/PartitionActions.cpp +++ b/src/modules/partition/core/PartitionActions.cpp @@ -118,14 +118,7 @@ doAutopartition( PartitionCoreModule* core, Device* dev, Choices::AutoPartitionO if ( isEfi ) { - int uefisys_part_sizeB = 300_MiB; - if ( gs->contains( "efiSystemPartitionSize" ) ) - { - CalamaresUtils::Partition::PartitionSize part_size - = CalamaresUtils::Partition::PartitionSize( gs->value( "efiSystemPartitionSize" ).toString() ); - uefisys_part_sizeB = part_size.toBytes( dev->capacity() ); - } - + size_t uefisys_part_sizeB = PartUtils::efiFilesystemMinimumSize(); qint64 efiSectorCount = CalamaresUtils::bytesToSectors( uefisys_part_sizeB, dev->logicalSize() ); Q_ASSERT( efiSectorCount > 0 ); diff --git a/src/modules/partition/partition.conf b/src/modules/partition/partition.conf index 899eb6269db4e4589a4e50bb6f357658bbbf38c7..b03c855db645503c4fb86b4b4a554efbc4fb7834 100644 --- a/src/modules/partition/partition.conf +++ b/src/modules/partition/partition.conf @@ -10,6 +10,12 @@ efiSystemPartition: "/boot/efi" # This optional setting specifies the size of the EFI system partition. # If nothing is specified, the default size of 300MiB will be used. +# +# This size applies both to automatic partitioning and the checks +# during manual partitioning. A minimum of 32MiB is enforced, +# 300MiB is the default, M is treated as MiB, and if you really want +# one-million (10^6) bytes, use MB. +# # efiSystemPartitionSize: 300M # This optional setting specifies the name of the EFI system partition (see diff --git a/src/modules/summary/Config.cpp b/src/modules/summary/Config.cpp index 5110e09a65ebc8428708be97bca8ec2e967a152c..9038f786fccb3f5d7083719a75f1ec9e72c3dcca 100644 --- a/src/modules/summary/Config.cpp +++ b/src/modules/summary/Config.cpp @@ -26,7 +26,9 @@ SummaryModel::SummaryModel( QObject* parent ) QHash< int, QByteArray > SummaryModel::roleNames() const { - return { { Qt::DisplayRole, "title" }, { Qt::UserRole, "message" } }; + // Not including WidgetRole here because that wouldn't make sense + // in a QML context which is where the roleNames are important. + return { { TitleRole, "title" }, { MessageRole, "message" } }; } QVariant @@ -36,8 +38,18 @@ SummaryModel::data( const QModelIndex& index, int role ) const { return QVariant(); } - const auto item = m_summary.at( index.row() ); - return role == Qt::DisplayRole ? item.title : item.message; + auto& item = m_summary.at( index.row() ); + switch ( role ) + { + case TitleRole: + return item.title; + case MessageRole: + return item.message; + case WidgetRole: + return item.widget ? QVariant::fromValue( item.widget ) : QVariant(); + default: + return QVariant(); + } } int @@ -84,19 +96,19 @@ Config::retranslate() if ( Calamares::Settings::instance()->isSetupMode() ) { m_message = tr( "This is an overview of what will happen once you start " - "the setup procedure." ); + "the setup procedure." ); } else { m_message = tr( "This is an overview of what will happen once you start " - "the install procedure." ); + "the install procedure." ); } Q_EMIT titleChanged( m_title ); Q_EMIT messageChanged( m_message ); } -void -Config::collectSummaries( const Calamares::ViewStep* upToHere ) +Calamares::ViewStepList +Config::stepsForSummary( const Calamares::ViewStep* upToHere ) { Calamares::ViewStepList steps; for ( Calamares::ViewStep* step : Calamares::ViewManager::instance()->viewSteps() ) @@ -122,6 +134,18 @@ Config::collectSummaries( const Calamares::ViewStep* upToHere ) steps.append( step ); } + return steps; +} + - m_summary->setSummaryList( steps ); +void +Config::collectSummaries( const Calamares::ViewStep* upToHere, Widgets withWidgets ) +{ + m_summary->setSummaryList( stepsForSummary( upToHere ), withWidgets == Widgets::Enabled ); +} + +void +Config::clearSummaries() +{ + m_summary->setSummaryList( {}, false ); } diff --git a/src/modules/summary/Config.h b/src/modules/summary/Config.h index 15604d9333f8527ba3bc901f71ac8590d5903995..f0732f4488106169e66bfa78e44eb313fdda3d63 100644 --- a/src/modules/summary/Config.h +++ b/src/modules/summary/Config.h @@ -38,6 +38,13 @@ class SummaryModel : public QAbstractListModel friend class Config; public: + enum Roles : int + { + TitleRole = Qt::DisplayRole, // Name of the step + MessageRole = Qt::UserRole, // String saying what it will do + WidgetRole, // Pointer to widget + }; + explicit SummaryModel( QObject* parent = nullptr ); int rowCount( const QModelIndex& = QModelIndex() ) const override; QVariant data( const QModelIndex& index, int role ) const override; @@ -72,8 +79,19 @@ class Config : public QObject public: explicit Config( QObject* parent = nullptr ); + ///@brief Include widgets in the model? + enum class Widgets + { + Disabled, + Enabled + }; + + static Calamares::ViewStepList stepsForSummary( const Calamares::ViewStep* upToHere ); + ///@brief Called later, to load the model once all viewsteps are there - void collectSummaries( const Calamares::ViewStep* upToHere ); + void collectSummaries( const Calamares::ViewStep* upToHere, Widgets withWidgets ); + ///@brief Clear the model of steps (to avoid dangling widgets) + void clearSummaries(); QAbstractListModel* summaryModel() const { return m_summary; } @@ -81,7 +99,6 @@ public: QString message() const { return m_message; } private: - Calamares::ViewStepList stepsForSummary( const Calamares::ViewStepList& allSteps ) const; void retranslate(); SummaryModel* m_summary; diff --git a/src/modules/summary/SummaryPage.cpp b/src/modules/summary/SummaryPage.cpp index 8abfb88041bc07e4ae37e3e24300d89f9cd8fa4d..c0df7afd76b73bd3571c8d22393e143109cf9b15 100644 --- a/src/modules/summary/SummaryPage.cpp +++ b/src/modules/summary/SummaryPage.cpp @@ -27,20 +27,15 @@ #include <QLabel> #include <QScrollArea> -static const int SECTION_SPACING = 12; - -SummaryPage::SummaryPage( Config* config, const SummaryViewStep* thisViewStep, QWidget* parent ) +SummaryPage::SummaryPage( Config* config, QWidget* parent ) : QWidget() - , m_thisViewStep( thisViewStep ) , m_contentWidget( nullptr ) , m_scrollArea( new QScrollArea( this ) ) { Q_UNUSED( parent ) - this->setObjectName( "summaryStep" ); - Q_ASSERT( m_thisViewStep ); QVBoxLayout* layout = new QVBoxLayout( this ); layout->setContentsMargins( 0, 0, 0, 0 ); @@ -84,11 +79,55 @@ createBodyLabel( const QString& text, const QPalette& bodyPalette ) return label; } +static QWidget* +createStepWidget( const QString& description, QWidget* innerWidget, const QPalette& palette ) +{ + QWidget* w = new QWidget(); + QHBoxLayout* itemBodyLayout = new QHBoxLayout; + w->setLayout( itemBodyLayout ); + + // Indent the inner box by a bit + itemBodyLayout->addSpacing( CalamaresUtils::defaultFontHeight() * 2 ); + QVBoxLayout* itemBodyCoreLayout = new QVBoxLayout; + itemBodyLayout->addLayout( itemBodyCoreLayout ); + CalamaresUtils::unmarginLayout( itemBodyLayout ); + + itemBodyCoreLayout->addSpacing( CalamaresUtils::defaultFontHeight() / 2 ); + if ( !description.isEmpty() ) + { + itemBodyCoreLayout->addWidget( createBodyLabel( description, palette ) ); + } + if ( innerWidget ) + { + itemBodyCoreLayout->addWidget( innerWidget ); + } + + return w; +} + +static void +ensureSize( QWidget* parent, QScrollArea* container, Calamares::ViewStep* viewstep ) +{ + auto summarySize = container->widget()->sizeHint(); + if ( summarySize.height() > container->size().height() ) + { + auto enlarge = 2 + summarySize.height() - container->size().height(); + auto widgetSize = parent->size(); + widgetSize.setHeight( widgetSize.height() + enlarge ); + + cDebug() << "Summary widget is larger than viewport, enlarge by" << enlarge << "to" << widgetSize; + + emit viewstep->ensureSize( widgetSize ); // Only expand height + } +} + // Adds a widget for those ViewSteps that want a summary; // see SummaryPage documentation and also ViewStep docs. void -SummaryPage::onActivate() +SummaryPage::buildWidgets( Config* config, SummaryViewStep* viewstep ) { + const int SECTION_SPACING = 12; + delete m_contentWidget; // It might have been created previously m_contentWidget = new QWidget; m_layout = new QVBoxLayout( m_contentWidget ); @@ -101,94 +140,37 @@ SummaryPage::onActivate() QPalette bodyPalette( palette() ); bodyPalette.setColor( WindowBackground, palette().window().color().lighter( 108 ) ); - bool first = true; - const Calamares::ViewStepList steps = stepsForSummary( Calamares::ViewManager::instance()->viewSteps() ); + const auto* model = config->summaryModel(); + const auto rowCount = model->rowCount(); - for ( Calamares::ViewStep* step : steps ) + for ( int row = 0; row < rowCount; row++ ) { - QString text = step->prettyStatus(); - QWidget* widget = step->createSummaryWidget(); + const auto rowIndex = model->index( row ); + QString title = model->data( rowIndex, SummaryModel::TitleRole ).toString(); + QString text = model->data( rowIndex, SummaryModel::MessageRole ).toString(); + QWidget* widget = model->data( rowIndex, SummaryModel::WidgetRole ).value< QWidget* >(); if ( text.isEmpty() && !widget ) { continue; } - if ( first ) - { - first = false; - } - else + if ( row > 0 ) { m_layout->addSpacing( SECTION_SPACING ); } - m_layout->addWidget( createTitleLabel( step->prettyName(), titleFont ) ); - QHBoxLayout* itemBodyLayout = new QHBoxLayout; - m_layout->addSpacing( CalamaresUtils::defaultFontHeight() / 2 ); - m_layout->addLayout( itemBodyLayout ); - itemBodyLayout->addSpacing( CalamaresUtils::defaultFontHeight() * 2 ); - QVBoxLayout* itemBodyCoreLayout = new QVBoxLayout; - itemBodyLayout->addLayout( itemBodyCoreLayout ); - CalamaresUtils::unmarginLayout( itemBodyLayout ); - if ( !text.isEmpty() ) - { - itemBodyCoreLayout->addWidget( createBodyLabel( text, bodyPalette ) ); - } - if ( widget ) - { - itemBodyCoreLayout->addWidget( widget ); - } - itemBodyLayout->addSpacing( CalamaresUtils::defaultFontHeight() * 2 ); + m_layout->addWidget( createTitleLabel( title, titleFont ) ); + m_layout->addWidget( createStepWidget( text, widget, bodyPalette ) ); } m_layout->addStretch(); m_scrollArea->setWidget( m_contentWidget ); - - auto summarySize = m_contentWidget->sizeHint(); - if ( summarySize.height() > m_scrollArea->size().height() ) - { - auto enlarge = 2 + summarySize.height() - m_scrollArea->size().height(); - auto widgetSize = this->size(); - widgetSize.setHeight( widgetSize.height() + enlarge ); - - cDebug() << "Summary widget is larger than viewport, enlarge by" << enlarge << "to" << widgetSize; - - emit m_thisViewStep->ensureSize( widgetSize ); // Only expand height - } -} - -Calamares::ViewStepList -SummaryPage::stepsForSummary( const Calamares::ViewStepList& allSteps ) const -{ - Calamares::ViewStepList steps; - for ( Calamares::ViewStep* step : allSteps ) - { - // We start from the beginning of the complete steps list. If we encounter any - // ExecutionViewStep, it means there was an execution phase in the past, and any - // jobs from before that phase were already executed, so we can safely clear the - // list of steps to summarize and start collecting from scratch. - if ( qobject_cast< Calamares::ExecutionViewStep* >( step ) ) - { - steps.clear(); - continue; - } - - // If we reach the parent step of this page, we're done collecting the list of - // steps to summarize. - if ( m_thisViewStep == step ) - { - break; - } - - steps.append( step ); - } - - return steps; + ensureSize( this, m_scrollArea, viewstep ); } void -SummaryPage::onLeave() +SummaryPage::cleanup() { delete m_contentWidget; m_contentWidget = nullptr; diff --git a/src/modules/summary/SummaryPage.h b/src/modules/summary/SummaryPage.h index 7d98cc71129c771768e549825f5911c66ce17c5e..9976020f7ec13caf2e0e1e9965cf38ae43ef8d3b 100644 --- a/src/modules/summary/SummaryPage.h +++ b/src/modules/summary/SummaryPage.h @@ -45,22 +45,17 @@ class SummaryPage : public QWidget { Q_OBJECT public: - explicit SummaryPage( Config* config, const SummaryViewStep* thisViewStep, QWidget* parent = nullptr ); + explicit SummaryPage( Config* config, QWidget* parent = nullptr ); /// @brief Create contents showing all of the summary - void onActivate(); + void buildWidgets( Config* config, SummaryViewStep* viewstep ); /// @brief Clean up the widgets - void onLeave(); + void cleanup(); private: - Calamares::ViewStepList stepsForSummary( const Calamares::ViewStepList& allSteps ) const; - - const SummaryViewStep* m_thisViewStep; - QVBoxLayout* m_layout = nullptr; QWidget* m_contentWidget = nullptr; - - QScrollArea* m_scrollArea; + QScrollArea* m_scrollArea = nullptr; }; #endif // SUMMARYPAGE_H diff --git a/src/modules/summary/SummaryViewStep.cpp b/src/modules/summary/SummaryViewStep.cpp index d4e439ae331a8c56c9ed6e19f9c98e52d4ec4ff7..9d63d0d3747855a7adfa6ed07f51cc8cc3388d62 100644 --- a/src/modules/summary/SummaryViewStep.cpp +++ b/src/modules/summary/SummaryViewStep.cpp @@ -16,7 +16,7 @@ CALAMARES_PLUGIN_FACTORY_DEFINITION( SummaryViewStepFactory, registerPlugin< Sum SummaryViewStep::SummaryViewStep( QObject* parent ) : Calamares::ViewStep( parent ) , m_config( new Config( this ) ) - , m_widget( new SummaryPage( m_config, this ) ) + , m_widget( new SummaryPage( m_config ) ) { emit nextStatusChanged( true ); } @@ -84,13 +84,14 @@ SummaryViewStep::jobs() const void SummaryViewStep::onActivate() { - m_config->collectSummaries( this ); - m_widget->onActivate(); + m_config->collectSummaries( this, Config::Widgets::Enabled ); + m_widget->buildWidgets( m_config, this ); } void SummaryViewStep::onLeave() { - m_widget->onLeave(); + m_config->clearSummaries(); + m_widget->cleanup(); } diff --git a/src/modules/summaryq/SummaryQmlViewStep.cpp b/src/modules/summaryq/SummaryQmlViewStep.cpp index 23e18a8612676092981f196a36e21845bee990fd..a5acdfddda4f403729403b73e1596fe09a61ddcf 100644 --- a/src/modules/summaryq/SummaryQmlViewStep.cpp +++ b/src/modules/summaryq/SummaryQmlViewStep.cpp @@ -69,5 +69,5 @@ SummaryQmlViewStep::onActivate() { // Collect the steps before this one: those need to have their // summary (text or widget) displayed. - m_config->collectSummaries( this ); + m_config->collectSummaries( this, Config::Widgets::Disabled ); } diff --git a/src/modules/unpackfs/main.py b/src/modules/unpackfs/main.py index 8a5194843c1e1149dce1a0455e09400afb7a4c86..020db370c976932362cb82e31446ab635f3a92f1 100644 --- a/src/modules/unpackfs/main.py +++ b/src/modules/unpackfs/main.py @@ -22,13 +22,12 @@ import subprocess import sys import tempfile -from libcalamares import * -from libcalamares.utils import mount +import libcalamares import gettext _ = gettext.translation("calamares-python", - localedir=utils.gettext_path(), - languages=utils.gettext_languages(), + localedir=libcalamares.utils.gettext_path(), + languages=libcalamares.utils.gettext_languages(), fallback=True).gettext def pretty_name(): @@ -123,14 +122,14 @@ class UnpackEntry: return if os.path.isdir(self.source): - r = mount(self.source, imgmountdir, "", "--bind") + r = libcalamares.utils.mount(self.source, imgmountdir, "", "--bind") elif os.path.isfile(self.source): - r = mount(self.source, imgmountdir, self.sourcefs, "loop") + r = libcalamares.utils.mount(self.source, imgmountdir, self.sourcefs, "loop") else: # self.source is a device - r = mount(self.source, imgmountdir, self.sourcefs, "") + r = libcalamares.utils.mount(self.source, imgmountdir, self.sourcefs, "") if r != 0: - utils.debug("Failed to mount '{}' (fs={}) (target={})".format(self.source, self.sourcefs, imgmountdir)) + libcalamares.utils.debug("Failed to mount '{}' (fs={}) (target={})".format(self.source, self.sourcefs, imgmountdir)) raise subprocess.CalledProcessError(r, "mount") @@ -142,7 +141,7 @@ def global_excludes(): List excludes for rsync. """ lst = [] - extra_mounts = globalstorage.value("extraMounts") + extra_mounts = libcalamares.globalstorage.value("extraMounts") if extra_mounts is None: extra_mounts = [] @@ -251,7 +250,7 @@ def file_copy(source, entry, progress_cb): # https://bugzilla.redhat.com/show_bug.cgi?id=868755#c50 # for the same issue in Anaconda, which uses a similar workaround. if process.returncode != 0 and process.returncode != 23: - utils.warning("rsync failed with error code {}.".format(process.returncode)) + libcalamares.utils.warning("rsync failed with error code {}.".format(process.returncode)) return _("rsync failed with error code {}.").format(process.returncode) return None @@ -298,7 +297,7 @@ class UnpackOperation: global status status = _("Unpacking image {}/{}, file {}/{}").format((complete_count+1), len(self.entries), current_done, current_total) - job.setprogress(progress) + libcalamares.job.setprogress(progress) def run(self): """ @@ -313,7 +312,7 @@ class UnpackOperation: complete = 0 for entry in self.entries: status = _("Starting to unpack {}").format(entry.source) - job.setprogress( ( 1.0 * complete ) / len(self.entries) ) + libcalamares.job.setprogress( ( 1.0 * complete ) / len(self.entries) ) entry.do_mount(source_mount_path) entry.do_count() # Fill in the entry.total @@ -398,7 +397,7 @@ def repair_root_permissions(root_mount_point): try: os.chmod(root_mount_point, 0o755) # Want / to be rwxr-xr-x except OSError as e: - utils.warning("Could not set / to safe permissions: {}".format(e)) + libcalamares.utils.warning("Could not set / to safe permissions: {}".format(e)) # But ignore it @@ -414,9 +413,9 @@ def extract_weight(entry): wi = int(w) return wi if wi > 0 else 1 except ValueError: - utils.warning("*weight* setting {!r} is not valid.".format(w)) + libcalamares.utils.warning("*weight* setting {!r} is not valid.".format(w)) except TypeError: - utils.warning("*weight* setting {!r} must be number.".format(w)) + libcalamares.utils.warning("*weight* setting {!r} must be number.".format(w)) return 1 @@ -424,16 +423,16 @@ def run(): """ Unsquash filesystem. """ - root_mount_point = globalstorage.value("rootMountPoint") + root_mount_point = libcalamares.globalstorage.value("rootMountPoint") if not root_mount_point: - utils.warning("No mount point for root partition") + libcalamares.utils.warning("No mount point for root partition") return (_("No mount point for root partition"), _("globalstorage does not contain a \"rootMountPoint\" key, " "doing nothing")) if not os.path.exists(root_mount_point): - utils.warning("Bad root mount point \"{}\"".format(root_mount_point)) + libcalamares.utils.warning("Bad root mount point \"{}\"".format(root_mount_point)) return (_("Bad mount point for root partition"), _("rootMountPoint is \"{}\", which does not " "exist, doing nothing").format(root_mount_point)) @@ -444,41 +443,42 @@ def run(): # - unsupported filesystems # - non-existent sources # - missing tools for specific FS - for entry in job.configuration["unpack"]: + for entry in libcalamares.job.configuration["unpack"]: source = os.path.abspath(entry["source"]) sourcefs = entry["sourcefs"] if sourcefs not in supported_filesystems: - utils.warning("The filesystem for \"{}\" ({}) is not supported by your current kernel".format(source, sourcefs)) - utils.warning(" ... modprobe {} may solve the problem".format(sourcefs)) + libcalamares.utils.warning("The filesystem for \"{}\" ({}) is not supported by your current kernel".format(source, sourcefs)) + libcalamares.utils.warning(" ... modprobe {} may solve the problem".format(sourcefs)) return (_("Bad unsquash configuration"), _("The filesystem for \"{}\" ({}) is not supported by your current kernel").format(source, sourcefs)) if not os.path.exists(source): - utils.warning("The source filesystem \"{}\" does not exist".format(source)) + libcalamares.utils.warning("The source filesystem \"{}\" does not exist".format(source)) return (_("Bad unsquash configuration"), _("The source filesystem \"{}\" does not exist").format(source)) if sourcefs == "squashfs": if shutil.which("unsquashfs") is None: - utils.warning("Failed to find unsquashfs") + libcalamares.utils.warning("Failed to find unsquashfs") - return (_("Failed to unpack image \"{}\"").format(self.source), - _("Failed to find unsquashfs, make sure you have the squashfs-tools package installed")) + return (_("Bad unsquash configuration"), + _("Failed to find unsquashfs, make sure you have the squashfs-tools package installed.") + + " " + _("Failed to unpack image \"{}\"").format(source)) unpack = list() is_first = True - for entry in job.configuration["unpack"]: + for entry in libcalamares.job.configuration["unpack"]: source = os.path.abspath(entry["source"]) sourcefs = entry["sourcefs"] destination = os.path.abspath(root_mount_point + entry["destination"]) if not os.path.isdir(destination) and sourcefs != "file": - utils.warning(("The destination \"{}\" in the target system is not a directory").format(destination)) + libcalamares.utils.warning(("The destination \"{}\" in the target system is not a directory").format(destination)) if is_first: return (_("Bad unsquash configuration"), _("The destination \"{}\" in the target system is not a directory").format(destination)) else: - utils.debug(".. assuming that the previous targets will create that directory.") + libcalamares.utils.debug(".. assuming that the previous targets will create that directory.") unpack.append(UnpackEntry(source, sourcefs, destination)) # Optional settings