@@ -36,8 +36,6 @@ and moral support from (alphabetically by first name or nickname): | |||
- Kyle Robertze | |||
- Lisa Vitolo | |||
- n3rdopolis | |||
- Phil Mueller | |||
- Philip Mueller | |||
- Philip Müller | |||
- Ramon Buldó | |||
- Raul Rodrigo Segura |
@@ -3,6 +3,81 @@ 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.9 (2019-06-03) # | |||
This release contains contributions from (alphabetically by first name): | |||
- Kevin Kofler | |||
## Core ## | |||
No user- or deployer-visible changes. Bugfixing as usual, see the | |||
milestone for details. | |||
## Modules ## | |||
- *branding* now supports os-release variables in the *strings* section, | |||
which allows re-using (at runtime) information set in /etc/os-release . | |||
This requires KDE Frameworks 5.58. #1150 | |||
- *branding* allows the use of FreeDesktop.org icon names for the | |||
*productLogo* and *productIcon* keys. If a file is named there, then | |||
the file is used, and otherwise the icon is looked up in the current | |||
theme. #1160 | |||
- *packages* On Arch, with the `pacman` package manager, avoid a hang | |||
during system update. #1154 | |||
- *welcome* allows a custom image path or icon name to be set for the | |||
language-selection drop-down (instead of the international standard one). | |||
# 3.2.8 (2019-05-10) # | |||
This is a **source-incompatible** release of Calamares. Include files | |||
have been shuffled around, so third-party C++ modules will need | |||
adjustment to the changed names. | |||
This release contains contributions from (alphabetically by first name): | |||
- Arnaud Ferraris | |||
- Kevin Kofler | |||
## Core ## | |||
- All user-visible texts referring to "MB" and "GB" now use the standard | |||
"MiB" and "GiB" wording, which matches what we were actually calculating | |||
with (i.e. 2^20 and 2^30 respectively). #1129 | |||
- The side-pane, which shows the list of steps that will be executed, | |||
now tries to fit the text (name of each module) into the available space | |||
by shrinking the font as needed. #1137 | |||
- *libcalamares* (accidentally) linked with Qt's GUI libraries when | |||
PythonQt was found. This led to the odd situation where the non-GUI | |||
Calamares library depends on a bunch of GUI libraries. | |||
- *libcalamares* The `utils/` subdirectory has been hugely refactored, | |||
with functionality split out into separate files. C++ modules will | |||
need to have their `#include` names updated. Basically, users of | |||
`utils/CalamaresUtils.h` will need to include the header file for | |||
the functionality that is actually used. | |||
## Modules ## | |||
- *finished* has a new mechanism for configuring the behavior of the | |||
*restart now* button. The old-style boolean configuration is still | |||
supported but generates a warning. #1138 | |||
- *locale* module GeoIP configuration has a new preferred format. | |||
See `locale.conf` for details. The old configuration is still | |||
supported but will be phased out before 3.3.0 -- in particular, | |||
support for "legacy" format will be removed, since that was a | |||
crutch for the disappearance of one GeoIP provider in 2018. | |||
- *oemid* is a new module for configuring OEM phase-0 (image pre-mastering, | |||
or pre-deployment) things. It has limited functionality at the moment, | |||
writing only a single batch-identifier file. #943 | |||
- *welcome* can now do GeoIP lookups as well (but be careful with the | |||
configuration, since you need a GeoIP that provides country information, | |||
not just timezones). This will let Calamares select a starting language | |||
that matches where it is -- which might not be useful at all. #934 | |||
- All Python modules now bail out gracefully on (at least some) bad | |||
configurations, rather than raising an exception. The pre-release | |||
scripts now test for exceptions to avoid shipping modules with | |||
ImportError or SyntaxError results. | |||
# 3.2.7 (2019-04-27) # | |||
This is a **hotfix** release for regressions introduced in the |
@@ -37,7 +37,7 @@ | |||
cmake_minimum_required( VERSION 3.2 FATAL_ERROR ) | |||
project( CALAMARES | |||
VERSION 3.2.7 | |||
VERSION 3.2.9 | |||
LANGUAGES C CXX ) | |||
set( CALAMARES_VERSION_RC 0 ) # Set to 0 during release cycle, 1 during development | |||
@@ -104,19 +104,19 @@ set( CALAMARES_DESCRIPTION_SUMMARY | |||
# checks for new languages and misspelled ones are done (that is, | |||
# copy these four lines to four backup lines, add "p", and then update | |||
# the original four lines with the current translations). | |||
set( _tx_complete ast ca cs_CZ da de fr hr ja lt pl pt_BR pt_PT | |||
tr_TR zh_TW ) | |||
set( _tx_good bg en_GB es es_MX et gl he hi hu id it_IT ro ru sk sq | |||
zh_CN ) | |||
set( _tx_ok ar el es_PR eu fi_FI is ko mr nb nl sl sr | |||
sr@latin sv th uk ) | |||
set( _tx_complete ca cs_CZ da de fr he hr hu ko lt pt_BR sq tr_TR | |||
zh_TW ) | |||
set( _tx_good ast en_GB es es_MX et gl id it_IT ja nl pl pt_PT ro | |||
ru sk zh_CN ) | |||
set( _tx_ok ar bg el es_PR eu fi_FI hi is mr nb sl sr sr@latin sv | |||
th uk ) | |||
set( _tx_bad be eo fa fr_CH gu kk kn lo mk ne_NP ur uz ) | |||
### Required versions | |||
# | |||
# See DEPENDENCIES section below. | |||
set( QT_VERSION 5.10.0 ) | |||
set( QT_VERSION 5.9.0 ) | |||
set( YAMLCPP_VERSION 0.5.1 ) | |||
set( ECM_VERSION 5.18 ) | |||
set( PYTHONLIBS_VERSION 3.3 ) | |||
@@ -189,9 +189,11 @@ if( CMAKE_CXX_COMPILER_ID MATCHES "Clang" ) | |||
-Wno-exit-time-destructors | |||
-Wno-missing-prototypes | |||
-Wno-documentation-unknown-command | |||
-Wno-unknown-warning-option | |||
) | |||
string( APPEND CMAKE_CXX_FLAGS " ${CLANG_WARNINGS}" ) | |||
endforeach() | |||
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DNOTREACHED='//'" ) | |||
# Third-party code where we don't care so much about compiler warnings | |||
# (because it's uncomfortable to patch) get different flags; use | |||
@@ -202,7 +204,7 @@ if( CMAKE_CXX_COMPILER_ID MATCHES "Clang" ) | |||
set( CMAKE_CXX_FLAGS_DEBUG "-g ${CMAKE_CXX_FLAGS_DEBUG}" ) | |||
set( CMAKE_CXX_FLAGS_MINSIZEREL "-Os -DNDEBUG" ) | |||
set( CMAKE_CXX_FLAGS_RELEASE "-O4 -DNDEBUG" ) | |||
set( CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG" ) | |||
set( CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O2 -g" ) | |||
set( CMAKE_TOOLCHAIN_PREFIX "llvm-" ) | |||
@@ -210,12 +212,15 @@ if( CMAKE_CXX_COMPILER_ID MATCHES "Clang" ) | |||
set( CMAKE_SHARED_LINKER_FLAGS "-Wl,--no-undefined" ) | |||
set( CALAMARES_AUTOMOC_OPTIONS "-butils/moc-warnings.h" ) | |||
set( CALAMARES_AUTOUIC_OPTIONS --include utils/moc-warnings.h ) | |||
else() | |||
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wl,--no-undefined" ) | |||
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wl,--fatal-warnings -Wnon-virtual-dtor -Woverloaded-virtual -Werror=return-type" ) | |||
set( SUPPRESS_3RDPARTY_WARNINGS "" ) | |||
set( SUPPRESS_BOOST_WARNINGS "" ) | |||
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DNOTREACHED='__builtin_unreachable();'" ) | |||
endif() | |||
# Use mark_thirdparty_code() to reduce warnings from the compiler | |||
@@ -269,6 +274,7 @@ if( ECM_FOUND ) | |||
find_package( Qt5 COMPONENTS Test REQUIRED ) | |||
include( ECMAddTests ) | |||
endif() | |||
include(KDEInstallDirs) | |||
endif() | |||
find_package( KF5 COMPONENTS CoreAddons Crash ) |
@@ -15,6 +15,11 @@ | |||
# libboost_python-3.4.so | |||
# depending on what python's targets you selected during install | |||
# | |||
# On Fedora >= 30 instead, the boost-python3-devel provides boost library with a | |||
# name like: | |||
# libboost_python37.so | |||
# depending on what python's targets you selected during install | |||
# | |||
# find_boost_python3() tries to find the package with different component | |||
# names. By default it tries "python3", "python-py$suffix" and | |||
# "python-$dotsuffix", where suffix is based on the `python_version` argument. | |||
@@ -46,6 +51,10 @@ macro( find_boost_python3 boost_version python_version found_var ) | |||
string( REGEX REPLACE "([0-9]+)\\.([0-9]+)\\..*" "\\1\\2" _fbp_python_short_version ${python_version} ) | |||
_find_boost_python3_int( ${boost_version} python-py${_fbp_python_short_version} _fbp_found ) | |||
if (NOT _fbp_found) | |||
_find_boost_python3_int( ${boost_version} python${_fbp_python_short_version} _fbp_found ) | |||
endif() | |||
if (NOT _fbp_found) | |||
# The following loop changes the searched name for Gentoo based distributions | |||
# turns "3.4.123abc" into "3.4" |
@@ -61,11 +61,6 @@ function(calamares_add_library) | |||
include_directories(${CMAKE_CURRENT_LIST_DIR}) | |||
include_directories(${CMAKE_CURRENT_BINARY_DIR}) | |||
if(LIBRARY_UI) | |||
qt5_wrap_ui(LIBRARY_UI_SOURCES ${LIBRARY_UI}) | |||
list(APPEND LIBRARY_SOURCES ${LIBRARY_UI_SOURCES}) | |||
endif() | |||
# add resources from current dir | |||
if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/${LIBRARY_RESOURCES}") | |||
qt5_add_resources(LIBRARY_RC_SOURCES "${LIBRARY_RESOURCES}") | |||
@@ -83,7 +78,10 @@ function(calamares_add_library) | |||
endif() | |||
calamares_automoc(${target}) | |||
if(LIBRARY_UI) | |||
calamares_autouic(${target} ${LIBRARY_UI}) | |||
endif() | |||
if(LIBRARY_EXPORT_MACRO) | |||
set_target_properties(${target} PROPERTIES COMPILE_DEFINITIONS ${LIBRARY_EXPORT_MACRO}) | |||
endif() |
@@ -64,22 +64,31 @@ function( calamares_add_module_subdirectory ) | |||
set( MODULE_DESTINATION ${MODULES_DIR}/${SUBDIRECTORY} ) | |||
# Read module.desc, check that the interface type is supported. | |||
# | |||
# _mod_enabled boolean if the module should be built (only if the interface is supported) | |||
# _mod_reason is a human-readable explanation why it isn't built | |||
# _mod_testing boolean if the module should be added to the loadmodule tests | |||
file(STRINGS "${_mod_dir}/module.desc" MODULE_INTERFACE REGEX "^interface") | |||
if ( MODULE_INTERFACE MATCHES "pythonqt" ) | |||
set( _mod_enabled ${WITH_PYTHONQT} ) | |||
set( _mod_reason "No PythonQt support" ) | |||
set( _mod_testing OFF ) | |||
elseif ( MODULE_INTERFACE MATCHES "python" ) | |||
set( _mod_enabled ${WITH_PYTHON} ) | |||
set( _mod_reason "No Python support" ) | |||
set( _mod_testing ON ) # Will check syntax and imports, at least | |||
elseif ( MODULE_INTERFACE MATCHES "qtplugin" ) | |||
set( _mod_enabled OFF ) | |||
set( _mod_reason "C++ modules must have a CMakeLists.txt instead" ) | |||
set( _mod_testing OFF ) | |||
elseif ( MODULE_INTERFACE MATCHES "process" ) | |||
set( _mod_enabled ON ) | |||
set( _mod_reason "" ) | |||
set( _mod_testing OFF ) | |||
else() | |||
set( _mod_enabled OFF ) | |||
set( _mod_reason "Unknown module interface '${MODULE_INTERFACE}'" ) | |||
set( _mod_testing OFF ) | |||
endif() | |||
if ( _mod_enabled ) | |||
@@ -153,11 +162,11 @@ function( calamares_add_module_subdirectory ) | |||
# may try to do things to the running system. Needs work to make that a | |||
# safe thing to do. | |||
# | |||
# if ( BUILD_TESTING ) | |||
# add_test( | |||
# NAME load-${SUBDIRECTORY} | |||
# COMMAND loadmodule ${SUBDIRECTORY} | |||
# WORKING_DIRECTORY ${CMAKE_BINARY_DIR} | |||
# ) | |||
# endif() | |||
if ( BUILD_TESTING AND _mod_enabled AND _mod_testing ) | |||
add_test( | |||
NAME load-${SUBDIRECTORY} | |||
COMMAND loadmodule ${SUBDIRECTORY} | |||
WORKING_DIRECTORY ${CMAKE_BINARY_DIR} | |||
) | |||
endif() | |||
endfunction() |
@@ -18,7 +18,7 @@ | |||
# | |||
### | |||
# | |||
# Helper function for doing automoc on a target. | |||
# Helper function for doing automoc on a target, and autoui on a .ui file. | |||
# | |||
# Sets AUTOMOC TRUE for a target. | |||
# | |||
@@ -27,6 +27,8 @@ | |||
# libcalamares/utils/moc-warnings.h file to the moc, which in turn | |||
# reduces compiler warnings in generated MOC code. | |||
# | |||
# If the global variable CALAMARES_AUTOUIC_OPTIONS is set, adds that | |||
# to the options passed to uic. | |||
function(calamares_automoc TARGET) | |||
set_target_properties( ${TARGET} PROPERTIES AUTOMOC TRUE ) | |||
@@ -34,3 +36,12 @@ function(calamares_automoc TARGET) | |||
set_target_properties( ${TARGET} PROPERTIES AUTOMOC_MOC_OPTIONS "${CALAMARES_AUTOMOC_OPTIONS}" ) | |||
endif() | |||
endfunction() | |||
function(calamares_autouic TARGET) | |||
set_target_properties( ${TARGET} PROPERTIES AUTOUIC TRUE ) | |||
if ( CALAMARES_AUTOUIC_OPTIONS ) | |||
foreach(S ${ARGN}) | |||
set_property(SOURCE ${S} PROPERTY AUTOUIC_OPTIONS "${CALAMARES_AUTOUIC_OPTIONS}") | |||
endforeach() | |||
endif() | |||
endfunction() |
@@ -60,6 +60,8 @@ some PEP8 guidelines. | |||
* Function and class definitions have their braces on separate lines. | |||
* A function implementation's return type is on its own line. | |||
* `CamelCase.{cpp,h}` style file names. | |||
* Lambdas are preferrably indented to a 4-space tab, even when passed as an | |||
argument to functions. | |||
Example: | |||
``` |
@@ -41,8 +41,8 @@ BUILDDIR=$(mktemp -d --suffix=-build --tmpdir=.) | |||
if test "x$BUILD_DEFAULT" = "xtrue" ; then | |||
rm -rf "$BUILDDIR" | |||
mkdir "$BUILDDIR" || { echo "Could not create build directory." ; exit 1 ; } | |||
( cd "$BUILDDIR" && cmake .. && make -j4 ) || { echo "Could not perform test-build." ; exit 1 ; } | |||
( cd "$BUILDDIR" && make test ) || { echo "Tests failed." ; exit 1 ; } | |||
( cd "$BUILDDIR" && cmake .. && make -j4 ) || { echo "Could not perform test-build in $BUILDDIR." ; exit 1 ; } | |||
( cd "$BUILDDIR" && make test ) || { echo "Tests failed in $BUILDDIR." ; exit 1 ; } | |||
fi | |||
### Build with clang | |||
@@ -53,13 +53,13 @@ if test "x$BUILD_CLANG" = "xtrue" ; then | |||
# Do build again with clang | |||
rm -rf "$BUILDDIR" | |||
mkdir "$BUILDDIR" || { echo "Could not create build directory." ; exit 1 ; } | |||
( cd "$BUILDDIR" && CC=clang CXX=clang++ cmake .. && make -j4 ) || { echo "Could not perform test-build." ; exit 1 ; } | |||
( cd "$BUILDDIR" && make test ) || { echo "Tests failed." ; exit 1 ; } | |||
( cd "$BUILDDIR" && CC=clang CXX=clang++ cmake .. && make -j4 ) || { echo "Could not perform test-build in $BUILDDIR." ; exit 1 ; } | |||
( cd "$BUILDDIR" && make test ) || { echo "Tests failed in $BUILDDIR." ; exit 1 ; } | |||
fi | |||
fi | |||
if test "x$BUILD_ONLY" = "xtrue" ; then | |||
echo "Builds completed, release stopped." | |||
echo "Builds completed, release stopped. Build remains in $BUILDDIR." | |||
exit 1 | |||
fi | |||
@@ -1,14 +1,24 @@ | |||
# Configuration for the "finished" page, which is usually shown only at | |||
# the end of the installation (successful or not). | |||
--- | |||
# The finished page can hold a "restart system now" checkbox. | |||
# If this is false, no checkbox is shown and the system is not restarted | |||
# when Calamares exits. | |||
restartNowEnabled: true | |||
# Initial state of the checkbox "restart now". Only relevant when the | |||
# checkbox is shown by restartNowEnabled. | |||
restartNowChecked: false | |||
# Behavior of the "restart system now" button. | |||
# | |||
# There are four usable values: | |||
# - never | |||
# Does not show the button and does not restart. | |||
# This matches the old behavior with restartNowEnabled=false. | |||
# - user-unchecked | |||
# Shows the button, defaults to unchecked, restarts if it is checked. | |||
# This matches the old behavior with restartNowEnabled=true and restartNowChecked=false. | |||
# - user-checked | |||
# Shows the button, defaults to checked, restarts if it is checked. | |||
# This matches the old behavior with restartNowEnabled=true and restartNowChecked=true. | |||
# - always | |||
# Shows the button, checked, but the user cannot change it. | |||
# This is new behavior. | |||
# | |||
# The three combinations of legacy values are still supported. | |||
restartNowMode: user-unchecked | |||
# If the checkbox is shown, and the checkbox is checked, then when | |||
# Calamares exits from the finished-page it will run this command. |
@@ -1,3 +1,15 @@ | |||
calamares (3.2.9-1) unstable; urgency=medium | |||
* New upstream release v3.2.9 | |||
-- Alf Gaida <agaida@siduction.org> Tue, 04 Jun 2019 22:12:18 +0200 | |||
calamares (3.2.8-1) unstable; urgency=medium | |||
* New upstream release v3.2.8 | |||
-- Alf Gaida <agaida@siduction.org> Sat, 01 Jun 2019 17:59:50 +0200 | |||
calamares (3.2.7-1) unstable; urgency=medium | |||
* New Release v3.2.7 |
@@ -0,0 +1 @@ | |||
calamares_3.2.8-1_source.buildinfo utils optional |
@@ -8,7 +8,7 @@ msgid "" | |||
msgstr "" | |||
"Project-Id-Version: PACKAGE VERSION\n" | |||
"Report-Msgid-Bugs-To: \n" | |||
"POT-Creation-Date: 2019-04-24 12:03-0400\n" | |||
"POT-Creation-Date: 2019-05-10 19:18-0400\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" | |||
@@ -22,10 +22,30 @@ msgstr "" | |||
msgid "Configure GRUB." | |||
msgstr "Configure GRUB." | |||
#: src/modules/mount/main.py:36 | |||
#: src/modules/mount/main.py:38 | |||
msgid "Mounting partitions." | |||
msgstr "Mounting partitions." | |||
#: src/modules/mount/main.py:150 src/modules/initcpiocfg/main.py:187 | |||
#: src/modules/initcpiocfg/main.py:191 | |||
#: src/modules/luksopenswaphookcfg/main.py:95 | |||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 | |||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94 | |||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78 | |||
#: src/modules/openrcdmcryptcfg/main.py:82 | |||
#: src/modules/luksbootkeyfile/main.py:51 src/modules/fstab/main.py:312 | |||
#: src/modules/fstab/main.py:316 src/modules/localecfg/main.py:144 | |||
#: src/modules/networkcfg/main.py:48 | |||
msgid "Configuration Error" | |||
msgstr "Configuration Error" | |||
#: src/modules/mount/main.py:151 src/modules/initcpiocfg/main.py:188 | |||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 | |||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 | |||
#: src/modules/luksbootkeyfile/main.py:52 src/modules/fstab/main.py:313 | |||
msgid "No partitions are defined for <pre>{!s}</pre> to use." | |||
msgstr "No partitions are defined for <pre>{!s}</pre> to use." | |||
#: src/modules/services-systemd/main.py:35 | |||
msgid "Configure systemd services" | |||
msgstr "Configure systemd services" | |||
@@ -70,19 +90,19 @@ msgstr "" | |||
msgid "Unmount file systems." | |||
msgstr "Unmount file systems." | |||
#: src/modules/unpackfs/main.py:40 | |||
#: src/modules/unpackfs/main.py:41 | |||
msgid "Filling up filesystems." | |||
msgstr "Filling up filesystems." | |||
#: src/modules/unpackfs/main.py:158 | |||
#: src/modules/unpackfs/main.py:159 | |||
msgid "rsync failed with error code {}." | |||
msgstr "rsync failed with error code {}." | |||
#: src/modules/unpackfs/main.py:219 src/modules/unpackfs/main.py:237 | |||
#: src/modules/unpackfs/main.py:220 src/modules/unpackfs/main.py:238 | |||
msgid "Failed to unpack image \"{}\"" | |||
msgstr "Failed to unpack image \"{}\"" | |||
#: src/modules/unpackfs/main.py:220 | |||
#: src/modules/unpackfs/main.py:221 | |||
msgid "" | |||
"Failed to find unsquashfs, make sure you have the squashfs-tools package " | |||
"installed" | |||
@@ -90,36 +110,36 @@ msgstr "" | |||
"Failed to find unsquashfs, make sure you have the squashfs-tools package " | |||
"installed" | |||
#: src/modules/unpackfs/main.py:313 | |||
#: src/modules/unpackfs/main.py:320 | |||
msgid "No mount point for root partition" | |||
msgstr "No mount point for root partition" | |||
#: src/modules/unpackfs/main.py:314 | |||
#: src/modules/unpackfs/main.py:321 | |||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" | |||
msgstr "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" | |||
#: src/modules/unpackfs/main.py:319 | |||
#: src/modules/unpackfs/main.py:326 | |||
msgid "Bad mount point for root partition" | |||
msgstr "Bad mount point for root partition" | |||
#: src/modules/unpackfs/main.py:320 | |||
#: src/modules/unpackfs/main.py:327 | |||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" | |||
msgstr "rootMountPoint is \"{}\", which does not exist, doing nothing" | |||
#: src/modules/unpackfs/main.py:333 src/modules/unpackfs/main.py:340 | |||
#: src/modules/unpackfs/main.py:345 | |||
#: src/modules/unpackfs/main.py:340 src/modules/unpackfs/main.py:347 | |||
#: src/modules/unpackfs/main.py:352 | |||
msgid "Bad unsquash configuration" | |||
msgstr "Bad unsquash configuration" | |||
#: src/modules/unpackfs/main.py:334 | |||
#: src/modules/unpackfs/main.py:341 | |||
msgid "The filesystem for \"{}\" ({}) is not supported" | |||
msgstr "The filesystem for \"{}\" ({}) is not supported" | |||
#: src/modules/unpackfs/main.py:341 | |||
#: src/modules/unpackfs/main.py:348 | |||
msgid "The source filesystem \"{}\" does not exist" | |||
msgstr "The source filesystem \"{}\" does not exist" | |||
#: src/modules/unpackfs/main.py:346 | |||
#: src/modules/unpackfs/main.py:353 | |||
msgid "The destination \"{}\" in the target system is not a directory" | |||
msgstr "The destination \"{}\" in the target system is not a directory" | |||
@@ -183,10 +203,30 @@ msgstr "Display manager configuration was incomplete" | |||
msgid "Configuring mkinitcpio." | |||
msgstr "Configuring mkinitcpio." | |||
#: src/modules/initcpiocfg/main.py:192 | |||
#: src/modules/luksopenswaphookcfg/main.py:100 | |||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99 | |||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:317 | |||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49 | |||
msgid "No root mount point is given for <pre>{!s}</pre> to use." | |||
msgstr "No root mount point is given for <pre>{!s}</pre> to use." | |||
#: src/modules/initcpio/main.py:33 | |||
msgid "Creating initramfs with mkinitcpio." | |||
msgstr "Creating initramfs with mkinitcpio." | |||
#: src/modules/initcpio/main.py:47 | |||
msgid "Process Failed" | |||
msgstr "Process Failed" | |||
#: src/modules/initcpio/main.py:48 | |||
msgid "" | |||
"Process <pre>mkinitcpio</pre> failed with error code {!s}. The command was " | |||
"<pre>{!s}</pre>." | |||
msgstr "" | |||
"Process <pre>mkinitcpio</pre> failed with error code {!s}. The command was " | |||
"<pre>{!s}</pre>." | |||
#: src/modules/luksopenswaphookcfg/main.py:35 | |||
msgid "Configuring encrypted swap." | |||
msgstr "Configuring encrypted swap." | |||
@@ -276,7 +316,7 @@ msgid_plural "Removing %(num)d packages." | |||
msgstr[0] "Removing one package." | |||
msgstr[1] "Removing %(num)d packages." | |||
#: src/modules/bootloader/main.py:48 | |||
#: src/modules/bootloader/main.py:51 | |||
msgid "Install bootloader." | |||
msgstr "Install bootloader." | |||
@@ -320,11 +360,11 @@ msgstr "Configuring OpenRC dmcrypt service." | |||
msgid "Configuring LUKS key file." | |||
msgstr "Configuring LUKS key file." | |||
#: src/modules/luksbootkeyfile/main.py:69 | |||
#: src/modules/luksbootkeyfile/main.py:74 | |||
msgid "Encrypted rootfs setup error" | |||
msgstr "Encrypted rootfs setup error" | |||
#: src/modules/luksbootkeyfile/main.py:70 | |||
#: src/modules/luksbootkeyfile/main.py:75 | |||
msgid "Rootfs partition {!s} is LUKS but no passphrase found." | |||
msgstr "Rootfs partition {!s} is LUKS but no passphrase found." | |||
@@ -340,7 +380,7 @@ msgstr "Dummy python job." | |||
msgid "Dummy python step {}" | |||
msgstr "Dummy python step {}" | |||
#: src/modules/localecfg/main.py:37 | |||
#: src/modules/localecfg/main.py:39 | |||
msgid "Configuring locales." | |||
msgstr "Configuring locales." | |||
@@ -11,7 +11,7 @@ msgid "" | |||
msgstr "" | |||
"Project-Id-Version: PACKAGE VERSION\n" | |||
"Report-Msgid-Bugs-To: \n" | |||
"POT-Creation-Date: 2019-04-24 12:03-0400\n" | |||
"POT-Creation-Date: 2019-05-10 19:18-0400\n" | |||
"PO-Revision-Date: 2017-08-09 10:34+0000\n" | |||
"Last-Translator: Abubakaragoub Y <Abubakaryagob@gmail.com>, 2018\n" | |||
"Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n" | |||
@@ -25,10 +25,30 @@ msgstr "" | |||
msgid "Configure GRUB." | |||
msgstr "" | |||
#: src/modules/mount/main.py:36 | |||
#: src/modules/mount/main.py:38 | |||
msgid "Mounting partitions." | |||
msgstr "" | |||
#: src/modules/mount/main.py:150 src/modules/initcpiocfg/main.py:187 | |||
#: src/modules/initcpiocfg/main.py:191 | |||
#: src/modules/luksopenswaphookcfg/main.py:95 | |||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 | |||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94 | |||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78 | |||
#: src/modules/openrcdmcryptcfg/main.py:82 | |||
#: src/modules/luksbootkeyfile/main.py:51 src/modules/fstab/main.py:312 | |||
#: src/modules/fstab/main.py:316 src/modules/localecfg/main.py:144 | |||
#: src/modules/networkcfg/main.py:48 | |||
msgid "Configuration Error" | |||
msgstr "" | |||
#: src/modules/mount/main.py:151 src/modules/initcpiocfg/main.py:188 | |||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 | |||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 | |||
#: src/modules/luksbootkeyfile/main.py:52 src/modules/fstab/main.py:313 | |||
msgid "No partitions are defined for <pre>{!s}</pre> to use." | |||
msgstr "" | |||
#: src/modules/services-systemd/main.py:35 | |||
msgid "Configure systemd services" | |||
msgstr "" | |||
@@ -70,54 +90,54 @@ msgstr "" | |||
msgid "Unmount file systems." | |||
msgstr "الغاء تحميل ملف النظام" | |||
#: src/modules/unpackfs/main.py:40 | |||
#: src/modules/unpackfs/main.py:41 | |||
msgid "Filling up filesystems." | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:158 | |||
#: src/modules/unpackfs/main.py:159 | |||
msgid "rsync failed with error code {}." | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:219 src/modules/unpackfs/main.py:237 | |||
#: src/modules/unpackfs/main.py:220 src/modules/unpackfs/main.py:238 | |||
msgid "Failed to unpack image \"{}\"" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:220 | |||
#: src/modules/unpackfs/main.py:221 | |||
msgid "" | |||
"Failed to find unsquashfs, make sure you have the squashfs-tools package " | |||
"installed" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:313 | |||
#: src/modules/unpackfs/main.py:320 | |||
msgid "No mount point for root partition" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:314 | |||
#: src/modules/unpackfs/main.py:321 | |||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:319 | |||
#: src/modules/unpackfs/main.py:326 | |||
msgid "Bad mount point for root partition" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:320 | |||
#: src/modules/unpackfs/main.py:327 | |||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:333 src/modules/unpackfs/main.py:340 | |||
#: src/modules/unpackfs/main.py:345 | |||
#: src/modules/unpackfs/main.py:340 src/modules/unpackfs/main.py:347 | |||
#: src/modules/unpackfs/main.py:352 | |||
msgid "Bad unsquash configuration" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:334 | |||
#: src/modules/unpackfs/main.py:341 | |||
msgid "The filesystem for \"{}\" ({}) is not supported" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:341 | |||
#: src/modules/unpackfs/main.py:348 | |||
msgid "The source filesystem \"{}\" does not exist" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:346 | |||
#: src/modules/unpackfs/main.py:353 | |||
msgid "The destination \"{}\" in the target system is not a directory" | |||
msgstr "" | |||
@@ -179,10 +199,28 @@ msgstr "" | |||
msgid "Configuring mkinitcpio." | |||
msgstr "" | |||
#: src/modules/initcpiocfg/main.py:192 | |||
#: src/modules/luksopenswaphookcfg/main.py:100 | |||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99 | |||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:317 | |||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49 | |||
msgid "No root mount point is given for <pre>{!s}</pre> to use." | |||
msgstr "" | |||
#: src/modules/initcpio/main.py:33 | |||
msgid "Creating initramfs with mkinitcpio." | |||
msgstr "" | |||
#: src/modules/initcpio/main.py:47 | |||
msgid "Process Failed" | |||
msgstr "" | |||
#: src/modules/initcpio/main.py:48 | |||
msgid "" | |||
"Process <pre>mkinitcpio</pre> failed with error code {!s}. The command was " | |||
"<pre>{!s}</pre>." | |||
msgstr "" | |||
#: src/modules/luksopenswaphookcfg/main.py:35 | |||
msgid "Configuring encrypted swap." | |||
msgstr "" | |||
@@ -273,7 +311,7 @@ msgstr[3] "" | |||
msgstr[4] "" | |||
msgstr[5] "" | |||
#: src/modules/bootloader/main.py:48 | |||
#: src/modules/bootloader/main.py:51 | |||
msgid "Install bootloader." | |||
msgstr "" | |||
@@ -317,11 +355,11 @@ msgstr "" | |||
msgid "Configuring LUKS key file." | |||
msgstr "" | |||
#: src/modules/luksbootkeyfile/main.py:69 | |||
#: src/modules/luksbootkeyfile/main.py:74 | |||
msgid "Encrypted rootfs setup error" | |||
msgstr "" | |||
#: src/modules/luksbootkeyfile/main.py:70 | |||
#: src/modules/luksbootkeyfile/main.py:75 | |||
msgid "Rootfs partition {!s} is LUKS but no passphrase found." | |||
msgstr "" | |||
@@ -337,7 +375,7 @@ msgstr "عملية بايثون دميه" | |||
msgid "Dummy python step {}" | |||
msgstr "عملية دميه خطوه بايثون {}" | |||
#: src/modules/localecfg/main.py:37 | |||
#: src/modules/localecfg/main.py:39 | |||
msgid "Configuring locales." | |||
msgstr "" | |||
@@ -11,7 +11,7 @@ msgid "" | |||
msgstr "" | |||
"Project-Id-Version: PACKAGE VERSION\n" | |||
"Report-Msgid-Bugs-To: \n" | |||
"POT-Creation-Date: 2019-04-24 12:03-0400\n" | |||
"POT-Creation-Date: 2019-05-10 19:18-0400\n" | |||
"PO-Revision-Date: 2017-08-09 10:34+0000\n" | |||
"Last-Translator: enolp <enolp@softastur.org>, 2019\n" | |||
"Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n" | |||
@@ -25,10 +25,30 @@ msgstr "" | |||
msgid "Configure GRUB." | |||
msgstr "" | |||
#: src/modules/mount/main.py:36 | |||
#: src/modules/mount/main.py:38 | |||
msgid "Mounting partitions." | |||
msgstr "" | |||
#: src/modules/mount/main.py:150 src/modules/initcpiocfg/main.py:187 | |||
#: src/modules/initcpiocfg/main.py:191 | |||
#: src/modules/luksopenswaphookcfg/main.py:95 | |||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 | |||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94 | |||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78 | |||
#: src/modules/openrcdmcryptcfg/main.py:82 | |||
#: src/modules/luksbootkeyfile/main.py:51 src/modules/fstab/main.py:312 | |||
#: src/modules/fstab/main.py:316 src/modules/localecfg/main.py:144 | |||
#: src/modules/networkcfg/main.py:48 | |||
msgid "Configuration Error" | |||
msgstr "" | |||
#: src/modules/mount/main.py:151 src/modules/initcpiocfg/main.py:188 | |||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 | |||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 | |||
#: src/modules/luksbootkeyfile/main.py:52 src/modules/fstab/main.py:313 | |||
msgid "No partitions are defined for <pre>{!s}</pre> to use." | |||
msgstr "" | |||
#: src/modules/services-systemd/main.py:35 | |||
msgid "Configure systemd services" | |||
msgstr "" | |||
@@ -70,19 +90,19 @@ msgstr "" | |||
msgid "Unmount file systems." | |||
msgstr "Desmontaxe de sistemes de ficheros." | |||
#: src/modules/unpackfs/main.py:40 | |||
#: src/modules/unpackfs/main.py:41 | |||
msgid "Filling up filesystems." | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:158 | |||
#: src/modules/unpackfs/main.py:159 | |||
msgid "rsync failed with error code {}." | |||
msgstr "rsync falló col códigu de fallu {}." | |||
#: src/modules/unpackfs/main.py:219 src/modules/unpackfs/main.py:237 | |||
#: src/modules/unpackfs/main.py:220 src/modules/unpackfs/main.py:238 | |||
msgid "Failed to unpack image \"{}\"" | |||
msgstr "Fallu al desempaquetar la imaxe «{}»" | |||
#: src/modules/unpackfs/main.py:220 | |||
#: src/modules/unpackfs/main.py:221 | |||
msgid "" | |||
"Failed to find unsquashfs, make sure you have the squashfs-tools package " | |||
"installed" | |||
@@ -90,37 +110,37 @@ msgstr "" | |||
"Fallu al alcontrar unsquashfs, asegúrate que tienes instaláu'l paquete " | |||
"squashfs-tools" | |||
#: src/modules/unpackfs/main.py:313 | |||
#: src/modules/unpackfs/main.py:320 | |||
msgid "No mount point for root partition" | |||
msgstr "Nun hai un puntu de montaxe pa la partición del raigañu" | |||
#: src/modules/unpackfs/main.py:314 | |||
#: src/modules/unpackfs/main.py:321 | |||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" | |||
msgstr "" | |||
"globalstorage nun contién una clave «rootMountPoint». Nun va facese nada" | |||
#: src/modules/unpackfs/main.py:319 | |||
#: src/modules/unpackfs/main.py:326 | |||
msgid "Bad mount point for root partition" | |||
msgstr "El puntu de montaxe ye incorreutu pa la partición del raigañu" | |||
#: src/modules/unpackfs/main.py:320 | |||
#: src/modules/unpackfs/main.py:327 | |||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" | |||
msgstr "rootMountPoint ye «{}» que nun esiste. Nun va facese nada" | |||
#: src/modules/unpackfs/main.py:333 src/modules/unpackfs/main.py:340 | |||
#: src/modules/unpackfs/main.py:345 | |||
#: src/modules/unpackfs/main.py:340 src/modules/unpackfs/main.py:347 | |||
#: src/modules/unpackfs/main.py:352 | |||
msgid "Bad unsquash configuration" | |||
msgstr "La configuración d'espardimientu ye incorreuta" | |||
#: src/modules/unpackfs/main.py:334 | |||
#: src/modules/unpackfs/main.py:341 | |||
msgid "The filesystem for \"{}\" ({}) is not supported" | |||
msgstr "El sistema de ficheros pa «{}» ({}) nun ta sofitáu" | |||
#: src/modules/unpackfs/main.py:341 | |||
#: src/modules/unpackfs/main.py:348 | |||
msgid "The source filesystem \"{}\" does not exist" | |||
msgstr "El sistema de ficheros d'orixe «{}» nun esiste" | |||
#: src/modules/unpackfs/main.py:346 | |||
#: src/modules/unpackfs/main.py:353 | |||
msgid "The destination \"{}\" in the target system is not a directory" | |||
msgstr "El destín «{}» nel sistema de destín nun ye un direutoriu" | |||
@@ -182,15 +202,33 @@ msgstr "La configuración del xestor de pantalles nun se completó" | |||
#: src/modules/initcpiocfg/main.py:36 | |||
msgid "Configuring mkinitcpio." | |||
msgstr "Configurando mkinitcpio." | |||
#: src/modules/initcpiocfg/main.py:192 | |||
#: src/modules/luksopenswaphookcfg/main.py:100 | |||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99 | |||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:317 | |||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49 | |||
msgid "No root mount point is given for <pre>{!s}</pre> to use." | |||
msgstr "" | |||
#: src/modules/initcpio/main.py:33 | |||
msgid "Creating initramfs with mkinitcpio." | |||
msgstr "" | |||
#: src/modules/initcpio/main.py:47 | |||
msgid "Process Failed" | |||
msgstr "" | |||
#: src/modules/initcpio/main.py:48 | |||
msgid "" | |||
"Process <pre>mkinitcpio</pre> failed with error code {!s}. The command was " | |||
"<pre>{!s}</pre>." | |||
msgstr "" | |||
#: src/modules/luksopenswaphookcfg/main.py:35 | |||
msgid "Configuring encrypted swap." | |||
msgstr "" | |||
msgstr "Configurando l'intercambéu cifráu." | |||
#: src/modules/rawfs/main.py:35 | |||
msgid "Installing data." | |||
@@ -271,7 +309,7 @@ msgid_plural "Removing %(num)d packages." | |||
msgstr[0] "Desaniciando un paquete." | |||
msgstr[1] "Desaniciando %(num)d paquetes." | |||
#: src/modules/bootloader/main.py:48 | |||
#: src/modules/bootloader/main.py:51 | |||
msgid "Install bootloader." | |||
msgstr "" | |||
@@ -289,11 +327,11 @@ msgstr "" | |||
#: src/modules/initramfs/main.py:50 src/modules/dracut/main.py:59 | |||
msgid "The exit code was {}" | |||
msgstr "" | |||
msgstr "El códigu de salida foi {}" | |||
#: src/modules/hwclock/main.py:35 | |||
msgid "Setting hardware clock." | |||
msgstr "" | |||
msgstr "Configurando'l reló de hardware." | |||
#: src/modules/dracut/main.py:36 | |||
msgid "Creating initramfs with dracut." | |||
@@ -309,17 +347,17 @@ msgstr "" | |||
#: src/modules/openrcdmcryptcfg/main.py:34 | |||
msgid "Configuring OpenRC dmcrypt service." | |||
msgstr "" | |||
msgstr "Configurando'l serviciu dmcrypt d'OpenRC." | |||
#: src/modules/luksbootkeyfile/main.py:35 | |||
msgid "Configuring LUKS key file." | |||
msgstr "" | |||
#: src/modules/luksbootkeyfile/main.py:69 | |||
#: src/modules/luksbootkeyfile/main.py:74 | |||
msgid "Encrypted rootfs setup error" | |||
msgstr "" | |||
#: src/modules/luksbootkeyfile/main.py:70 | |||
#: src/modules/luksbootkeyfile/main.py:75 | |||
msgid "Rootfs partition {!s} is LUKS but no passphrase found." | |||
msgstr "" | |||
@@ -335,9 +373,9 @@ msgstr "Trabayu maniquín en Python." | |||
msgid "Dummy python step {}" | |||
msgstr "Pasu maniquín {} en Python" | |||
#: src/modules/localecfg/main.py:37 | |||
#: src/modules/localecfg/main.py:39 | |||
msgid "Configuring locales." | |||
msgstr "" | |||
msgstr "Configurando locales." | |||
#: src/modules/networkcfg/main.py:37 | |||
msgid "Saving network configuration." |
@@ -8,7 +8,7 @@ msgid "" | |||
msgstr "" | |||
"Project-Id-Version: PACKAGE VERSION\n" | |||
"Report-Msgid-Bugs-To: \n" | |||
"POT-Creation-Date: 2019-04-24 12:03-0400\n" | |||
"POT-Creation-Date: 2019-05-10 19:18-0400\n" | |||
"PO-Revision-Date: 2017-08-09 10:34+0000\n" | |||
"Language-Team: Belarusian (https://www.transifex.com/calamares/teams/20061/be/)\n" | |||
"MIME-Version: 1.0\n" | |||
@@ -21,10 +21,30 @@ msgstr "" | |||
msgid "Configure GRUB." | |||
msgstr "" | |||
#: src/modules/mount/main.py:36 | |||
#: src/modules/mount/main.py:38 | |||
msgid "Mounting partitions." | |||
msgstr "" | |||
#: src/modules/mount/main.py:150 src/modules/initcpiocfg/main.py:187 | |||
#: src/modules/initcpiocfg/main.py:191 | |||
#: src/modules/luksopenswaphookcfg/main.py:95 | |||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 | |||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94 | |||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78 | |||
#: src/modules/openrcdmcryptcfg/main.py:82 | |||
#: src/modules/luksbootkeyfile/main.py:51 src/modules/fstab/main.py:312 | |||
#: src/modules/fstab/main.py:316 src/modules/localecfg/main.py:144 | |||
#: src/modules/networkcfg/main.py:48 | |||
msgid "Configuration Error" | |||
msgstr "" | |||
#: src/modules/mount/main.py:151 src/modules/initcpiocfg/main.py:188 | |||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 | |||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 | |||
#: src/modules/luksbootkeyfile/main.py:52 src/modules/fstab/main.py:313 | |||
msgid "No partitions are defined for <pre>{!s}</pre> to use." | |||
msgstr "" | |||
#: src/modules/services-systemd/main.py:35 | |||
msgid "Configure systemd services" | |||
msgstr "" | |||
@@ -66,54 +86,54 @@ msgstr "" | |||
msgid "Unmount file systems." | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:40 | |||
#: src/modules/unpackfs/main.py:41 | |||
msgid "Filling up filesystems." | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:158 | |||
#: src/modules/unpackfs/main.py:159 | |||
msgid "rsync failed with error code {}." | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:219 src/modules/unpackfs/main.py:237 | |||
#: src/modules/unpackfs/main.py:220 src/modules/unpackfs/main.py:238 | |||
msgid "Failed to unpack image \"{}\"" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:220 | |||
#: src/modules/unpackfs/main.py:221 | |||
msgid "" | |||
"Failed to find unsquashfs, make sure you have the squashfs-tools package " | |||
"installed" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:313 | |||
#: src/modules/unpackfs/main.py:320 | |||
msgid "No mount point for root partition" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:314 | |||
#: src/modules/unpackfs/main.py:321 | |||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:319 | |||
#: src/modules/unpackfs/main.py:326 | |||
msgid "Bad mount point for root partition" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:320 | |||
#: src/modules/unpackfs/main.py:327 | |||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:333 src/modules/unpackfs/main.py:340 | |||
#: src/modules/unpackfs/main.py:345 | |||
#: src/modules/unpackfs/main.py:340 src/modules/unpackfs/main.py:347 | |||
#: src/modules/unpackfs/main.py:352 | |||
msgid "Bad unsquash configuration" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:334 | |||
#: src/modules/unpackfs/main.py:341 | |||
msgid "The filesystem for \"{}\" ({}) is not supported" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:341 | |||
#: src/modules/unpackfs/main.py:348 | |||
msgid "The source filesystem \"{}\" does not exist" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:346 | |||
#: src/modules/unpackfs/main.py:353 | |||
msgid "The destination \"{}\" in the target system is not a directory" | |||
msgstr "" | |||
@@ -175,10 +195,28 @@ msgstr "" | |||
msgid "Configuring mkinitcpio." | |||
msgstr "" | |||
#: src/modules/initcpiocfg/main.py:192 | |||
#: src/modules/luksopenswaphookcfg/main.py:100 | |||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99 | |||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:317 | |||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49 | |||
msgid "No root mount point is given for <pre>{!s}</pre> to use." | |||
msgstr "" | |||
#: src/modules/initcpio/main.py:33 | |||
msgid "Creating initramfs with mkinitcpio." | |||
msgstr "" | |||
#: src/modules/initcpio/main.py:47 | |||
msgid "Process Failed" | |||
msgstr "" | |||
#: src/modules/initcpio/main.py:48 | |||
msgid "" | |||
"Process <pre>mkinitcpio</pre> failed with error code {!s}. The command was " | |||
"<pre>{!s}</pre>." | |||
msgstr "" | |||
#: src/modules/luksopenswaphookcfg/main.py:35 | |||
msgid "Configuring encrypted swap." | |||
msgstr "" | |||
@@ -265,7 +303,7 @@ msgstr[1] "" | |||
msgstr[2] "" | |||
msgstr[3] "" | |||
#: src/modules/bootloader/main.py:48 | |||
#: src/modules/bootloader/main.py:51 | |||
msgid "Install bootloader." | |||
msgstr "" | |||
@@ -309,11 +347,11 @@ msgstr "" | |||
msgid "Configuring LUKS key file." | |||
msgstr "" | |||
#: src/modules/luksbootkeyfile/main.py:69 | |||
#: src/modules/luksbootkeyfile/main.py:74 | |||
msgid "Encrypted rootfs setup error" | |||
msgstr "" | |||
#: src/modules/luksbootkeyfile/main.py:70 | |||
#: src/modules/luksbootkeyfile/main.py:75 | |||
msgid "Rootfs partition {!s} is LUKS but no passphrase found." | |||
msgstr "" | |||
@@ -329,7 +367,7 @@ msgstr "" | |||
msgid "Dummy python step {}" | |||
msgstr "" | |||
#: src/modules/localecfg/main.py:37 | |||
#: src/modules/localecfg/main.py:39 | |||
msgid "Configuring locales." | |||
msgstr "" | |||
@@ -11,7 +11,7 @@ msgid "" | |||
msgstr "" | |||
"Project-Id-Version: PACKAGE VERSION\n" | |||
"Report-Msgid-Bugs-To: \n" | |||
"POT-Creation-Date: 2019-04-24 12:03-0400\n" | |||
"POT-Creation-Date: 2019-05-10 19:18-0400\n" | |||
"PO-Revision-Date: 2017-08-09 10:34+0000\n" | |||
"Last-Translator: Georgi Georgiev <georgiev_1994@abv.bg>, 2018\n" | |||
"Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n" | |||
@@ -25,10 +25,30 @@ msgstr "" | |||
msgid "Configure GRUB." | |||
msgstr "" | |||
#: src/modules/mount/main.py:36 | |||
#: src/modules/mount/main.py:38 | |||
msgid "Mounting partitions." | |||
msgstr "" | |||
#: src/modules/mount/main.py:150 src/modules/initcpiocfg/main.py:187 | |||
#: src/modules/initcpiocfg/main.py:191 | |||
#: src/modules/luksopenswaphookcfg/main.py:95 | |||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 | |||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94 | |||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78 | |||
#: src/modules/openrcdmcryptcfg/main.py:82 | |||
#: src/modules/luksbootkeyfile/main.py:51 src/modules/fstab/main.py:312 | |||
#: src/modules/fstab/main.py:316 src/modules/localecfg/main.py:144 | |||
#: src/modules/networkcfg/main.py:48 | |||
msgid "Configuration Error" | |||
msgstr "" | |||
#: src/modules/mount/main.py:151 src/modules/initcpiocfg/main.py:188 | |||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 | |||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 | |||
#: src/modules/luksbootkeyfile/main.py:52 src/modules/fstab/main.py:313 | |||
msgid "No partitions are defined for <pre>{!s}</pre> to use." | |||
msgstr "" | |||
#: src/modules/services-systemd/main.py:35 | |||
msgid "Configure systemd services" | |||
msgstr "" | |||
@@ -70,54 +90,54 @@ msgstr "" | |||
msgid "Unmount file systems." | |||
msgstr "Демонтирай файловите системи." | |||
#: src/modules/unpackfs/main.py:40 | |||
#: src/modules/unpackfs/main.py:41 | |||
msgid "Filling up filesystems." | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:158 | |||
#: src/modules/unpackfs/main.py:159 | |||
msgid "rsync failed with error code {}." | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:219 src/modules/unpackfs/main.py:237 | |||
#: src/modules/unpackfs/main.py:220 src/modules/unpackfs/main.py:238 | |||
msgid "Failed to unpack image \"{}\"" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:220 | |||
#: src/modules/unpackfs/main.py:221 | |||
msgid "" | |||
"Failed to find unsquashfs, make sure you have the squashfs-tools package " | |||
"installed" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:313 | |||
#: src/modules/unpackfs/main.py:320 | |||
msgid "No mount point for root partition" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:314 | |||
#: src/modules/unpackfs/main.py:321 | |||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:319 | |||
#: src/modules/unpackfs/main.py:326 | |||
msgid "Bad mount point for root partition" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:320 | |||
#: src/modules/unpackfs/main.py:327 | |||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:333 src/modules/unpackfs/main.py:340 | |||
#: src/modules/unpackfs/main.py:345 | |||
#: src/modules/unpackfs/main.py:340 src/modules/unpackfs/main.py:347 | |||
#: src/modules/unpackfs/main.py:352 | |||
msgid "Bad unsquash configuration" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:334 | |||
#: src/modules/unpackfs/main.py:341 | |||
msgid "The filesystem for \"{}\" ({}) is not supported" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:341 | |||
#: src/modules/unpackfs/main.py:348 | |||
msgid "The source filesystem \"{}\" does not exist" | |||
msgstr "" | |||
#: src/modules/unpackfs/main.py:346 | |||
#: src/modules/unpackfs/main.py:353 | |||
msgid "The destination \"{}\" in the target system is not a directory" | |||
msgstr "" | |||
@@ -179,10 +199,28 @@ msgstr "" | |||
msgid "Configuring mkinitcpio." | |||
msgstr "" | |||
#: src/modules/initcpiocfg/main.py:192 | |||
#: src/modules/luksopenswaphookcfg/main.py:100 | |||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99 | |||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:317 | |||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49 | |||
msgid "No root mount point is given for <pre>{!s}</pre> to use." | |||
msgstr "" | |||
#: src/modules/initcpio/main.py:33 | |||
msgid "Creating initramfs with mkinitcpio." | |||
msgstr "" | |||
#: src/modules/initcpio/main.py:47 | |||
msgid "Process Failed" | |||
msgstr "" | |||
#: src/modules/initcpio/main.py:48 | |||
msgid "" | |||
"Process <pre>mkinitcpio</pre> failed with error code {!s}. The command was " | |||
"<pre>{!s}</pre>." | |||
msgstr "" | |||
#: src/modules/luksopenswaphookcfg/main.py:35 | |||
msgid "Configuring encrypted swap." | |||
msgstr "" | |||
@@ -265,7 +303,7 @@ msgid_plural "Removing %(num)d packages." | |||
msgstr[0] "Премахване на един пакет." | |||
msgstr[1] "Премахване на %(num)d пакети." | |||
#: src/modules/bootloader/main.py:48 | |||
#: src/modules/bootloader/main.py:51 | |||
msgid "Install bootloader." | |||
msgstr "" | |||
@@ -309,11 +347,11 @@ msgstr "" | |||
msgid "Configuring LUKS key file." | |||
msgstr "" | |||
#: src/modules/luksbootkeyfile/main.py:69 | |||
#: src/modules/luksbootkeyfile/main.py:74 | |||
msgid "Encrypted rootfs setup error" | |||
msgstr "" | |||
#: src/modules/luksbootkeyfile/main.py:70 | |||
#: src/modules/luksbootkeyfile/main.py:75 | |||
msgid "Rootfs partition {!s} is LUKS but no passphrase found." | |||
msgstr "" | |||
@@ -329,7 +367,7 @@ msgstr "Фиктивна задача python." | |||
msgid "Dummy python step {}" | |||
msgstr "Фиктивна стъпка на python {}" | |||
#: src/modules/localecfg/main.py:37 | |||
#: src/modules/localecfg/main.py:39 | |||
msgid "Configuring locales." | |||
msgstr "" | |||
@@ -11,7 +11,7 @@ msgid "" | |||
msgstr "" | |||
"Project-Id-Version: PACKAGE VERSION\n" | |||
"Report-Msgid-Bugs-To: \n" | |||
"POT-Creation-Date: 2019-04-24 12:03-0400\n" | |||
"POT-Creation-Date: 2019-05-10 19:18-0400\n" | |||
"PO-Revision-Date: 2017-08-09 10:34+0000\n" | |||
"Last-Translator: Davidmp <medipas@gmail.com>, 2019\n" | |||
"Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n" | |||
@@ -25,10 +25,30 @@ msgstr "" | |||
msgid "Configure GRUB." | |||
msgstr "Configura el GRUB." | |||
#: src/modules/mount/main.py:36 | |||
#: src/modules/mount/main.py:38 | |||
msgid "Mounting partitions." | |||
msgstr "Es munten les particions." | |||
#: src/modules/mount/main.py:150 src/modules/initcpiocfg/main.py:187 | |||
#: src/modules/initcpiocfg/main.py:191 | |||
#: src/modules/luksopenswaphookcfg/main.py:95 | |||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 | |||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94 | |||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78 | |||
#: src/modules/openrcdmcryptcfg/main.py:82 | |||
#: src/modules/luksbootkeyfile/main.py:51 src/modules/fstab/main.py:312 | |||
#: src/modules/fstab/main.py:316 src/modules/localecfg/main.py:144 | |||
#: src/modules/networkcfg/main.py:48 | |||
msgid "Configuration Error" | |||
msgstr "Error de configuració" | |||
#: src/modules/mount/main.py:151 src/modules/initcpiocfg/main.py:188 | |||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 | |||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 | |||
#: src/modules/luksbootkeyfile/main.py:52 src/modules/fstab/main.py:313 | |||
msgid "No partitions are defined for <pre>{!s}</pre> to use." | |||
msgstr "No s'han definit particions perquè les usi <pre>{!s}</pre>." | |||
#: src/modules/services-systemd/main.py:35 | |||
msgid "Configure systemd services" | |||
msgstr "Configura els serveis de systemd" | |||
@@ -74,19 +94,19 @@ msgstr "" | |||
msgid "Unmount file systems." | |||
msgstr "Desmunta els sistemes de fitxers." | |||
#: src/modules/unpackfs/main.py:40 | |||
#: src/modules/unpackfs/main.py:41 | |||
msgid "Filling up filesystems." | |||
msgstr "S'omplen els sistemes de fitxers." | |||
#: src/modules/unpackfs/main.py:158 | |||
#: src/modules/unpackfs/main.py:159 | |||
msgid "rsync failed with error code {}." | |||
msgstr "Ha fallat rsync amb el codi d'error {}." | |||
#: src/modules/unpackfs/main.py:219 src/modules/unpackfs/main.py:237 | |||
#: src/modules/unpackfs/main.py:220 src/modules/unpackfs/main.py:238 | |||
msgid "Failed to unpack image \"{}\"" | |||
msgstr "Ha fallat desempaquetar la imatge \"{}\"." | |||
#: src/modules/unpackfs/main.py:220 | |||
#: src/modules/unpackfs/main.py:221 | |||
msgid "" | |||
"Failed to find unsquashfs, make sure you have the squashfs-tools package " | |||
"installed" | |||
@@ -94,36 +114,36 @@ msgstr "" | |||
"Ha fallat trobar unsquashfs, assegureu-vos que tingueu el paquet squashfs-" | |||
"tools instal·lat." | |||
#: src/modules/unpackfs/main.py:313 | |||
#: src/modules/unpackfs/main.py:320 | |||
msgid "No mount point for root partition" | |||
msgstr "No hi ha punt de muntatge per a la partició d'arrel." | |||
#: src/modules/unpackfs/main.py:314 | |||
#: src/modules/unpackfs/main.py:321 | |||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" | |||
msgstr "globalstorage no conté cap clau \"rootMountPoint\". No es fa res." | |||
#: src/modules/unpackfs/main.py:319 | |||
#: src/modules/unpackfs/main.py:326 | |||
msgid "Bad mount point for root partition" | |||
msgstr "Punt de muntatge incorrecte per a la partició d'arrel" | |||
#: src/modules/unpackfs/main.py:320 | |||
#: src/modules/unpackfs/main.py:327 | |||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" | |||
msgstr "El punt de muntatge d'arrel és \"{}\", que no existeix. No es fa res." | |||
#: src/modules/unpackfs/main.py:333 src/modules/unpackfs/main.py:340 | |||
#: src/modules/unpackfs/main.py:345 | |||
#: src/modules/unpackfs/main.py:340 src/modules/unpackfs/main.py:347 | |||
#: src/modules/unpackfs/main.py:352 | |||
msgid "Bad unsquash configuration" | |||
msgstr "Configuració incorrecta d'unsquash." | |||
#: src/modules/unpackfs/main.py:334 | |||
#: src/modules/unpackfs/main.py:341 | |||
msgid "The filesystem for \"{}\" ({}) is not supported" | |||
msgstr "El sistema de fitxers per a \"{}\" ({}) no s'admet." | |||
#: src/modules/unpackfs/main.py:341 | |||
#: src/modules/unpackfs/main.py:348 | |||
msgid "The source filesystem \"{}\" does not exist" | |||
msgstr "El sistema de fitxers font \"{}\" no existeix." | |||
#: src/modules/unpackfs/main.py:346 | |||
#: src/modules/unpackfs/main.py:353 | |||
msgid "The destination \"{}\" in the target system is not a directory" | |||
msgstr "La destinació \"{}\" al sistema de destinació no és un directori." | |||
@@ -188,10 +208,31 @@ msgstr "La configuració del gestor de pantalla no era completa." | |||
msgid "Configuring mkinitcpio." | |||
msgstr "Es configura mkinitcpio." | |||
#: src/modules/initcpiocfg/main.py:192 | |||
#: src/modules/luksopenswaphookcfg/main.py:100 | |||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99 | |||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:317 | |||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49 | |||
msgid "No root mount point is given for <pre>{!s}</pre> to use." | |||
msgstr "" | |||
"No s'ha proporcionat el punt de muntatge perquè l'usi <pre>{!s}</pre>." | |||
#: src/modules/initcpio/main.py:33 | |||
msgid "Creating initramfs with mkinitcpio." | |||
msgstr "Es creen initramfs amb mkinitcpio." | |||
#: src/modules/initcpio/main.py:47 | |||
msgid "Process Failed" | |||
msgstr "Ha fallat el procés." | |||
#: src/modules/initcpio/main.py:48 | |||
msgid "" | |||
"Process <pre>mkinitcpio</pre> failed with error code {!s}. The command was " | |||
"<pre>{!s}</pre>." | |||
msgstr "" | |||
"El procés <pre>mkinitcpio</pre> ha fallat amb el codi d'error {!s}. L'ordre " | |||
"era <pre>{!s}</pre>." | |||
#: src/modules/luksopenswaphookcfg/main.py:35 | |||
msgid "Configuring encrypted swap." | |||
msgstr "Es configura l'intercanvi encriptat." | |||
@@ -282,7 +323,7 @@ msgid_plural "Removing %(num)d packages." | |||
msgstr[0] "Se suprimeix un paquet." | |||
msgstr[1] "Se suprimeixen %(num)d paquets." | |||
#: src/modules/bootloader/main.py:48 | |||
#: src/modules/bootloader/main.py:51 | |||
msgid "Install bootloader." | |||
msgstr "S'instal·la el carregador d'arrencada." | |||
@@ -326,11 +367,11 @@ msgstr "Es configura el sevei OpenRC dmcrypt." | |||
msgid "Configuring LUKS key file." | |||
msgstr "Es configura el fitxer de clau LUKS." | |||
#: src/modules/luksbootkeyfile/main.py:69 | |||
#: src/modules/luksbootkeyfile/main.py:74 | |||
msgid "Encrypted rootfs setup error" | |||
msgstr "Error de configuració de rootfs encriptat." | |||
#: src/modules/luksbootkeyfile/main.py:70 | |||
#: src/modules/luksbootkeyfile/main.py:75 | |||
msgid "Rootfs partition {!s} is LUKS but no passphrase found." | |||
msgstr "" | |||
"La partició de rootfs {!s} és LUKS però no se n'ha trobat cap contrasenya." | |||
@@ -347,7 +388,7 @@ msgstr "Tasca de python fictícia." | |||
msgid "Dummy python step {}" | |||
msgstr "Pas de python fitctici {}" | |||
#: src/modules/localecfg/main.py:37 | |||
#: src/modules/localecfg/main.py:39 | |||
msgid "Configuring locales." | |||
msgstr "Es configuren les llengües." | |||
@@ -12,7 +12,7 @@ msgid "" | |||
msgstr "" | |||
"Project-Id-Version: PACKAGE VERSION\n" | |||
"Report-Msgid-Bugs-To: \n" | |||
"POT-Creation-Date: 2019-04-24 12:03-0400\n" | |||
"POT-Creation-Date: 2019-05-10 19:18-0400\n" | |||
"PO-Revision-Date: 2017-08-09 10:34+0000\n" | |||
"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2019\n" | |||
"Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n" | |||
@@ -26,10 +26,30 @@ msgstr "" | |||
msgid "Configure GRUB." | |||
msgstr "Nastavování zavaděče GRUB." | |||
#: src/modules/mount/main.py:36 | |||
#: src/modules/mount/main.py:38 | |||
msgid "Mounting partitions." | |||
msgstr "Připojování oddílů." | |||
#: src/modules/mount/main.py:150 src/modules/initcpiocfg/main.py:187 | |||
#: src/modules/initcpiocfg/main.py:191 | |||
#: src/modules/luksopenswaphookcfg/main.py:95 | |||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 | |||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94 | |||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78 | |||
#: src/modules/openrcdmcryptcfg/main.py:82 | |||
#: src/modules/luksbootkeyfile/main.py:51 src/modules/fstab/main.py:312 | |||
#: src/modules/fstab/main.py:316 src/modules/localecfg/main.py:144 | |||
#: src/modules/networkcfg/main.py:48 | |||
msgid "Configuration Error" | |||
msgstr "Chyba nastavení" | |||
#: src/modules/mount/main.py:151 src/modules/initcpiocfg/main.py:188 | |||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 | |||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 | |||
#: src/modules/luksbootkeyfile/main.py:52 src/modules/fstab/main.py:313 | |||
msgid "No partitions are defined for <pre>{!s}</pre> to use." | |||
msgstr "Pro <pre>{!s}</pre> nejsou zadány žádné oddíly." | |||
#: src/modules/services-systemd/main.py:35 | |||
msgid "Configure systemd services" | |||
msgstr "Nastavit služby systemd" | |||
@@ -74,19 +94,19 @@ msgstr "" | |||
msgid "Unmount file systems." | |||
msgstr "Odpojit souborové systémy." | |||
#: src/modules/unpackfs/main.py:40 | |||
#: src/modules/unpackfs/main.py:41 | |||
msgid "Filling up filesystems." | |||
msgstr "Naplňování souborových systémů." | |||
#: src/modules/unpackfs/main.py:158 | |||
#: src/modules/unpackfs/main.py:159 | |||
msgid "rsync failed with error code {}." | |||
msgstr "rsync se nezdařilo s chybových kódem {}." | |||
#: src/modules/unpackfs/main.py:219 src/modules/unpackfs/main.py:237 | |||
#: src/modules/unpackfs/main.py:220 src/modules/unpackfs/main.py:238 | |||
msgid "Failed to unpack image \"{}\"" | |||
msgstr "Nepodařilo se rozbalit obraz „{}“" | |||
#: src/modules/unpackfs/main.py:220 | |||
#: src/modules/unpackfs/main.py:221 | |||
msgid "" | |||
"Failed to find unsquashfs, make sure you have the squashfs-tools package " | |||
"installed" | |||
@@ -94,36 +114,36 @@ msgstr "" | |||
"Nepodařilo se nalézt unsquashfs – ověřte, že máte nainstalovaný balíček " | |||
"squashfs-tools" | |||
#: src/modules/unpackfs/main.py:313 | |||
#: src/modules/unpackfs/main.py:320 | |||
msgid "No mount point for root partition" | |||
msgstr "Žádný přípojný bot pro kořenový oddíl" | |||
#: src/modules/unpackfs/main.py:314 | |||
#: src/modules/unpackfs/main.py:321 | |||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" | |||
msgstr "globalstorage neobsahuje klíč „rootMountPoint“ – nic se nebude dělat" | |||
#: src/modules/unpackfs/main.py:319 | |||
#: src/modules/unpackfs/main.py:326 | |||
msgid "Bad mount point for root partition" | |||
msgstr "Chybný přípojný bod pro kořenový oddíl" | |||
#: src/modules/unpackfs/main.py:320 | |||
#: src/modules/unpackfs/main.py:327 | |||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" | |||
msgstr "kořenovýPřípojnýBod je „{}“, který neexistuje – nic se nebude dělat" | |||
#: src/modules/unpackfs/main.py:333 src/modules/unpackfs/main.py:340 | |||
#: src/modules/unpackfs/main.py:345 | |||
#: src/modules/unpackfs/main.py:340 src/modules/unpackfs/main.py:347 | |||
#: src/modules/unpackfs/main.py:352 | |||
msgid "Bad unsquash configuration" | |||
msgstr "Chybná nastavení unsquash" | |||
#: src/modules/unpackfs/main.py:334 | |||
#: src/modules/unpackfs/main.py:341 | |||
msgid "The filesystem for \"{}\" ({}) is not supported" | |||
msgstr "Souborový systém „{}“ ({}) není podporován" | |||
#: src/modules/unpackfs/main.py:341 | |||
#: src/modules/unpackfs/main.py:348 | |||
msgid "The source filesystem \"{}\" does not exist" | |||
msgstr "Zdrojový souborový systém „{}“ neexistuje" | |||
#: src/modules/unpackfs/main.py:346 | |||
#: src/modules/unpackfs/main.py:353 | |||
msgid "The destination \"{}\" in the target system is not a directory" | |||
msgstr "Cíl „{}“ v cílovém systému není složka" | |||
@@ -187,10 +207,30 @@ msgstr "Nastavení správce displeje nebylo úplné" | |||
msgid "Configuring mkinitcpio." | |||
msgstr "Nastavování mkinitcpio." | |||
#: src/modules/initcpiocfg/main.py:192 | |||
#: src/modules/luksopenswaphookcfg/main.py:100 | |||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99 | |||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:317 | |||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49 | |||
msgid "No root mount point is given for <pre>{!s}</pre> to use." | |||
msgstr "Pro <pre>{!s}</pre> není zadán žádný přípojný bod." | |||
#: src/modules/initcpio/main.py:33 | |||
msgid "Creating initramfs with mkinitcpio." | |||
msgstr "Vytváření initramfs pomocí mkinitcpio." | |||
#: src/modules/initcpio/main.py:47 | |||
msgid "Process Failed" | |||
msgstr "Proces zhavaroval" | |||
#: src/modules/initcpio/main.py:48 | |||
msgid "" | |||
"Process <pre>mkinitcpio</pre> failed with error code {!s}. The command was " | |||
"<pre>{!s}</pre>." | |||
msgstr "" | |||
"Proces <pre>mkinitcpio</pre> zhavaroval kódem chyby {!s}. Příkaz byl " | |||
"<pre>{!s}</pre>." | |||
#: src/modules/luksopenswaphookcfg/main.py:35 | |||
msgid "Configuring encrypted swap." | |||
msgstr "Nastavování šifrovaného prostoru pro odkládání stránek paměti." | |||
@@ -286,7 +326,7 @@ msgstr[1] "Odebírají se %(num)d balíčky." | |||
msgstr[2] "Odebírá se %(num)d balíčků." | |||
msgstr[3] "Odebírá se %(num)d balíčků." | |||
#: src/modules/bootloader/main.py:48 | |||
#: src/modules/bootloader/main.py:51 | |||
msgid "Install bootloader." | |||
msgstr "Instalace zavaděče systému." | |||
@@ -330,11 +370,11 @@ msgstr "Nastavování služby OpenRC dmcrypt." | |||
msgid "Configuring LUKS key file." | |||
msgstr "Nastavování souboru s klíčem pro LUKS šifrování." | |||
#: src/modules/luksbootkeyfile/main.py:69 | |||
#: src/modules/luksbootkeyfile/main.py:74 | |||
msgid "Encrypted rootfs setup error" | |||
msgstr "Chyba nastavení šifrovaného kořenového oddílu" | |||
#: src/modules/luksbootkeyfile/main.py:70 | |||
#: src/modules/luksbootkeyfile/main.py:75 | |||
msgid "Rootfs partition {!s} is LUKS but no passphrase found." | |||
msgstr "Kořenový oddíl {!s} je LUKS ale nebyla nalezena žádná heslová fráze." | |||
@@ -350,7 +390,7 @@ msgstr "Testovací úloha python." | |||
msgid "Dummy python step {}" | |||
msgstr "Testovací krok {} python." | |||
#: src/modules/localecfg/main.py:37 | |||
#: src/modules/localecfg/main.py:39 | |||
msgid "Configuring locales." | |||
msgstr "Nastavování místních a jazykových nastavení." | |||
@@ -12,7 +12,7 @@ msgid "" | |||
msgstr "" | |||
"Project-Id-Version: PACKAGE VERSION\n" | |||
"Report-Msgid-Bugs-To: \n" | |||
"POT-Creation-Date: 2019-04-24 12:03-0400\n" | |||
"POT-Creation-Date: 2019-05-10 19:18-0400\n" | |||
"PO-Revision-Date: 2017-08-09 10:34+0000\n" | |||
"Last-Translator: scootergrisen, 2019\n" | |||
"Language-Team: Danish (https://www.transifex.com/calamares/teams/20061/da/)\n" | |||
@@ -24,11 +24,31 @@ msgstr "" | |||
#: src/modules/grubcfg/main.py:37 | |||
msgid "Configure GRUB." | |||
msgstr "" | |||
msgstr "Konfigurer GRUB." | |||
#: src/modules/mount/main.py:36 | |||
#: src/modules/mount/main.py:38 | |||
msgid "Mounting partitions." | |||
msgstr "" | |||
msgstr "Monterer partitioner." | |||
#: src/modules/mount/main.py:150 src/modules/initcpiocfg/main.py:187 | |||
#: src/modules/initcpiocfg/main.py:191 | |||
#: src/modules/luksopenswaphookcfg/main.py:95 | |||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 | |||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94 | |||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78 | |||
#: src/modules/openrcdmcryptcfg/main.py:82 | |||
#: src/modules/luksbootkeyfile/main.py:51 src/modules/fstab/main.py:312 | |||
#: src/modules/fstab/main.py:316 src/modules/localecfg/main.py:144 | |||
#: src/modules/networkcfg/main.py:48 | |||
msgid "Configuration Error" | |||
msgstr "Fejl ved konfiguration" | |||
#: src/modules/mount/main.py:151 src/modules/initcpiocfg/main.py:188 | |||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 | |||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 | |||
#: src/modules/luksbootkeyfile/main.py:52 src/modules/fstab/main.py:313 | |||
msgid "No partitions are defined for <pre>{!s}</pre> to use." | |||
msgstr "Der er ikke angivet nogle partitioner som <pre>{!s}</pre> skal bruge." | |||
#: src/modules/services-systemd/main.py:35 | |||
msgid "Configure systemd services" | |||
@@ -74,19 +94,19 @@ msgstr "" | |||
msgid "Unmount file systems." | |||
msgstr "Afmonter filsystemer." | |||
#: src/modules/unpackfs/main.py:40 | |||
#: src/modules/unpackfs/main.py:41 | |||
msgid "Filling up filesystems." | |||
msgstr "" | |||
msgstr "Udfylder filsystemer." | |||
#: src/modules/unpackfs/main.py:158 | |||
#: src/modules/unpackfs/main.py:159 | |||
msgid "rsync failed with error code {}." | |||
msgstr "rsync mislykkedes med fejlkoden {}." | |||
#: src/modules/unpackfs/main.py:219 src/modules/unpackfs/main.py:237 | |||
#: src/modules/unpackfs/main.py:220 src/modules/unpackfs/main.py:238 | |||
msgid "Failed to unpack image \"{}\"" | |||
msgstr "Kunne ikke udpakke aftrykket \"{}\"" | |||
#: src/modules/unpackfs/main.py:220 | |||
#: src/modules/unpackfs/main.py:221 | |||
msgid "" | |||
"Failed to find unsquashfs, make sure you have the squashfs-tools package " | |||
"installed" | |||
@@ -94,36 +114,36 @@ msgstr "" | |||
"Kunne ikke finde unsquashfs, sørg for at squashfs-tools-pakken er " | |||
"installeret" | |||
#: src/modules/unpackfs/main.py:313 | |||
#: src/modules/unpackfs/main.py:320 | |||
msgid "No mount point for root partition" | |||
msgstr "Intet monteringspunkt til rodpartition" | |||
#: src/modules/unpackfs/main.py:314 | |||
#: src/modules/unpackfs/main.py:321 | |||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" | |||
msgstr "globalstorage indeholder ikke en \"rootMountPoint\"-nøgle, gør intet" | |||
#: src/modules/unpackfs/main.py:319 | |||
#: src/modules/unpackfs/main.py:326 | |||
msgid "Bad mount point for root partition" | |||
msgstr "Dårligt monteringspunkt til rodpartition" | |||
#: src/modules/unpackfs/main.py:320 | |||
#: src/modules/unpackfs/main.py:327 | |||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" | |||
msgstr "rootMountPoint er \"{}\", hvilket ikke findes, gør intet" | |||
#: src/modules/unpackfs/main.py:333 src/modules/unpackfs/main.py:340 | |||
#: src/modules/unpackfs/main.py:345 | |||
#: src/modules/unpackfs/main.py:340 src/modules/unpackfs/main.py:347 | |||
#: src/modules/unpackfs/main.py:352 | |||
msgid "Bad unsquash configuration" | |||
msgstr "Dårlig unsquash-konfiguration" | |||
#: src/modules/unpackfs/main.py:334 | |||
#: src/modules/unpackfs/main.py:341 | |||
msgid "The filesystem for \"{}\" ({}) is not supported" | |||
msgstr "Filsystemet til \"{}\" ({}) understøttes ikke" | |||
#: src/modules/unpackfs/main.py:341 | |||
#: src/modules/unpackfs/main.py:348 | |||
msgid "The source filesystem \"{}\" does not exist" | |||
msgstr "Kildefilsystemet \"{}\" findes ikke" | |||
#: src/modules/unpackfs/main.py:346 | |||
#: src/modules/unpackfs/main.py:353 | |||
msgid "The destination \"{}\" in the target system is not a directory" | |||
msgstr "Destinationen \"{}\" i målsystemet er ikke en mappe" | |||
@@ -186,15 +206,36 @@ msgstr "Displayhåndtering-konfiguration er ikke komplet" | |||
#: src/modules/initcpiocfg/main.py:36 | |||
msgid "Configuring mkinitcpio." | |||
msgstr "Konfigurerer mkinitcpio." | |||
#: src/modules/initcpiocfg/main.py:192 | |||
#: src/modules/luksopenswaphookcfg/main.py:100 | |||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99 | |||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:317 | |||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49 | |||
msgid "No root mount point is given for <pre>{!s}</pre> to use." | |||
msgstr "" | |||
"Der er ikke angivet noget rodmonteringspunkt som <pre>{!s}</pre> skal bruge." | |||
#: src/modules/initcpio/main.py:33 | |||
msgid "Creating initramfs with mkinitcpio." | |||
msgstr "Opretter initramfs med mkinitcpio." | |||
#: src/modules/initcpio/main.py:47 | |||
msgid "Process Failed" | |||
msgstr "Processen mislykkedes" | |||
#: src/modules/initcpio/main.py:48 | |||
msgid "" | |||
"Process <pre>mkinitcpio</pre> failed with error code {!s}. The command was " | |||
"<pre>{!s}</pre>." | |||
msgstr "" | |||
"Processen <pre>mkinitcpio</pre> mislykkedes med fejlkoden {!s}. Kommandoen " | |||
"blev <pre>{!s}</pre>." | |||
#: src/modules/luksopenswaphookcfg/main.py:35 | |||
msgid "Configuring encrypted swap." | |||
msgstr "" | |||
msgstr "Konfigurerer krypteret swap." | |||
#: src/modules/rawfs/main.py:35 | |||
msgid "Installing data." | |||
@@ -280,9 +321,9 @@ msgid_plural "Removing %(num)d packages." | |||
msgstr[0] "Fjerner én pakke." | |||
msgstr[1] "Fjerner %(num)d pakker." | |||
#: src/modules/bootloader/main.py:48 | |||
#: src/modules/bootloader/main.py:51 | |||
msgid "Install bootloader." | |||
msgstr "" | |||
msgstr "Installér bootloader." | |||
#: src/modules/removeuser/main.py:34 | |||
msgid "Remove live user from target system" | |||
@@ -290,51 +331,52 @@ msgstr "Fjern livebruger fra målsystemet" | |||
#: src/modules/initramfs/main.py:35 | |||
msgid "Creating initramfs." | |||
msgstr "" | |||
msgstr "Opretter initramfs." | |||
#: src/modules/initramfs/main.py:49 | |||
msgid "Failed to run update-initramfs on the target" | |||
msgstr "" | |||
msgstr "Kunne ikke køre update-initramfs på målet" | |||
#: src/modules/initramfs/main.py:50 src/modules/dracut/main.py:59 | |||
msgid "The exit code was {}" | |||
msgstr "" | |||
msgstr "Afslutningskoden var {}" | |||
#: src/modules/hwclock/main.py:35 | |||
msgid "Setting hardware clock." | |||
msgstr "" | |||
msgstr "Indstiller hardwareur." | |||
#: src/modules/dracut/main.py:36 | |||
msgid "Creating initramfs with dracut." | |||
msgstr "" | |||
msgstr "Opretter initramfs med dracut." | |||
#: src/modules/dracut/main.py:58 | |||
msgid "Failed to run dracut on the target" | |||
msgstr "" | |||
msgstr "Kunne ikke køre dracut på målet" | |||
#: src/modules/initramfscfg/main.py:41 | |||
msgid "Configuring initramfs." | |||
msgstr "" | |||
msgstr "Konfigurerer initramfs." | |||
#: src/modules/openrcdmcryptcfg/main.py:34 | |||
msgid "Configuring OpenRC dmcrypt service." | |||
msgstr "" | |||
msgstr "Konfigurerer OpenRC dmcrypt-tjeneste." | |||
#: src/modules/luksbootkeyfile/main.py:35 | |||
msgid "Configuring LUKS key file." | |||
msgstr "" | |||