diff --git a/CHANGES b/CHANGES index 232a348ca..a3d9ae9f7 100644 --- a/CHANGES +++ b/CHANGES @@ -17,19 +17,27 @@ This release contains contributions from (alphabetically by first name): requirements checks in the welcome module (RAM, disk space, ..). The checks have been made asynchronous, so that responsiveness during requirements-checking is improved and the user has better feedback. + * Support for building an AppImage of Calamares has been added to the + `ci/` directory. There are use-cases where a containerized build and + configuration make sense rather than having Calamares installed in the + host system. (Thanks to the AppImage team, Alexis) ## Modules ## * *Bootloader* module: a serious bug introduced in 3.2.4 which prevents succesful boot after installation on EFI machines, has been repaired. - (Thanks to Gabriel) + (Thanks to Gabriel) #1104 + * *Displaymanager* module: it is no longer a fatal error to not have any + display-managers. #1095 * *Partition* module: it is now possible to build without libparted. Since KPMCore may not need this library anymore, it is a dependency that will - be dropped as soon as it is feasible. Add `-DCMAKE_DISABLE_FIND_PACKAGE_LIBPARTED=ON` - to the CMake flags to do so. + be dropped as soon as it is feasible. Add this to the CMake flags: + `-DCMAKE_DISABLE_FIND_PACKAGE_LIBPARTED=ON` + * *Partition* module: the location that is selected for the bootloader, + no longer changes when a new partition is created. #1098 * Python modules: several modules have had translations added. This is usually only visible when the module runs as part of the *exec* step, - when the module's *pretty name* is displayed. In addition, error + when the module's *pretty name* is displayed. In addition, some error messages are now translated. diff --git a/CMakeLists.txt b/CMakeLists.txt index 0aeb8a584..226c97a31 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,6 +24,9 @@ # # SKIP_MODULES : a space or semicolon-separated list of directory names # under src/modules that should not be built. +# USE_ : fills in SKIP_MODULES for modules called - +# BUILD_ : choose additional things to build +# DEBUG_ : special developer flags for debugging # # Example usage: # @@ -62,7 +65,8 @@ option( WITH_KF5Crash "Enable crash reporting with KCrash." ON ) # all the implementations are enabled (this just means they are # **available** to `settings.conf`, not that they are used). # -# Currently, no USE_ variables exist. +# Currently, only USE_services is in use (to pick only one of the two +# modules, systemd or openrc). set( USE_services "" CACHE STRING "Select the services module to use" ) ### Calamares application info diff --git a/CMakeModules/CalamaresAddLibrary.cmake b/CMakeModules/CalamaresAddLibrary.cmake index f6e96d12a..d5d734989 100644 --- a/CMakeModules/CalamaresAddLibrary.cmake +++ b/CMakeModules/CalamaresAddLibrary.cmake @@ -19,27 +19,41 @@ ### # # Support functions for building plugins. - +# +# Usage: +# +# calamares_add_library( +# library-name +# EXPORT_MACRO macro-name +# TARGET_TYPE +# EXPORT export-name +# VERSION version +# SOVERSION version +# INSTALL_BINDIR dir +# RESOURCES resource-file +# SOURCES source-file... +# UI ui-file... +# LINK_LIBRARIES lib... +# LINK_PRIVATE_LIBRARIES lib... +# COMPILE_DEFINITIONS def... +# [NO_INSTALL] +# [NO_VERSION] +# ) +# +# The COMPILE_DEFINITIONS are set on the resulting module with a suitable +# flag (i.e. `-D`) so only state the name (optionally, also the value) +# without a `-D` prefixed to it. Pass in a CMake list as needed. include( CMakeParseArguments ) function(calamares_add_library) # parse arguments (name needs to be saved before passing ARGN into the macro) set(NAME ${ARGV0}) set(options NO_INSTALL NO_VERSION) - set(oneValueArgs NAME TYPE EXPORT_MACRO TARGET TARGET_TYPE EXPORT VERSION SOVERSION INSTALL_BINDIR RESOURCES) - set(multiValueArgs SOURCES UI LINK_LIBRARIES LINK_PRIVATE_LIBRARIES COMPILE_DEFINITIONS QT5_MODULES) + set(oneValueArgs NAME EXPORT_MACRO TARGET_TYPE EXPORT VERSION SOVERSION INSTALL_BINDIR RESOURCES) + set(multiValueArgs SOURCES UI LINK_LIBRARIES LINK_PRIVATE_LIBRARIES COMPILE_DEFINITIONS) cmake_parse_arguments(LIBRARY "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) set(LIBRARY_NAME ${NAME}) - -# message("*** Arguments for ${LIBRARY_NAME}") -# message("Sources: ${LIBRARY_SOURCES}") -# message("Link libraries: ${LIBRARY_LINK_LIBRARIES}") -# message("UI: ${LIBRARY_UI}") -# message("TARGET_TYPE: ${LIBRARY_TARGET_TYPE}") -# message("EXPORT_MACRO: ${LIBRARY_EXPORT_MACRO}") -# message("NO_INSTALL: ${LIBRARY_NO_INSTALL}") - set(target ${LIBRARY_NAME}) # qt stuff @@ -76,13 +90,8 @@ function(calamares_add_library) endif() if(LIBRARY_COMPILE_DEFINITIONS) - # Dear CMake, i hate you! Sincerely, domme - # At least in CMake 2.8.8, you CANNOT set more than one COMPILE_DEFINITIONS value - # only takes the first one if called multiple times or bails out with wrong number of arguments - # when passing in a list, thus i redefine the export macro here in hope it won't mess up other targets - add_definitions( "-D${LIBRARY_EXPORT_MACRO}" ) - - set_target_properties(${target} PROPERTIES COMPILE_DEFINITIONS ${LIBRARY_COMPILE_DEFINITIONS}) + set( _lib_definitions "${LIBRARY_EXPORT_MACRO}" ${LIBRARY_COMPILE_DEFINITIONS} ) + set_target_properties(${target} PROPERTIES COMPILE_DEFINITIONS "${_lib_definitions}") endif() # add link targets @@ -119,9 +128,6 @@ function(calamares_add_library) set(LIBRARY_INSTALL_LIBDIR "${LIBRARY_INSTALL_BINDIR}") endif() - #message("INSTALL_BINDIR: ${LIBRARY_INSTALL_BINDIR}") - #message("INSTALL_LIBDIR: ${LIBRARY_INSTALL_LIBDIR}") - # make installation optional, maybe useful for dummy plugins one day if(NOT LIBRARY_NO_INSTALL) include(GNUInstallDirs) diff --git a/CMakeModules/CalamaresAddPlugin.cmake b/CMakeModules/CalamaresAddPlugin.cmake index 886501a56..1d749d51c 100644 --- a/CMakeModules/CalamaresAddPlugin.cmake +++ b/CMakeModules/CalamaresAddPlugin.cmake @@ -40,6 +40,10 @@ # [SHARED_LIB] # [EMERGENCY] # ) +# +# The COMPILE_DEFINITIONS are set on the resulting module with a suitable +# flag (i.e. `-D`) so only state the name (optionally, also the value) +# without a `-D` prefixed to it. include( CMakeParseArguments ) include( CalamaresAddLibrary ) diff --git a/calamares.desktop b/calamares.desktop index c701f230e..a92c507fc 100644 --- a/calamares.desktop +++ b/calamares.desktop @@ -159,6 +159,7 @@ GenericName[sv]=Systeminstallerare Comment[sv]=Calamares — Systeminstallerare Name[th]=ติดตั้งระบบ Name[uk]=Встановити Систему +Icon[uk]=calamares GenericName[uk]=Встановлювач системи Comment[uk]=Calamares - Встановлювач системи Name[zh_CN]=安装系统 diff --git a/ci/AppImage.md b/ci/AppImage.md new file mode 100644 index 000000000..7fa51a8bc --- /dev/null +++ b/ci/AppImage.md @@ -0,0 +1,45 @@ +# AppImage building for Calamares + +> It is possible to build Calamares as an AppImage (perhaps other +> containerized formats as well). This might make sense for +> OEM phase-1 deployments in environments where Calamares is +> not using the native toolkit. + +## AppImage tools + +You will need + - [`linuxdeploy-x86_64.AppImage`](https://github.com/linuxdeploy/linuxdeploy/releases) + - [`linuxdeploy-plugin-qt-x86_64.AppImage`](https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases) + - [`linuxdeploy-plugin-conda.sh`](https://github.com/linuxdeploy/linuxdeploy-plugin-conda) + +These tools should run -- they are bundled as AppImages after all -- on +any modern Linux system. The [AppImage packaging documentation](https://docs.appimage.org/packaging-guide/) +explains how the whole tooling works. + +If the tools are not present, the build script (see below) will download them, +but you should save them for later. + +## AppImage build + +From the **source** directory, run `ci/AppImage.sh`: + - Use `--tools-dir` to copy the tools from a local cache rather than + downloading them again. + - Run it with `--cmake-args` for special CMake handling. + - Use `--skip-build` to avoid rebuilding Calamares all the time. + - Use `--config-dir` to copy in Calamares configuration files (e.g. + *settings.conf* and the module configuration files) from a given + directory. + +The build process will: + - copy (or download) the AppImage tools into a fresh build directory + - configure and build Calamares with suitable settings + - modifies the standard `.desktop` file to be AppImage-compatible + - builds the image with the AppImage tools + +## AppImage caveats + +The resulting AppImage, `Calamares-x86_64.AppImage`, can be run as if it is +a regular Calamares executable. For internal reasons it always passes the +`-X` flag; any other command-line flags are passed in unchanged. Internally, +`XDG_*_DIRS` are used to get Calamares to find the resources inside the AppImage +rather than in the host system. diff --git a/ci/AppImage.sh b/ci/AppImage.sh new file mode 100644 index 000000000..da5e41766 --- /dev/null +++ b/ci/AppImage.sh @@ -0,0 +1,268 @@ +#! /bin/sh +# +# SPDX-License-Identifier: BSD-2-Clause +# +# Copyright 2019 Adriaan de Groot +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE +# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# +### END LICENSES + +### USAGE +# +# Shell script to help build an AppImage for Calamares. +# +# Usage: +# AppImage.sh [-T|--tools-dir ] +# [-C|--cmake-args ] +# [-c|--config-dir ] +# [-s|--skip-build] +# [-p|--with-python] +# +# Multiple --cmake-args arguments will be collected together and passed to +# CMake before building the application. +# +# Use --tools-dir to indicate where the linuxdeploy tools are located. +# +# Use --config to copy a config-directory (with settings.conf and others) +# into the resulting image, +# +# Option --skip-build assumes that there is an already-built Calamares +# available in the AppImage build directory; use this when you are, e.g. +# re-packaging the image with different configuration. Option --with-python +# adds the Conda Python packaging ecosystem to the AppImage, which will make +# it **more** portable by disconnecting from the system Python libraries. +# +# The build process for AppImage proceeds in a directory build-AppImage +# that is created in the current directory. +# +# TODO: Conda / Python support doesn't work yet. +# +### END USAGE + +TOOLS_DIR="." +CMAKE_ARGS="" +DO_REBUILD="true" +DO_CONDA="false" +CONFIG_DIR="" +while test "$#" -gt 0 +do + case "x$1" in + x--help|x-h) + sed -e '1,/USAGE/d' -e '/END.USAGE/,$d' < "$0" + return 0 + ;; + x--tools-dir|x-T) + TOOLS_DIR="$2" + shift + ;; + x--cmake-args|x-C) + CMAKE_ARGS="$CMAKE_ARGS $2" + shift + ;; + x--config-dir|x-c) + CONFIG_DIR="$2" + shift + ;; + x--skip-build|x-s) + DO_REBUILD="false" + ;; + x--with-python|x-p) + DO_CONDA="true" + ;; + *) + echo "! Unknown argument '$1'." + exit 1 + ;; + esac + test "$#" -gt 0 || { echo "! Missing arguments."; exit 1; } + shift +done + +### Check where we're running +# +BIN_DIR=$( cd $( dirname "$0" ) && pwd -P ) +test -d "$BIN_DIR" || { echo "! Could not find BIN_DIR"; exit 1; } +test -f "$BIN_DIR/AppImage.sh" || { echo "! $BIN_DIR does not have AppImage.sh"; exit 1; } + +SRC_DIR=$( cd "$BIN_DIR/.." && pwd -P ) +test -d "$SRC_DIR" || { echo "! Could not find SRC_DIR"; exit 1; } +test -d "$SRC_DIR/ci" || { echo "! $SRC_DIR isn't a top-level Calamares checkout"; exit 1; } +test -f "$SRC_DIR/CMakeLists.txt" || { echo "! SRC_DIR is missing CMakeLists.txt"; exit 1; } + +### Check pre-requisites +# +BUILD_DIR=build-AppImage +test -d "$BUILD_DIR" || mkdir -p "$BUILD_DIR" +test -d "$BUILD_DIR" || { echo "! Could not create $BUILD_DIR"; exit 1; } + +TOOLS_LIST="linuxdeploy-x86_64.AppImage linuxdeploy-plugin-qt-x86_64.AppImage" +$DO_CONDA && TOOLS_LIST="$TOOLS_LIST linuxdeploy-plugin-conda.sh" + +for tool in $TOOLS_LIST +do + if test -x "$BUILD_DIR/$tool" ; then + # This tool is ok + : + else + if test -f "$TOOLS_DIR/$tool" ; then + cp "$TOOLS_DIR/$tool" "$BUILD_DIR/$tool" || exit 1 + else + fetch=$( grep "^# URL .*$tool\$" "$0" | sed 's/# URL *//' ) + curl -L -o "$BUILD_DIR/$tool" "$fetch" + fi + chmod +x "$BUILD_DIR/$tool" + test -x "$BUILD_DIR/$tool" || { echo "! Missing tool $tool in tools-dir $TOOLS_DIR"; exit 1; } + fi +done + +if test -n "$CONFIG_DIR" ; then + test -f "$CONFIG_DIR/settings.conf" || { echo "! No settings.conf in $CONFIG_DIR"; exit 1; } +fi + +### Clean up build-directory +# +rm -rf "$BUILD_DIR/AppDir" +if $DO_REBUILD ; then + rm -rf "$BUILD_DIR/build" + mkdir "$BUILD_DIR/build" || { echo "! Could not create $BUILD_DIR/build for the cmake-build."; exit 1; } +else + test -d "$BUILD_DIR/build" || { echo "! No build found in $BUILD_DIR, but --skip-build is given."; exit 1; } + test -x "$BUILD_DIR/build/calamares" || { echo "! No complete build found in $BUILD_DIR/build ."; exit 1; } +fi +mkdir "$BUILD_DIR/AppDir" || { echo "! Could not create $BUILD_DIR/AppDir for the AppImage install."; exit 1; } +LOG_FILE="$BUILD_DIR/AppImage.log" +rm -f "$LOG_FILE" +{ echo "# Calamares build started" `date` ; echo "# .. build directory $BUILD_DIR"; echo "# .. log file $LOG_FILE"; } > "$LOG_FILE" +cat "$LOG_FILE" + +### Python Support +# +# +if $DO_CONDA ; then + export CONDA_CHANNELS="conda-forge;anaconda" + export CONDA_PACKAGES="gettext;py-boost" + + ( + cd "$BUILD_DIR" && + ./linuxdeploy-x86_64.AppImage --appdir=AppDir/ --plugin=conda + ) + + . "$BUILD_DIR/AppDir/usr/conda/bin/activate" +fi + +### Build Calamares +# +if $DO_REBUILD ; then + echo "# Running cmake ..." + ( + cd "$BUILD_DIR/build" && + cmake "$SRC_DIR" -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib $CMAKE_ARGS + ) >> "$LOG_FILE" 2>&1 || { tail -10 "$LOG_FILE" ; echo "! Could not run CMake"; exit 1; } + echo "# Running make ..." + ( + cd "$BUILD_DIR/build" && + make -j4 + ) >> "$LOG_FILE" 2>&1 || { tail -10 "$LOG_FILE" ; echo "! Could not run make"; exit 1; } +fi +echo "# Running make install ..." +( + cd "$BUILD_DIR/build" && + make install DESTDIR=../AppDir +) >> "$LOG_FILE" 2>&1 || { tail -10 "$LOG_FILE" ; echo "! Could not run make install"; exit 1; } + +### Modify installation +# +IMAGE_DIR="$BUILD_DIR/AppDir" + +# Munge the desktop file to not use absolute paths or pkexec +sed -i \ + -e 's+^Exec=.*+Exec=calamares+' \ + -e 's+^Name=.*+Name=Calamares+' \ + "$IMAGE_DIR"/usr/share/applications/calamares.desktop + +# Replace the executable with a shell-proxy +test -x "$IMAGE_DIR/usr/bin/calamares" || { echo "! Does not seem to have installed calamares"; exit 1; } +mv "$IMAGE_DIR/usr/bin/calamares" "$IMAGE_DIR/usr/bin/calamares.bin" +cat > "$IMAGE_DIR/usr/bin/calamares" <<"EOF" +#! /bin/sh +# +# Calamares proxy-script +export XDG_DATA_DIRS="$APPDIR/usr/share/calamares:" +export XDG_CONFIG_DIRS="$APPDIR/etc/calamares:$D/usr/share:" +export PYTHONPATH=$APPDIR/usr/lib: +cd "$APPDIR" +exec "$APPDIR"/usr/bin/calamares.bin -X "$@" +EOF +chmod 755 "$IMAGE_DIR/usr/bin/calamares" +test -x "$IMAGE_DIR/usr/bin/calamares" || { echo "! Does not seem to have proxy for calamares"; exit 1; } + +### Install additional files +# +PLUGIN_DIR=$( qmake -query QT_INSTALL_PLUGINS ) +for plugin in \ + libpmsfdiskbackendplugin.so \ + libpmdummybackendplugin.so \ + libpmlibpartedbackendplugin.so +do + # Warning, but not fatal: generally you only have two out of three available + # depending on the KPMCore version. + cp "$PLUGIN_DIR/$plugin" "$IMAGE_DIR/usr/lib" 2> /dev/null || { echo "! Could not copy KPMCore plugin $plugin"; } +done + +# Install configuration files +ETC_DIR="$IMAGE_DIR"/etc/calamares +mkdir -p "$ETC_DIR" +test -d "$ETC_DIR" || { echo "! Could not create /etc/calamares in image."; exit 1; } + +if test -z "$CONFIG_DIR" ; then + echo "# Using basic settings.conf" + cp "$SRC_DIR/settings.conf" "$ETC_DIR" +else + test -f "$CONFIG_DIR/settings.conf" || { echo "! No settings.conf in $CONFIG_DIR"; exit 1; } + mkdir -p "$ETC_DIR/modules" + cp "$CONFIG_DIR/settings.conf" "$ETC_DIR" + test -d "$CONFIG_DIR/modules" && cp -r "$CONFIG_DIR/modules" "$ETC_DIR" + test -d "$CONFIG_DIR/branding" && cp -r "$CONFIG_DIR/branding" "$IMAGE_DIR/usr/share/calamares" +fi + +### Build the AppImage +# +# +echo "# Building AppImage" +( + export QT_SELECT=qt5 # Otherwise might pick Qt4 in image + export LD_LIBRARY_PATH=AppDir/usr/lib # RPATH isn't set in the executable + cd "$BUILD_DIR" && + ./linuxdeploy-x86_64.AppImage --appdir=AppDir/ --plugin=qt --output=appimage +) >> "$LOG_FILE" 2>&1 || { tail -10 "$LOG_FILE" ; echo "! Could not create image"; exit 1; } + +echo "# Created in $BUILD_DIR/Calamares-x86_64.AppImage" +echo "# .. log file at $LOG_FILE" + +exit 0 +### Database for installation +# +# URL https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage +# URL https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-x86_64.AppImage +# URL https://raw.githubusercontent.com/TheAssassin/linuxdeploy-plugin-conda/master/linuxdeploy-plugin-conda.sh diff --git a/data/config-appimage/branding/default/squid.png b/data/config-appimage/branding/default/squid.png new file mode 100644 index 000000000..dbe615c18 Binary files /dev/null and b/data/config-appimage/branding/default/squid.png differ diff --git a/data/config-appimage/modules/displaymanager.conf b/data/config-appimage/modules/displaymanager.conf new file mode 100644 index 000000000..8f8e9c704 --- /dev/null +++ b/data/config-appimage/modules/displaymanager.conf @@ -0,0 +1,28 @@ +# Configure one or more display managers (e.g. SDDM) +# with a "best effort" approach. +--- +#The DM module attempts to set up all the DMs found in this list, in that precise order. +#It also sets up autologin, if the feature is enabled in globalstorage. +#The displaymanagers list can also be set in globalstorage, and in that case it overrides anything set up here. +displaymanagers: + - slim + - sddm + - lightdm + - gdm + - mdm + - lxdm + - kdm + +#Enable the following settings to force a desktop environment in your displaymanager configuration file: +#defaultDesktopEnvironment: +# executable: "startkde" +# desktopFile: "plasma" + +#If true, try to ensure that the user, group, /var directory etc. for the +#display manager are set up correctly. This is normally done by the distribution +#packages, and best left to them. Therefore, it is disabled by default. +basicSetup: false + +#If true, setup autologin for openSUSE. This only makes sense on openSUSE +#derivatives or other systems where /etc/sysconfig/displaymanager exists. +sysconfigSetup: false diff --git a/data/config-appimage/modules/finished.conf b/data/config-appimage/modules/finished.conf new file mode 100644 index 000000000..29e5e49b4 --- /dev/null +++ b/data/config-appimage/modules/finished.conf @@ -0,0 +1,21 @@ +# 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 + +# If the checkbox is shown, and the checkbox is checked, then when +# Calamares exits from the finished-page it will run this command. +# If not set, falls back to "shutdown -r now". +restartNowCommand: "systemctl -i reboot" + +# When the last page is (successfully) reached, send a DBus notification +# to the desktop that the installation is done. This works only if the +# user as whom Calamares is run, can reach the regular desktop session bus. +notifyOnFinished: false diff --git a/data/config-appimage/modules/keyboard.conf b/data/config-appimage/modules/keyboard.conf new file mode 100644 index 000000000..ee97c3939 --- /dev/null +++ b/data/config-appimage/modules/keyboard.conf @@ -0,0 +1,16 @@ +# NOTE: you must have ckbcomp installed and runnable +# on the live system, for keyboard layout previews. +--- +# The name of the file to write X11 keyboard settings to +# The default value is the name used by upstream systemd-localed. +# Relative paths are assumed to be relative to /etc/X11/xorg.conf.d +xOrgConfFileName: "/etc/X11/xorg.conf.d/00-keyboard.conf" + +# The path to search for keymaps converted from X11 to kbd format +# Leave this empty if the setting does not make sense on your distribution. +convertedKeymapPath: "/lib/kbd/keymaps/xkb" + +# Write keymap configuration to /etc/default/keyboard, usually +# found on Debian-related systems. +# Defaults to true if nothing is set. +#writeEtcDefaultKeyboard: true diff --git a/data/config-appimage/modules/locale.conf b/data/config-appimage/modules/locale.conf new file mode 100644 index 000000000..8ae016279 --- /dev/null +++ b/data/config-appimage/modules/locale.conf @@ -0,0 +1,31 @@ +--- +# This settings are used to set your default system time zone. +# Time zones are usually located under /usr/share/zoneinfo and +# provided by the 'tzdata' package of your Distribution. +# +# Distributions using systemd can list available +# time zones by using the timedatectl command. +# timedatectl list-timezones +# +# The starting timezone (e.g. the pin-on-the-map) when entering +# the locale page can be set through keys *region* and *zone*. +# If either is not set, defaults to America/New_York. +# +region: "Europe" +zone: "Amsterdam" + + +# Enable only when your Distribution is using an +# custom path for locale.gen +#localeGenPath: "PATH_TO/locale.gen" + +# GeoIP based Language settings: +# +# GeoIP need an working Internet connection. +# +geoipUrl: "https://geoip.kde.org/v1/calamares" + +# GeoIP style. Leave commented out for the "legacy" interpretation. +# This setting only makes sense if geoipUrl is set, enabliing geoIP. +geoipStyle: "json" + diff --git a/data/config-appimage/modules/users.conf b/data/config-appimage/modules/users.conf new file mode 100644 index 000000000..bdf812878 --- /dev/null +++ b/data/config-appimage/modules/users.conf @@ -0,0 +1,59 @@ +# Configuration for the one-user-system user module. +# +# Besides these settings, the user module also places the following +# keys into the globalconfig area, based on user input in the view step. +# +# - hostname +# - username +# - password (obscured) +# - autologinUser (if enabled, set to username) +# +# These globalconfig keys are set when the jobs for this module +# are created. +--- +# Used as default groups for the created user. +# Adjust to your Distribution defaults. +defaultGroups: + - users + - lp + - video + - network + - storage + - wheel + - audio + +# Some Distributions require a 'autologin' group for the user. +# Autologin causes a user to become automatically logged in to +# the desktop environment on boot. +# Disable when your Distribution does not require such a group. +autologinGroup: autologin +# You can control the initial state for the 'autologin checkbox' in UsersViewStep here. +# Possible values are: true to enable or false to disable the checkbox by default +doAutologin: true + +# When set to a non-empty string, Calamares creates a sudoers file for the user. +# /etc/sudoers.d/10-installer +# Remember to add sudoersGroup to defaultGroups. +# +# If your Distribution already sets up a group of sudoers in its packaging, +# remove this setting (delete or comment out the line below). Otherwise, +# the setting will be duplicated in the /etc/sudoers.d/10-installer file, +# potentially confusing users. +sudoersGroup: wheel + +# Setting this to false , causes the root account to be disabled. +setRootPassword: true +# You can control the initial state for the 'root password checkbox' in UsersViewStep here. +# Possible values are: true to enable or false to disable the checkbox by default. +# When enabled the user password is used for the root account too. +# NOTE: doReusePassword requires setRootPassword to be enabled. +doReusePassword: true + +# These are optional password-requirements that a distro can enforce +# on the user. The values given in this sample file disable each check, +# as if the check was not listed at all. +passwordRequirements: + minLength: -1 # Password at least this many characters + maxLength: -1 # Password at most this many characters + +userShell: /bin/bash diff --git a/data/config-appimage/modules/welcome.conf b/data/config-appimage/modules/welcome.conf new file mode 100644 index 000000000..8dae3e957 --- /dev/null +++ b/data/config-appimage/modules/welcome.conf @@ -0,0 +1,46 @@ +# Configuration for the welcome module. The welcome page +# displays some information from the branding file. +# Which parts it displays can be configured through +# the show* variables. +# +# In addition to displaying the welcome page, this module +# can check requirements for installation. +--- +# Display settings for various buttons on the welcome page. +showSupportUrl: true +showKnownIssuesUrl: true +showReleaseNotesUrl: true + +# Requirements checking. These are general, generic, things +# that are checked. They may not match with the actual requirements +# imposed by other modules in the system. +requirements: + # Amount of available disk, in GB. Floating-point is allowed here. + # Note that this does not account for *usable* disk, so it is possible + # to pass this requirement, yet have no space to install to. + requiredStorage: 5.5 + + # Amount of available RAM, in GB. Floating-point is allowed here. + requiredRam: 1.0 + + # To check for internet connectivity, Calamares does a HTTP GET + # on this URL; on success (e.g. HTTP code 200) internet is OK. + internetCheckUrl: http://google.com + + # List conditions to check. Each listed condition will be + # probed in some way, and yields true or false according to + # the host system satisfying the condition. + # + # This sample file lists all the conditions that are known. + check: + - ram + - power + - internet + - root + - screen + # List conditions that **must** be satisfied (from the list + # of conditions, above) for installation to proceed. + # If any of these conditions are not met, the user cannot + # continue past the welcome page. + required: + - ram diff --git a/data/config-appimage/settings.conf b/data/config-appimage/settings.conf new file mode 100644 index 000000000..756710492 --- /dev/null +++ b/data/config-appimage/settings.conf @@ -0,0 +1,36 @@ +# Configuration file for Calamares +# Syntax is YAML 1.2 +--- +modules-search: [ usr/lib/calamares/modules ] + +# YAML: list of maps of string:string key-value pairs. +#instances: +#- id: owncloud +# module: webview +# config: owncloud.conf + +# Sequence section. This section describes the sequence of modules, both +# viewmodules and jobmodules, as they should appear and/or run. +sequence: +- show: + - welcome + - locale + - keyboard + - users + - summary +- exec: + - dummypython + - locale + - keyboard + - users + - displaymanager + - networkcfg +- show: + - finished + +branding: default + +prompt-install: false +# OEM mode +dont-chroot: true +disable-cancel: false diff --git a/lang/calamares_ar.ts b/lang/calamares_ar.ts index 9ffec35bb..e50dd84bf 100644 --- a/lang/calamares_ar.ts +++ b/lang/calamares_ar.ts @@ -354,17 +354,17 @@ The installer will quit and all changes will be lost. بعد: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>تقسيم يدويّ</strong><br/>يمكنك إنشاء أو تغيير حجم الأقسام بنفسك. - + Boot loader location: مكان محمّل الإقلاع: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. سيتقلّص %1 إلى %2م.بايت وقسم %3م.بايت آخر جديد سيُنشأ ل‍%4. @@ -375,108 +375,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: الحاليّ: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>اختر قسمًا لتقليصه، ثمّ اسحب الشّريط السّفليّ لتغيير حجمه </strong> - + <strong>Select a partition to install on</strong> <strong>اختر القسم حيث سيكون التّثبيت عليه</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. تعذّر إيجاد قسم النّظام EFI في أيّ مكان. فضلًا ارجع واستخدم التّقسيم اليدويّ لإعداد %1. - + The EFI system partition at %1 will be used for starting %2. قسم النّظام EFI على %1 سيُستخدم لبدء %2. - + EFI system partition: قسم نظام EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. لا يبدو أن في جهاز التّخزين أيّ نظام تشغيل. ما الذي تودّ فعله؟<br/>يمكنك مراجعة الاختيارات وتأكيدها قبل تطبيقها على جهاز التّخزين. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>مسح القرص</strong><br/>هذا س<font color="red">يمسح</font> كلّ البيانات الموجودة في جهاز التّخزين المحدّد. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. على جهاز التّخزين %1. ما الذي تودّ فعله؟<br/>يمكنك مراجعة الاختيارات وتأكيدها قبل تطبيقها على جهاز التّخزين. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>ثبّت جنبًا إلى جنب</strong><br/>سيقلّص المثبّت قسمًا لتفريغ مساحة لِ‍ %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>استبدل قسمًا</strong><br/>يستبدل قسمًا مع %1 . - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. على جهاز التّخزين هذا نظام تشغيل ذأصلًا. ما الذي تودّ فعله؟<br/>يمكنك مراجعة الاختيارات وتأكيدها قبل تطبيقها على جهاز التّخزين. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. على جهاز التّخزين هذا عدّة أنظمة تشغيل. ما الذي تودّ فعله؟<br/>يمكنك مراجعة الاختيارات وتأكيدها قبل تطبيقها على جهاز التّخزين. @@ -739,6 +739,14 @@ The installer will quit and all changes will be lost. تعذّر فتح ملفّ groups للقراءة. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal font-weight: normal @@ -1606,22 +1614,22 @@ The installer will quit and all changes will be lost. <small>سيُستخدم الاسم لإظهار الحاسوب للآخرين عبر الشّبكة.</small> - + Log in automatically without asking for the password. لِج آليًّا بدون طلب كلمة مرور. - + Use the same password for the administrator account. استخدم نفس كلمة المرور لحساب المدير. - + Choose a password for the administrator account. اختر كلمة مرور لحساب المدير. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>أدخل ذات كلمة المرور مرّتين، للتّأكد من عدم وجود أخطاء طباعيّة.</small> @@ -1767,17 +1775,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? أمتأكّد من إنشاء جدول تقسيم جديد على %1؟ - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2048,6 +2056,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2295,6 +2308,14 @@ Output: فشل المثبّت في تغيير حجم القسم %1 على القرص '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2704,33 +2725,33 @@ Output: UsersPage - + Your username is too long. اسم المستخدم طويل جدًّا. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. يحوي اسم المستخدم محارف غير صالح. المسموح هو الأحرف الصّغيرة والأرقام فقط. - + Your hostname is too short. اسم المضيف قصير جدًّا. - + Your hostname is too long. اسم المضيف طويل جدًّا. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. يحوي اسم المضيف محارف غير صالحة. المسموح فقط الأحرف والأرقام والشُّرط. - - + + Your passwords do not match! لا يوجد تطابق في كلمات السر! @@ -2747,7 +2768,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_ast.ts b/lang/calamares_ast.ts index a9e45db84..880df1180 100644 --- a/lang/calamares_ast.ts +++ b/lang/calamares_ast.ts @@ -107,7 +107,7 @@ Install - Instalar + Instalación @@ -354,17 +354,17 @@ L'instalador va colar y van perdese tolos cambeos. Dempués: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Particionáu manual</strong><br/>Vas poder crear o redimensionar particiones. - + Boot loader location: Allugamientu del xestor d'arrinque: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 va redimensionase a %2MB y va crease una partición nueva de %s3MB pa %4. @@ -375,108 +375,108 @@ L'instalador va colar y van perdese tolos cambeos. - - - + + + Current: Anguaño: - + Reuse %1 as home partition for %2. Reusu de %s como partición d'aniciu pa %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Esbilla una partición a redimensionar, dempués arrastra la barra baxera pa facelo</strong> - + <strong>Select a partition to install on</strong> <strong>Esbilla una partición na qu'instalar</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Nun pudo alcontrase per nenyures una partición del sistema EFI. Volvi p'atrás y usa'l particionáu manual pa configurar %1, por favor. - + The EFI system partition at %1 will be used for starting %2. La partición del sistema EFI en %1 va usase p'aniciar %2. - + EFI system partition: Partición del sistema EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Esti preséu d'almacenamientu nun paez que tenga un sistema operativu nelli. ¿Qué te prestaría facer?<br/>Vas ser a revisar y confirmar lo qu'escueyas enantes de que se faiga cualesquier cambéu nel preséu d'almacenamientu. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Desaniciu d'un discu</strong><br/>Esto va <font color="red">desaniciar</font> tolos datos presentes nel preséu d'almacenamientu esbilláu. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Esti preséu d'almacenamientu tien %1 nelli. ¿Qué te prestaría facer?<br/>Vas ser a revisar y confirmar lo qu'escueyas enantes de que se faiga cualesquier cambéu nel preséu d'almacenamientu. - + No Swap Ensin intercambéu - + Reuse Swap Reusar un intercambéu - + Swap (no Hibernate) Intercambéu (ensin ivernación) - + Swap (with Hibernate) Intercambéu (con ivernación) - + Swap to file Intercambéu nun ficheru - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instalación anexa</strong><br/>L'instalador va redimensionar una partición pa dexar sitiu a %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Troquéu d'una partición</strong><br/>Troca una parción con %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Esti preséu d'almacenamientu yá tien un sistema operativu nelli. ¿Qué te prestaría facer?<br/>Vas ser a revisar y confirmar lo qu'escueyas enantes de que se faiga cualesquier cambéu nel preséu d'almacenamientu. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Esti preséu d'almacenamientu tien varios sistemes operativos nelli. ¿Qué te prestaría facer?<br/>Vas ser a revisar y confirmar lo qu'escueyas enantes de que se faiga cualesquier cambéu nel preséu d'almacenamientu. @@ -739,6 +739,14 @@ L'instalador va colar y van perdese tolos cambeos. Nun pue abrise pa la llectura'l ficheru de grupos. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1010,7 +1018,7 @@ L'instalador va colar y van perdese tolos cambeos. <html><head/><body><p>When this box is checked, your system will restart immediately when you click on <span style=" font-style:italic;">Done</span> or close the installer.</p></body></html> - <html><head/><body><p>Cuando se conseñe esti caxellu, el sistema va reaniciase nel intre al facer clic en <span style=" font-style:italic;">Fecho</span> o al zarrar l'instalador.</p></body></html> + <html><head/><body><p>Cuando se conseñe esti caxellu, el sistema va reaniciase nel intre al calcar <span style=" font-style:italic;">Fecho</span> o al zarrar l'instalador.</p></body></html> @@ -1576,7 +1584,7 @@ L'instalador va colar y van perdese tolos cambeos. - + font-weight: normal font-weight: normal @@ -1606,22 +1614,22 @@ L'instalador va colar y van perdese tolos cambeos. <small>Esti nome va usase si quies facer qu'esti ordenador seya visible a otres máquines nuna rede.</small> - + Log in automatically without asking for the password. Aniciar sesión automáticamente ensin pidir la contraseña. - + Use the same password for the administrator account. Usar la mesma contraseña pa la cuenta d'alministrador. - + Choose a password for the administrator account. Escueyi una contraseña pa la cuenta alministrativa. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Introduz la mesma contraseña dos vegaes pa que pueas comprobar los fallos d'escritura.</small> @@ -1767,17 +1775,17 @@ L'instalador va colar y van perdese tolos cambeos. I&nstalar el xestor d'arrinque en: - + Are you sure you want to create a new partition table on %1? ¿De xuru que quies crear una tabla de particiones nueva en %1? - + Can not create new partition Nun pue crease la partición nueva - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. La tabla de particiones en %1 yá tien %2 particiones primaries y nun puen amestase más. Desanicia una partición primaria y amiesta otra estendida. @@ -1909,7 +1917,7 @@ L'instalador va colar y van perdese tolos cambeos. Please choose a look-and-feel for the KDE Plasma Desktop. You can also skip this step and configure the look-and-feel once the system is installed. Clicking on a look-and-feel selection will give you a live preview of that look-and-feel. - Escueyi un aspeutu pal escritoriu de KDE Plasma, por favor. Tamién pues saltar esti pasu y configurar l'aspeutu nel momentu que s'instale'l sistema. Faciendo clic nuna aspeutu, esti va date una previsualización en direuto de cómo se ve. + Escueyi un aspeutu pal escritoriu de KDE Plasma, por favor. Tamién pues saltar esti pasu y configurar l'aspeutu nel momentu que s'instale'l sistema. Calcando nun aspeutu, esti va date una previsualización en direuto de cómo se ve. @@ -2051,6 +2059,11 @@ Salida: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2298,6 +2311,14 @@ Salida: L'instalador falló al redimensionar la partición %1 nel discu «%2». + + ResizeVolumeGroupDialog + + + Resize Volume Group + Redimensionar el grupu de volúmenes + + ResizeVolumeGroupJob @@ -2673,12 +2694,12 @@ Salida: <html><head/><body><p><a href="placeholder"><span style=" text-decoration: underline; color:#2980b9;">Click here for more information about user feedback</span></a></p></body></html> - <html><head/><body><p><a href="placeholder"><span style=" text-decoration: underline; color:#2980b9;">Fai clic equí pa más información tocante al siguimientu d'usuarios</span></a></p></body></html> + <html><head/><body><p><a href="placeholder"><span style=" text-decoration: underline; color:#2980b9;">Calca equí pa más información tocante al siguimientu d'usuarios</span></a></p></body></html> Install tracking helps %1 to see how many users they have, what hardware they install %1 to and (with the last two options below), get continuous information about preferred applications. To see what will be sent, please click the help icon next to each area. - Instalar el rastrexu ayuda a %1 a saber cuantos usuarios tien, el hardware qu'usen pa instalar %1 y (coles dos opciones d'embaxo), consiguir información continua tocante a les aplicaciones preferíes. Pa ver lo que va unviase, fai clic nel iconu d'ayuda al llau de cada área. + Instalar el rastrexu ayuda a %1 a saber cuantos usuarios tien, el hardware qu'usen pa instalar %1 y (coles dos opciones d'embaxo), consiguir información continua tocante a les aplicaciones preferíes. Pa ver lo que va unviase, calca l'iconu d'ayuda al llau de cada área. @@ -2707,33 +2728,33 @@ Salida: UsersPage - + Your username is too long. El nome d'usuariu ye perllargu. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. El nome d'usuariu contién caráuteres non válidos. Namái se permiten les lletres minúscules y los númberos. - + Your hostname is too short. El nome d'agospiu ye percurtiu. - + Your hostname is too long. El nome d'agospiu ye perllargu. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. El nome d'agospiu contién caráuteres non válidos. Namái se permiten lletres, númberos y guiones. - - + + Your passwords do not match! ¡Les contraseñes nun concasen! @@ -2750,8 +2771,8 @@ Salida: VolumeGroupBaseDialog - VolumeGroupDialog - VolumeGroupDialog + Create Volume Group + diff --git a/lang/calamares_be.ts b/lang/calamares_be.ts index d914b8086..a99a5dbe2 100644 --- a/lang/calamares_be.ts +++ b/lang/calamares_be.ts @@ -353,17 +353,17 @@ The installer will quit and all changes will be lost. - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -374,108 +374,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -738,6 +738,14 @@ The installer will quit and all changes will be lost. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1575,7 +1583,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal @@ -1605,22 +1613,22 @@ The installer will quit and all changes will be lost. - + Log in automatically without asking for the password. - + Use the same password for the administrator account. - + Choose a password for the administrator account. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> @@ -1766,17 +1774,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2047,6 +2055,11 @@ Output: Language (Country) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2294,6 +2307,14 @@ Output: + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2703,33 +2724,33 @@ Output: UsersPage - + Your username is too long. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - - + + Your passwords do not match! @@ -2746,7 +2767,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_bg.ts b/lang/calamares_bg.ts index 117df47b9..145cce2dc 100644 --- a/lang/calamares_bg.ts +++ b/lang/calamares_bg.ts @@ -355,17 +355,17 @@ The installer will quit and all changes will be lost. След: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Самостоятелно поделяне</strong><br/>Можете да създадете или преоразмерите дяловете сами. - + Boot loader location: Локация на програмата за начално зареждане: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 ще се смали до %2МБ и нов %3МБ дял ще бъде създаден за %4. @@ -376,108 +376,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: Сегашен: - + Reuse %1 as home partition for %2. Използване на %1 като домашен дял за %2 - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Изберете дял за смаляване, после влачете долната лента за преоразмеряване</strong> - + <strong>Select a partition to install on</strong> <strong>Изберете дял за инсталацията</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. EFI системен дял не е намерен. Моля, опитайте пак като използвате ръчно поделяне за %1. - + The EFI system partition at %1 will be used for starting %2. EFI системен дял в %1 ще бъде използван за стартиране на %2. - + EFI system partition: EFI системен дял: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Това устройство за съхранение няма инсталирана операционна система. Какво ще правите?<br/>Ще може да прегледате и потвърдите избора си, преди да се направят промени по устройството за съхранение. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Изтриване на диска</strong><br/>Това ще <font color="red">изтрие</font> всички данни върху устройството за съхранение. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Това устройство за съхранение има инсталиран %1. Какво ще правите?<br/>Ще може да прегледате и потвърдите избора си, преди да се направят промени по устройството за съхранение. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Инсталирайте покрай</strong><br/>Инсталатора ще раздроби дяла за да направи място за %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Замени дял</strong><br/>Заменя този дял с %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Това устройство за съхранение има инсталирана операционна система. Какво ще правите?<br/>Ще може да прегледате и потвърдите избора си, преди да се направят промени по устройството за съхранение. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Това устройство за съхранение има инсталирани операционни системи. Какво ще правите?<br/>Ще може да прегледате и потвърдите избора си, преди да се направят промени по устройството за съхранение. @@ -740,6 +740,14 @@ The installer will quit and all changes will be lost. Не може да се отвори файла на групите за четене. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1577,7 +1585,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal font-weight: нормална @@ -1607,22 +1615,22 @@ The installer will quit and all changes will be lost. <small>Това име ще бъде използвано ако направите компютъра видим за други при мрежа.</small> - + Log in automatically without asking for the password. Влизайте автоматично, без питане за паролата. - + Use the same password for the administrator account. Използвайте същата парола за администраторския акаунт. - + Choose a password for the administrator account. Изберете парола за администраторския акаунт. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Внесете същата парола два пъти, за да може да бъде проверена за правописни грешки.</small> @@ -1768,17 +1776,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? Сигурни ли сте че искате да създадете нова таблица на дяловете върху %1? - + Can not create new partition Не може да се създаде нов дял - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Таблицата на дяловете на %1 вече има %2 главни дялове, повече не може да се добавят. Моля, премахнете един главен дял и добавете разширен дял, на негово място. @@ -2051,6 +2059,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2298,6 +2311,14 @@ Output: Инсталатора не успя да преоразмери дял %1 върху диск '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2707,33 +2728,33 @@ Output: UsersPage - + Your username is too long. Вашето потребителско име е твърде дълго. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Потребителското ви име съдържа непозволени символи! Само малки букви и числа са позволени. - + Your hostname is too short. Вашето име на хоста е твърде кратко. - + Your hostname is too long. Вашето име на хоста е твърде дълго. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Вашето име на хоста съдържа непозволени символи! Само букви, цифри и тирета са позволени. - - + + Your passwords do not match! Паролите Ви не съвпадат! @@ -2750,7 +2771,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_ca.ts b/lang/calamares_ca.ts index 529c0e427..e17b85ced 100644 --- a/lang/calamares_ca.ts +++ b/lang/calamares_ca.ts @@ -128,7 +128,7 @@ Running command %1 %2 - Executant l'ordre %1 %2 + S'executa l'ordre %1 %2 @@ -136,7 +136,7 @@ Running %1 operation. - Executant l'operació %1. + S'executa l'operació %1. @@ -333,7 +333,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. For best results, please ensure that this computer: - Per obtenir els millors resultats, assegureu-vos, si us plau, que aquest ordinador: + Per obtenir els millors resultats, assegureu-vos, si us plau, que aquest ordinador... @@ -354,17 +354,17 @@ L'instal·lador es tancarà i tots els canvis es perdran. Després: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - <strong>Particions manuals</strong><br/>Podeu crear o redimensionar les particions vosaltres mateixos. + <strong>Particions manuals</strong><br/>Podeu crear o canviar la mida de les particions vosaltres mateixos. - + Boot loader location: Ubicació del gestor d'arrencada: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 s'encongirà a %2 MB i es crearà una partició nova de %3 MB per a %4. @@ -375,108 +375,108 @@ L'instal·lador es tancarà i tots els canvis es perdran. - - - + + + Current: Actual: - + Reuse %1 as home partition for %2. Reutilitza %1 com a partició de l'usuari per a %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Seleccioneu una partició per encongir i arrossegueu-la per redimensinar-la</strong> - + <strong>Select a partition to install on</strong> <strong>Seleccioneu una partició per fer-hi la instal·lació</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. No s'ha pogut trobar enlloc una partició EFI en aquest sistema. Si us plau, torneu enrere i use les particions manuals per configurar %1. - + The EFI system partition at %1 will be used for starting %2. La partició EFI de sistema a %1 s'usarà per iniciar %2. - + EFI system partition: Partició EFI del sistema: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Aquest dispositiu d'emmagatzematge no sembla que tingui un sistema operatiu. Què voleu fer?<br/>Podreu revisar i confirmar la tria abans que es faci cap canvi al dispositiu. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Esborra el disc</strong><br/>Això <font color="red">suprimirà</font> totes les dades del dispositiu seleccionat. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Aquest dispositiu d'emmagatzematge té %1. Què voleu fer?<br/>Podreu revisar i confirmar la tria abans que es faci cap canvi al dispositiu. - + No Swap Sense intercanvi - + Reuse Swap Reutilitza l'intercanvi - + Swap (no Hibernate) Intercanvi (sense hibernació) - + Swap (with Hibernate) Intercanvi (amb hibernació) - + Swap to file - Intercanvi a fitxer + Intercanvi en fitxer - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instal·la al costat</strong><br/>L'instal·lador reduirà una partició per fer espai per a %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Reemplaça una partició</strong><br/>Reemplaça una partició per %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Aquest dispositiu d'emmagatzematge ja té un sistema operatiu. Què voleu fer?<br/>Podreu revisar i confirmar la tria abans que es faci cap canvi al dispositiu. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Aquest dispositiu d'emmagatzematge ja múltiples sistemes operatius. Què voleu fer?<br/>Podreu revisar i confirmar la tria abans que es faci cap canvi al dispositiu. @@ -491,7 +491,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. Clearing mounts for partitioning operations on %1. - Netejant els muntatges per a les operacions del particionament de %1. + Es netegen els muntatges per a les operacions de les particions a %1. @@ -509,7 +509,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. Clearing all temporary mounts. - Netejant tots els muntatges temporals. + Es netegen tots els muntatges temporals. @@ -642,7 +642,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. Creating new %1 partition on %2. - Creant la partició nova %1 a %2. + Es crea la partició nova %1 a %2. @@ -683,17 +683,17 @@ L'instal·lador es tancarà i tots els canvis es perdran. Create new %1 partition table on %2. - Crea una nova taula de particions %1 a %2. + Crea una taula de particions nova %1 a %2. Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - Crea una nova taula de particions <strong>%1</strong> a <strong>%2</strong> (%3). + Crea una taula de particions nova <strong>%1</strong> a <strong>%2</strong> (%3). Creating new %1 partition table on %2. - Creant la nova taula de particions %1 a %2. + Es crea la taula de particions nova %1 a %2. @@ -716,7 +716,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. Creating user %1. - Creant l'usuari %1. + Es crea l'usuari %1. @@ -739,6 +739,14 @@ L'instal·lador es tancarà i tots els canvis es perdran. No es pot obrir el fitxer groups per ser llegit. + + CreateVolumeGroupDialog + + + Create Volume Group + Crea un grup de volums + + CreateVolumeGroupJob @@ -754,7 +762,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. Creating new volume group named %1. - Creant el grup de volums nou anomenat %1. + Es crea el grup de volums nou anomenat %1. @@ -796,7 +804,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. Deleting partition %1. - Suprimint la partició %1. + Se suprimeix la partició %1. @@ -959,7 +967,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. Please enter the same passphrase in both boxes. - Si us plau, introduïu la mateixa contrasenya a les dues caselles. + Si us plau, escriviu la mateixa contrasenya a les dues caselles. @@ -997,7 +1005,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. Setting up mount points. - Establint els punts de muntatge. + S'estableixen els punts de muntatge. @@ -1020,7 +1028,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. <h1>All done.</h1><br/>%1 has been installed on your computer.<br/>You may now restart into your new system, or continue using the %2 Live environment. - <h1>Tot fet.</h1><br/>%1 s'ha instal·lat a l'ordinador.<br/>Ara podeu reiniciar-lo per tal d'accedir al sistema operatiu nou o bé continuar utilitzant l'entorn autònom de %2. + <h1>Tot fet.</h1><br/>%1 s'ha instal·lat a l'ordinador.<br/>Ara podeu reiniciar-lo per tal d'accedir al sistema operatiu nou o bé continuar usant l'entorn autònom de %2. @@ -1061,7 +1069,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. Formatting partition %1 with file system %2. - Formatant la partició %1 amb el sistema de fitxers %2. + Es formata la partició %1 amb el sistema de fitxers %2. @@ -1084,7 +1092,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. Executing script: &nbsp;<code>%1</code> - Executant l'script &nbsp;<code>%1</code> + S'executa l'script &nbsp;<code>%1</code> @@ -1256,7 +1264,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. Loading location data... - Carregant les dades de la ubicació... + Es carreguen les dades d'ubicació... @@ -1576,7 +1584,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. - + font-weight: normal font-weight: normal @@ -1593,7 +1601,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. <small>Enter the same password twice, so that it can be checked for typing errors. A good password will contain a mixture of letters, numbers and punctuation, should be at least eight characters long, and should be changed at regular intervals.</small> - <small>Introduïu la mateixa contrasenya dues vegades, de manera que se'n puguin comprovar els errors de mecanografia. Una bona contrasenya contindrà una barreja de lletres, nombres i signes de puntuació, hauria de tenir un mínim de 8 caràcters i s'hauria de modificar a intervals regulars de temps.</small> + <small>Escriviu la mateixa contrasenya dues vegades, de manera que se'n puguin comprovar els errors de mecanografia. Una bona contrasenya contindrà una barreja de lletres, números i signes de puntuació, hauria de tenir un mínim de 8 caràcters i s'hauria de modificar a intervals regulars de temps.</small> @@ -1606,24 +1614,24 @@ L'instal·lador es tancarà i tots els canvis es perdran. <small>Aquest nom s'utilitzarà en cas que feu visible per a altres aquest ordinador en una xarxa.</small> - + Log in automatically without asking for the password. Entra automàticament sense demanar la contrasenya. - + Use the same password for the administrator account. Usa la mateixa contrasenya per al compte d'administració. - + Choose a password for the administrator account. Trieu una contrasenya per al compte d'administració. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> - <small>Introduïu la mateixa contrasenya dues vegades, per tal de poder-ne comprovar els errors de mecanografia.</small> + <small>Escriviu la mateixa contrasenya dues vegades, per tal de poder-ne comprovar els errors de mecanografia.</small> @@ -1767,17 +1775,17 @@ L'instal·lador es tancarà i tots els canvis es perdran. I&nstal·la el gestor d'arrencada a: - + Are you sure you want to create a new partition table on %1? Esteu segurs que voleu crear una nova taula de particions a %1? - + Can not create new partition No es pot crear la partició nova - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. La taula de particions de %1 ja té %2 particions primàries i no se n'hi poden afegir més. Si us plau, suprimiu una partició primària i afegiu-hi una partició ampliada. @@ -1787,7 +1795,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. Gathering system information... - Recopilant informació del sistema... + Es recopila informació del sistema... @@ -2051,6 +2059,11 @@ Sortida: Language (Country) %1 (%2) + + + (no mount point) + (sense punt de muntatge) + RemoveVolumeGroupJob @@ -2151,12 +2164,12 @@ Sortida: Gathering system information... - Recopilant informació del sistema... + Es recopila informació del sistema... has at least %1 GB available drive space - té com a mínim %1 GB d'espai de disc disponible. + tingui com a mínim %1 GB d'espai de disc disponible. @@ -2166,7 +2179,7 @@ Sortida: has at least %1 GB working memory - té com a mínim %1 GB de memòria de treball + tingui com a mínim %1 GB de memòria de treball. @@ -2176,17 +2189,17 @@ Sortida: is plugged in to a power source - està connectat a una font de corrent + estigui connectat a una presa de corrent. The system is not plugged in to a power source. - El sistema no està connectat a una font de corrent. + El sistema no està connectat a una presa de corrent. is connected to the Internet - està connectat a Internet + estigui connectat a Internet. @@ -2209,7 +2222,7 @@ Sortida: Resize Filesystem Job - Tasca de canvi de mida d'un sistema de fitxers + Tasca de canviar de mida un sistema de fitxers @@ -2219,7 +2232,7 @@ Sortida: The file-system resize job has an invalid configuration and will not run. - La tasca de canvi de mida d'un sistema de fitxers té una configuració no vàlida i no s'executarà. + La tasca de canviar de mida un sistema de fitxers té una configuració no vàlida i no s'executarà. @@ -2231,7 +2244,7 @@ Sortida: Calamares cannot start KPMCore for the file-system resize job. - El Calamares no pot iniciar KPMCore per a la tasca de canvi de mida d'un sistema de fitxers. + El Calamares no pot iniciar KPMCore per a la tasca de canviar de mida un sistema de fitxers. @@ -2280,22 +2293,30 @@ Sortida: Resize partition %1. - Redimensiona la partició %1. + Canvia la mida de la partició %1. Resize <strong>%2MB</strong> partition <strong>%1</strong> to <strong>%3MB</strong>. - Redimensiona la partició de <strong>%2MB</strong> <strong>%1</strong> a <strong>%3MB</strong>. + Canvia la mida de la partició de <strong>%2MB</strong>, <strong>%1</strong>, a <strong>%3MB</strong>. Resizing %2MB partition %1 to %3MB. - Canviant la mida de la partició %1 de %2MB a %3MB. + Es canvia la mida de la partició %1 de %2MB a %3MB. The installer failed to resize partition %1 on disk '%2'. - L'instal·lador no ha pogut redimensionar la partició %1 del disc '%2'. + L'instal·lador no ha pogut canviar la mida de la partició %1 del disc %2. + + + + ResizeVolumeGroupDialog + + + Resize Volume Group + Canvia la mida del grup de volums @@ -2314,7 +2335,7 @@ Sortida: The installer failed to resize a volume group named '%1'. - L'instal·lador ha fallat canviar la mida del grup de volums anomenat "%1". + L'instal·lador no ha pogut canviar la mida del grup de volums anomenat "%1". @@ -2322,7 +2343,7 @@ Sortida: Scanning storage devices... - Escanejant els dispositius d'emmagatzematge... + S'escanegen els dispositius d'emmagatzematge... @@ -2345,7 +2366,7 @@ Sortida: Setting hostname %1. - Establint el nom d'amfitrió %1. + S'estableix el nom d'amfitrió %1. @@ -2440,7 +2461,7 @@ Sortida: Clearing flags on partition <strong>%1</strong>. - Netejant les banderes de la partició <strong>%1</strong>. + Es netegen les banderes de la partició <strong>%1</strong>. @@ -2483,7 +2504,7 @@ Sortida: Setting password for user %1. - Establint la contrasenya de l'usuari %1. + S'estableix la contrasenya per a l'usuari %1. @@ -2707,33 +2728,33 @@ Sortida: UsersPage - + Your username is too long. El nom d'usuari és massa llarg. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. El nom d'usuari conté caràcters no vàlids. Només s'hi admeten lletres i números. - + Your hostname is too short. El nom d'amfitrió és massa curt. - + Your hostname is too long. El nom d'amfitrió és massa llarg. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. El nom d'amfitrió conté caràcters no vàlids. Només s'hi admeten lletres, números i guions. - - + + Your passwords do not match! Les contrasenyes no coincideixen! @@ -2750,8 +2771,8 @@ Sortida: VolumeGroupBaseDialog - VolumeGroupDialog - Diàleg del grup de volums + Create Volume Group + Crea un grup de volums @@ -2842,7 +2863,7 @@ Sortida: <h1>Welcome to the %1 installer.</h1> - <h1>Benvingut a l'instal·lador de %1.</h1> + <h1>Us donem la benvinguda a l'instal·lador de %1.</h1> @@ -2870,7 +2891,7 @@ Sortida: Welcome - Benvingut + Benvinguda \ No newline at end of file diff --git a/lang/calamares_cs_CZ.ts b/lang/calamares_cs_CZ.ts index a338c41b3..4c96bd33d 100644 --- a/lang/calamares_cs_CZ.ts +++ b/lang/calamares_cs_CZ.ts @@ -354,17 +354,17 @@ Instalační program bude ukončen a všechny změny ztraceny. Po: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Ruční rozdělení datového úložiště</strong><br/>Oddíly si můžete vytvořit nebo zvětšit/zmenšit stávající sami. - + Boot loader location: Umístění zaváděcího oddílu: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 bude zmenšen na %2MB a nový %3MB oddíl pro %4 bude vytvořen. @@ -375,108 +375,108 @@ Instalační program bude ukončen a všechny změny ztraceny. - - - + + + Current: Aktuální: - + Reuse %1 as home partition for %2. Zrecyklovat %1 na oddíl pro domovské složky %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Vyberte oddíl, který chcete zmenšit, poté posouváním na spodní liště změňte jeho velikost.</strong> - + <strong>Select a partition to install on</strong> <strong>Vyberte oddíl na který nainstalovat</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Nebyl nalezen žádný EFI systémový oddíl. Vraťte se zpět a nastavte %1 pomocí ručního rozdělení. - + The EFI system partition at %1 will be used for starting %2. Pro zavedení %2 se využije EFI systémový oddíl %1. - + EFI system partition: EFI systémový oddíl: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Zdá se, že na tomto úložném zařízení není žádný operační systém. Jak chcete postupovat?<br/>Než budou provedeny jakékoli změny na úložných zařízeních, bude zobrazen jejich přehled a budete požádáni o jejich potvrzení. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Vymazat datové úložiště</strong><br/>Touto volbou budou <font color="red">smazána</font> všechna data, která se nyní nachází na vybraném úložišti. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Na tomto úložném zařízení bylo nalezeno %1. Jak chcete postupovat?<br/>Než budou provedeny jakékoli změny na úložných zařízeních, bude zobrazen jejich přehled a budete požádáni o jejich potvrzení. - + No Swap Žádný odkládací prostor (swap) - + Reuse Swap Použít existující odkládací prostor - + Swap (no Hibernate) Odkládací prostor (bez uspávání na disk) - + Swap (with Hibernate) Odkládací prostor (s uspáváním na disk) - + Swap to file Odkládat do souboru - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Nainstalovat vedle</strong><br/>Instalátor zmenší oddíl a vytvoří místo pro %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Nahradit oddíl</strong><br/>Původní oddíl bude nahrazen %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Na tomto úložném zařízení se už nachází operační systém. Jak chcete postupovat?<br/>Než budou provedeny jakékoli změny na úložných zařízeních, bude zobrazen jejich přehled a budete požádáni o jejich potvrzení. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Na tomto úložném zařízení se už nachází několik operačních systémů. Jak chcete postupovat?<br/>Než budou provedeny jakékoli změny na úložných zařízeních, bude zobrazen jejich přehled změn a budete požádáni o jejich potvrzení. @@ -739,6 +739,14 @@ Instalační program bude ukončen a všechny změny ztraceny. Nepodařilo se otevřít soubor groups pro čtení. + + CreateVolumeGroupDialog + + + Create Volume Group + Vytvořit skupinu svazků + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ Instalační program bude ukončen a všechny změny ztraceny. - + font-weight: normal šířka písma: normální @@ -1606,22 +1614,22 @@ Instalační program bude ukončen a všechny změny ztraceny. <small>Pod tímto názvem se bude počítač zobrazovat ostatním počítačům v síti.</small> - + Log in automatically without asking for the password. Po spuštění systému se přihlásit automaticky bez hesla. - + Use the same password for the administrator account. Použít stejné heslo i pro účet správce systému. - + Choose a password for the administrator account. Zvolte si heslo pro účet správce systému. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Vložte stejné heslo dvakrát pro kontrolu překlepů.</small> @@ -1767,17 +1775,17 @@ Instalační program bude ukončen a všechny změny ztraceny. Zavaděč systému &nainstalovat na: - + Are you sure you want to create a new partition table on %1? Opravdu chcete na %1 vytvořit novou tabulku oddílů? - + Can not create new partition Nevytvářet nový oddíl - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Tabulka oddílů na %1 už obsahuje %2 hlavních oddílů a proto už není možné přidat další. Odeberte jeden z hlavních oddílů a namísto něj vytvořte rozšířený oddíl. @@ -2051,6 +2059,11 @@ Výstup: Language (Country) %1 (%2) + + + (no mount point) + (žádný přípojný bod) + RemoveVolumeGroupJob @@ -2298,6 +2311,14 @@ Výstup: Instalátoru se nezdařilo změnit velikost oddílu %1 na jednotce „%2“. + + ResizeVolumeGroupDialog + + + Resize Volume Group + Změnit velikost skupiny svazků + + ResizeVolumeGroupJob @@ -2707,33 +2728,33 @@ Výstup: UsersPage - + Your username is too long. Vaše uživatelské jméno je příliš dlouhé. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Vaše uživatelské jméno obsahuje neplatné znaky. Jsou povolena pouze malá písmena a (arabské) číslice. - + Your hostname is too short. Název stroje je příliš krátký. - + Your hostname is too long. Název stroje je příliš dlouhý. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Název stroje obsahuje neplatné znaky. Jsou povoleny pouze písmena, číslice a spojovníky. - - + + Your passwords do not match! Zadání hesla se neshodují! @@ -2750,8 +2771,8 @@ Výstup: VolumeGroupBaseDialog - VolumeGroupDialog - Dialog skupiny svazků + Create Volume Group + Vytvořit skupinu svazků diff --git a/lang/calamares_da.ts b/lang/calamares_da.ts index 604a177fb..b9f5d8598 100644 --- a/lang/calamares_da.ts +++ b/lang/calamares_da.ts @@ -354,17 +354,17 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.Efter: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Manuel partitionering</strong><br/>Du kan selv oprette og ændre størrelse på partitioner. - + Boot loader location: Placering af bootloader: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 vil blive skrumpet til %2 MB og en ny %3 MB partition vil blive oprettet for %4. @@ -375,108 +375,108 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. - - - + + + Current: Nuværende: - + Reuse %1 as home partition for %2. Genbrug %1 som hjemmepartition til %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Vælg en partition der skal mindskes, træk herefter den nederste bjælke for at ændre størrelsen</strong> - + <strong>Select a partition to install on</strong> <strong>Vælg en partition at installere på</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. En EFI-partition blev ikke fundet på systemet. Gå venligst tilbage og brug manuel partitionering til at opsætte %1. - + The EFI system partition at %1 will be used for starting %2. EFI-systempartitionen ved %1 vil blive brugt til at starte %2. - + EFI system partition: EFI-systempartition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Lagerenheden ser ikke ud til at indeholde et styresystem. Hvad ønsker du at gøre?<br/>Du vil få mulighed for at se og bekræfte dine valg før der sker ændringer til lagerenheden. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Slet disk</strong><br/>Det vil <font color="red">slette</font> alt data på den valgte lagerenhed. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Lagerenheden har %1 på sig. Hvad ønsker du at gøre?<br/>Du vil få mulighed for at se og bekræfte dine valg før det sker ændringer til lagerenheden. - + No Swap Ingen swap - + Reuse Swap Genbrug swap - + Swap (no Hibernate) Swap (ingen dvale) - + Swap (with Hibernate) Swap (med dvale) - + Swap to file Swap til fil - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Installér ved siden af</strong><br/>Installationsprogrammet vil mindske en partition for at gøre plads til %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Erstat en partition</strong><br/>Erstatter en partition med %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Lagerenheden indeholder allerede et styresystem. Hvad ønsker du at gøre?<br/>Du vil få mulighed for at se og bekræfte dine valg før der sker ændringer til lagerenheden. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Lagerenheden indeholder flere styresystemer. Hvad ønsker du at gøre?<br/>Du vil få mulighed for at se og bekræfte dine valg før der sker ændringer til lagerenheden. @@ -739,6 +739,14 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.Kan ikke åbne gruppernes fil til læsning. + + CreateVolumeGroupDialog + + + Create Volume Group + Opret diskområdegruppe + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. - + font-weight: normal font-weight: normal @@ -1606,22 +1614,22 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.<small>Navnet bruges, hvis du gør computeren synlig for andre på et netværk.</small> - + Log in automatically without asking for the password. Log ind automatisk uden at spørge efter adgangskoden. - + Use the same password for the administrator account. Brug den samme adgangskode til administratorkontoen. - + Choose a password for the administrator account. Vælg en adgangskode til administratorkontoen. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Skriv den samme adgangskode to gange, så det kan blive tjekket for skrivefejl.</small> @@ -1767,17 +1775,17 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.I&nstallér bootloader på: - + Are you sure you want to create a new partition table on %1? Er du sikker på, at du vil oprette en ny partitionstabel på %1? - + Can not create new partition Kan ikke oprette ny partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Partitionstabellen på %1 har allerede %2 primære partitioner, og der kan ikke tilføjes flere. Fjern venligst en primær partition og tilføj i stedet en udvidet partition. @@ -2051,6 +2059,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + (intet monteringspunkt) + RemoveVolumeGroupJob @@ -2298,6 +2311,14 @@ Output: Installationsprogrammet kunne ikke ændre størrelse på partition %1 på disk '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + Ændr størrelse på diskområdegruppe + + ResizeVolumeGroupJob @@ -2707,33 +2728,33 @@ Output: UsersPage - + Your username is too long. Dit brugernavn er for langt. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Dit brugernavn indeholder ugyldige tegn. Kun små bogstaver og tal er tilladt. - + Your hostname is too short. Dit værtsnavn er for kort. - + Your hostname is too long. Dit værtsnavn er for langt. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Dit værtsnavn indeholder ugyldige tegn. Kun bogstaver, tal og tankestreger er tilladt. - - + + Your passwords do not match! Dine adgangskoder er ikke ens! @@ -2750,8 +2771,8 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog - Diskområdegruppe-dialog + Create Volume Group + Opret diskområdegruppe diff --git a/lang/calamares_de.ts b/lang/calamares_de.ts index 7df2f108b..2e387059b 100644 --- a/lang/calamares_de.ts +++ b/lang/calamares_de.ts @@ -354,17 +354,17 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. Nachher: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Manuelle Partitionierung</strong><br/>Sie können Partitionen eigenhändig erstellen oder in der Grösse verändern. - + Boot loader location: Installationsziel des Bootloaders: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 wird auf %2MB verkleinert und eine neue Partition mit einer Größe von %3MB wird für %4 erstellt werden. @@ -375,108 +375,108 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. - - - + + + Current: Aktuell: - + Reuse %1 as home partition for %2. %1 als Home-Partition für %2 wiederverwenden. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Wählen Sie die zu verkleinernde Partition, dann ziehen Sie den Regler, um die Größe zu ändern</strong> - + <strong>Select a partition to install on</strong> <strong>Wählen Sie eine Partition für die Installation</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Es wurde keine EFI-Systempartition auf diesem System gefunden. Bitte gehen Sie zurück und nutzen Sie die manuelle Partitionierung für das Einrichten von %1. - + The EFI system partition at %1 will be used for starting %2. Die EFI-Systempartition %1 wird benutzt, um %2 zu starten. - + EFI system partition: EFI-Systempartition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Auf diesem Speichermedium scheint kein Betriebssystem installiert zu sein. Was möchten Sie tun?<br/>Sie können Ihre Auswahl überprüfen und bestätigen, bevor Änderungen auf diesem Speichermedium vorgenommen werden. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Festplatte löschen</strong><br/>Dies wird alle vorhandenen Daten auf dem gewählten Speichermedium <font color="red">löschen</font>. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Auf diesem Speichermedium ist %1 installiert. Was möchten Sie tun?<br/>Sie können Ihre Auswahl überprüfen und bestätigen, bevor Änderungen an dem Speichermedium vorgenommen werden. - + No Swap Kein Swap - + Reuse Swap Swap wiederverwenden - + Swap (no Hibernate) Swap (ohne Ruhezustand) - + Swap (with Hibernate) Swap (mit Ruhezustand) - + Swap to file Swap in Datei - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Parallel dazu installieren</strong><br/>Das Installationsprogramm wird eine Partition verkleinern, um Platz für %1 zu schaffen. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Ersetze eine Partition</strong><br/>Ersetzt eine Partition durch %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Dieses Speichermedium enthält bereits ein Betriebssystem. Was möchten Sie tun?<br/>Sie können Ihre Auswahl überprüfen und bestätigen, bevor Änderungen an dem Speichermedium vorgenommen wird. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Auf diesem Speichermedium sind mehrere Betriebssysteme installiert. Was möchten Sie tun?<br/>Sie können Ihre Auswahl überprüfen und bestätigen, bevor Änderungen an dem Speichermedium vorgenommen werden. @@ -739,6 +739,14 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. Kann groups-Datei nicht zum Lesen öffnen. + + CreateVolumeGroupDialog + + + Create Volume Group + Erstelle Volume Group + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. - + font-weight: normal font-weight: normal @@ -1606,22 +1614,22 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. <small>Dieser Name wird benutzt, wenn Sie den Computer im Netzwerk sichtbar machen.</small> - + Log in automatically without asking for the password. Automatisches Einloggen ohne Passwortabfrage. - + Use the same password for the administrator account. Nutze das gleiche Passwort auch für das Administratorkonto. - + Choose a password for the administrator account. Wählen Sie ein Passwort für das Administrationskonto. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Geben Sie das Passwort zweimal ein, um es auf Tippfehler zu prüfen.</small> @@ -1767,17 +1775,17 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. I&nstalliere Bootloader auf: - + Are you sure you want to create a new partition table on %1? Sind Sie sicher, dass Sie eine neue Partitionstabelle auf %1 erstellen möchten? - + Can not create new partition Neue Partition kann nicht erstellt werden - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Die Partitionstabelle auf %1 hat bereits %2 primäre Partitionen und weitere können nicht hinzugefügt werden. Bitte entfernen Sie eine primäre Partition und fügen Sie stattdessen eine erweiterte Partition hinzu. @@ -2051,6 +2059,11 @@ Ausgabe: Language (Country) %1 (%2) + + + (no mount point) + (kein Einhängepunkt) + RemoveVolumeGroupJob @@ -2298,6 +2311,14 @@ Ausgabe: Das Installationsprogramm konnte die Grösse von Partition %1 auf Datenträger '%2' nicht ändern. + + ResizeVolumeGroupDialog + + + Resize Volume Group + Größe der Volume Group verändern + + ResizeVolumeGroupJob @@ -2707,33 +2728,33 @@ Ausgabe: UsersPage - + Your username is too long. Ihr Nutzername ist zu lang. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Ihr Nutzername enthält ungültige Zeichen. Nur Kleinbuchstaben und Ziffern sind erlaubt. - + Your hostname is too short. Ihr Hostname ist zu kurz. - + Your hostname is too long. Ihr Hostname ist zu lang. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Ihr Hostname enthält ungültige Zeichen. Nur Buchstaben, Ziffern und Striche sind erlaubt. - - + + Your passwords do not match! Ihre Passwörter stimmen nicht überein! @@ -2750,8 +2771,8 @@ Ausgabe: VolumeGroupBaseDialog - VolumeGroupDialog - VolumeGroupDialog + Create Volume Group + Erstelle Volume Group diff --git a/lang/calamares_el.ts b/lang/calamares_el.ts index f2e8e262c..780303db7 100644 --- a/lang/calamares_el.ts +++ b/lang/calamares_el.ts @@ -354,17 +354,17 @@ The installer will quit and all changes will be lost. Μετά: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Χειροκίνητη τμηματοποίηση</strong><br/>Μπορείτε να δημιουργήσετε κατατμήσεις ή να αλλάξετε το μέγεθός τους μόνοι σας. - + Boot loader location: Τοποθεσία προγράμματος εκκίνησης: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. Το %1 θα συρρικνωθεί σε %2MB και μία νέα κατάτμηση %3MB θα δημιουργηθεί για το %4. @@ -375,108 +375,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: Τρέχον: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Επιλέξτε ένα διαμέρισμα για σμίκρυνση, και μετά σύρετε το κάτω τμήμα της μπάρας για αλλαγή του μεγέθους</strong> - + <strong>Select a partition to install on</strong> <strong>Επιλέξτε διαμέρισμα για την εγκατάσταση</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Πουθενά στο σύστημα δεν μπορεί να ανιχθευθεί μία κατάτμηση EFI. Παρακαλώ επιστρέψτε πίσω και χρησιμοποιήστε τη χειροκίνητη τμηματοποίηση για την εγκατάσταση του %1. - + The EFI system partition at %1 will be used for starting %2. Η κατάτμηση συστήματος EFI στο %1 θα χρησιμοποιηθεί για την εκκίνηση του %2. - + EFI system partition: Κατάτμηση συστήματος EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Η συσκευή αποθήκευσης δεν φαίνεται να διαθέτει κάποιο λειτουργικό σύστημα. Τί θα ήθελες να κάνεις;<br/>Θα έχεις την δυνατότητα να επιβεβαιώσεις και αναθεωρήσεις τις αλλαγές πριν γίνει οποιαδήποτε αλλαγή στην συσκευή αποθήκευσης. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Διαγραφή του δίσκου</strong><br/>Αυτό θα <font color="red">διαγράψει</font> όλα τα αρχεία στην επιλεγμένη συσκευή αποθήκευσης. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Εγκατάσταση σε επαλληλία</strong><br/>Η εγκατάσταση θα συρρικνώσει μία κατάτμηση για να κάνει χώρο για το %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Αντικατάσταση μίας κατάτμησης</strong><br/>Αντικαθιστά μία κατάτμηση με το %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -739,6 +739,14 @@ The installer will quit and all changes will be lost. Δεν είναι δυνατό το άνοιγμα του αρχείου ομάδων για ανάγνωση. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal font-weight: normal @@ -1606,22 +1614,22 @@ The installer will quit and all changes will be lost. <small>Αυτό το όνομα θα χρησιμοποιηθεί αν κάνετε τον υπολογιστή ορατό στους άλλους σε ένα δίκτυο.</small> - + Log in automatically without asking for the password. Σύνδεση αυτόματα χωρίς να ζητείται κωδικός πρόσβασης. - + Use the same password for the administrator account. Χρησιμοποιήστε τον ίδιο κωδικό πρόσβασης για τον λογαριασμό διαχειριστή. - + Choose a password for the administrator account. Επιλέξτε ένα κωδικό για τον λογαριασμό διαχειριστή. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Εισάγετε τον ίδιο κωδικό δύο φορές, ώστε να γίνει έλεγχος για τυπογραφικά σφάλματα.</small> @@ -1767,17 +1775,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? Θέλετε σίγουρα να δημιουργήσετε έναν νέο πίνακα κατατμήσεων στο %1; - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2048,6 +2056,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2295,6 +2308,14 @@ Output: Η εγκατάσταση απέτυχε να αλλάξει το μέγεθος της κατάτμησης %1 στον δίσκο '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2704,33 +2725,33 @@ Output: UsersPage - + Your username is too long. Το όνομα χρήστη είναι πολύ μακρύ. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Το όνομα χρήστη περιέχει μη έγκυρους χαρακτήρες. Επιτρέπονται μόνο πεζά γράμματα και αριθμητικά ψηφία. - + Your hostname is too short. Το όνομα υπολογιστή είναι πολύ σύντομο. - + Your hostname is too long. Το όνομα υπολογιστή είναι πολύ μακρύ. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Το όνομα υπολογιστή περιέχει μη έγκυρους χαρακτήρες. Επιτρέπονται μόνο γράμματα, αριθμητικά ψηφία και παύλες. - - + + Your passwords do not match! Οι κωδικοί πρόσβασης δεν ταιριάζουν! @@ -2747,7 +2768,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_en.ts b/lang/calamares_en.ts index 78e30bc6f..1d4c76161 100644 --- a/lang/calamares_en.ts +++ b/lang/calamares_en.ts @@ -354,17 +354,17 @@ The installer will quit and all changes will be lost. After: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -375,108 +375,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: Current: - + Reuse %1 as home partition for %2. Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. The EFI system partition at %1 will be used for starting %2. - + EFI system partition: EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap No Swap - + Reuse Swap Reuse Swap - + Swap (no Hibernate) Swap (no Hibernate) - + Swap (with Hibernate) Swap (with Hibernate) - + Swap to file Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -739,6 +739,14 @@ The installer will quit and all changes will be lost. Cannot open groups file for reading. + + CreateVolumeGroupDialog + + + Create Volume Group + Create Volume Group + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal font-weight: normal @@ -1606,22 +1614,22 @@ The installer will quit and all changes will be lost. <small>This name will be used if you make the computer visible to others on a network.</small> - + Log in automatically without asking for the password. Log in automatically without asking for the password. - + Use the same password for the administrator account. Use the same password for the administrator account. - + Choose a password for the administrator account. Choose a password for the administrator account. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Enter the same password twice, so that it can be checked for typing errors.</small> @@ -1767,17 +1775,17 @@ The installer will quit and all changes will be lost. I&nstall boot loader on: - + Are you sure you want to create a new partition table on %1? Are you sure you want to create a new partition table on %1? - + Can not create new partition Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2051,6 +2059,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + (no mount point) + RemoveVolumeGroupJob @@ -2298,6 +2311,14 @@ Output: The installer failed to resize partition %1 on disk '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + Resize Volume Group + + ResizeVolumeGroupJob @@ -2707,33 +2728,33 @@ Output: UsersPage - + Your username is too long. Your username is too long. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Your username contains invalid characters. Only lowercase letters and numbers are allowed. - + Your hostname is too short. Your hostname is too short. - + Your hostname is too long. Your hostname is too long. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - - + + Your passwords do not match! Your passwords do not match! @@ -2750,8 +2771,8 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog - VolumeGroupDialog + Create Volume Group + Create Volume Group diff --git a/lang/calamares_en_GB.ts b/lang/calamares_en_GB.ts index 3ff99776d..01edc6f59 100644 --- a/lang/calamares_en_GB.ts +++ b/lang/calamares_en_GB.ts @@ -354,17 +354,17 @@ The installer will quit and all changes will be lost. After: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -375,108 +375,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: Current: - + Reuse %1 as home partition for %2. Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. The EFI system partition at %1 will be used for starting %2. - + EFI system partition: EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -739,6 +739,14 @@ The installer will quit and all changes will be lost. Cannot open groups file for reading. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal font-weight: normal @@ -1606,22 +1614,22 @@ The installer will quit and all changes will be lost. <small>This name will be used if you make the computer visible to others on a network.</small> - + Log in automatically without asking for the password. Log in automatically without asking for the password. - + Use the same password for the administrator account. Use the same password for the administrator account. - + Choose a password for the administrator account. Choose a password for the administrator account. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Enter the same password twice, so that it can be checked for typing errors.</small> @@ -1767,17 +1775,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? Are you sure you want to create a new partition table on %1? - + Can not create new partition Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2051,6 +2059,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2298,6 +2311,14 @@ Output: The installer failed to resize partition %1 on disk '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2707,33 +2728,33 @@ Output: UsersPage - + Your username is too long. Your username is too long. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Your username contains invalid characters. Only lowercase letters and numbers are allowed. - + Your hostname is too short. Your hostname is too short. - + Your hostname is too long. Your hostname is too long. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - - + + Your passwords do not match! Your passwords do not match! @@ -2750,7 +2771,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_eo.ts b/lang/calamares_eo.ts index 64157f1c2..689fedd2c 100644 --- a/lang/calamares_eo.ts +++ b/lang/calamares_eo.ts @@ -354,17 +354,17 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -375,108 +375,108 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. - - - + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -739,6 +739,14 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. - + font-weight: normal @@ -1606,22 +1614,22 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. - + Log in automatically without asking for the password. - + Use the same password for the administrator account. - + Choose a password for the administrator account. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> @@ -1767,17 +1775,17 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2048,6 +2056,11 @@ Output: Language (Country) %1(%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2295,6 +2308,14 @@ Output: + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2704,33 +2725,33 @@ Output: UsersPage - + Your username is too long. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - - + + Your passwords do not match! @@ -2747,7 +2768,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_es.ts b/lang/calamares_es.ts index abd123730..c477d3e6b 100644 --- a/lang/calamares_es.ts +++ b/lang/calamares_es.ts @@ -355,17 +355,17 @@ Saldrá del instalador y se perderán todos los cambios. Despues: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Particionado manual </strong><br/> Usted puede crear o cambiar el tamaño de las particiones usted mismo. - + Boot loader location: Ubicación del cargador de arranque: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 se contraerá a %2 MB y se creará una nueva partición de %3 MB para %4. @@ -376,108 +376,108 @@ Saldrá del instalador y se perderán todos los cambios. - - - + + + Current: Corriente - + Reuse %1 as home partition for %2. Volver a usar %1 como partición home para %2 - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Seleccione una partición para reducir el tamaño, a continuación, arrastre la barra inferior para cambiar el tamaño</strong> - + <strong>Select a partition to install on</strong> <strong>Seleccione una partición para instalar en</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. No se puede encontrar una partición de sistema EFI en ningún lugar de este sistema. Por favor, vuelva y use el particionamiento manual para establecer %1. - + The EFI system partition at %1 will be used for starting %2. La partición de sistema EFI en %1 se usará para iniciar %2. - + EFI system partition: Partición del sistema EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de almacenamiento no parece tener un sistema operativo en él. ¿Qué quiere hacer?<br/>Podrá revisar y confirmar sus elecciones antes de que se haga cualquier cambio en el dispositivo de almacenamiento. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Borrar disco</strong><br/>Esto <font color="red">borrará</font> todos los datos presentes actualmente en el dispositivo de almacenamiento. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. %1 se encuentra instalado en este dispositivo de almacenamiento. ¿Qué desea hacer?<br/>Podrá revisar y confirmar su elección antes de que cualquier cambio se haga efectivo en el dispositivo de almacenamiento. - + No Swap - + Sin Swap - + Reuse Swap - + Reusar Swap - + Swap (no Hibernate) - + Swap (sin hibernación) - + Swap (with Hibernate) - + Swap (con hibernación) - + Swap to file - + Swap a archivo - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instalar junto al otro SO</strong><br/>El instalador reducirá la partición del SO existente para tener espacio para instalar %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Reemplazar una partición</strong><br/>Reemplazar una partición con %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de almacenamiento parece que ya tiene un sistema operativo instalado en él. ¿Qué desea hacer?<br/>Podrá revisar y confirmar su elección antes de que cualquier cambio se haga efectivo en el dispositivo de almacenamiento. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de almacenamiento contiene múltiples sistemas operativos instalados en él. ¿Qué desea hacer?<br/>Podrá revisar y confirmar su elección antes de que cualquier cambio se haga efectivo en el dispositivo de almacenamiento. @@ -740,6 +740,14 @@ Saldrá del instalador y se perderán todos los cambios. No es posible abrir el archivo de grupos del sistema. + + CreateVolumeGroupDialog + + + Create Volume Group + Crear grupo de volúmenes + + CreateVolumeGroupJob @@ -1577,7 +1585,7 @@ Saldrá del instalador y se perderán todos los cambios. - + font-weight: normal tamaño de la fuente: normal @@ -1607,22 +1615,22 @@ Saldrá del instalador y se perderán todos los cambios. <small>Este nombre será utilizado si hace este equipo visible para otros en una red.</small> - + Log in automatically without asking for the password. Conectarse automaticamente sin pedir la contraseña. - + Use the same password for the administrator account. Usar la misma contraseña para la cuenta de administrador. - + Choose a password for the administrator account. Elegir una contraseña para la cuenta de administrador. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Escriba dos veces la contraseña para que se puede verificar en caso de errores al escribir.</small> @@ -1768,17 +1776,17 @@ Saldrá del instalador y se perderán todos los cambios. Instalar gestor de arranque en: - + Are you sure you want to create a new partition table on %1? ¿Está seguro de querer crear una nueva tabla de particiones en %1? - + Can not create new partition No se puede crear una partición nueva - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. La tabla de particiones en %1 tiene %2 particiones primarias y no se pueden agregar más. Por favor remueva una partición primaria y agregue una partición extendida en su reemplazo. @@ -2052,6 +2060,11 @@ Salida: Language (Country) %1 (%2) + + + (no mount point) + (sin punto de montaje) + RemoveVolumeGroupJob @@ -2299,6 +2312,14 @@ Salida: El instalador ha fallado a la hora de reducir la partición %1 en el disco '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + Cambiar el tamaño del grupo de volúmenes + + ResizeVolumeGroupJob @@ -2708,33 +2729,33 @@ Salida: UsersPage - + Your username is too long. Su nombre de usuario es demasiado largo. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Su nombre de usuario contiene caracteres inválidos. Solo se admiten letras minúsculas y números. - + Your hostname is too short. El nombre del Host es demasiado corto. - + Your hostname is too long. El nombre del Host es demasiado largo. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. El nombre del Host contiene caracteres inválidos. Solo se admiten letras, números y guiones. - - + + Your passwords do not match! ¡Sus contraseñas no coinciden! @@ -2751,8 +2772,8 @@ Salida: VolumeGroupBaseDialog - VolumeGroupDialog - + Create Volume Group + Crear grupo de volúmenes diff --git a/lang/calamares_es_MX.ts b/lang/calamares_es_MX.ts index 9d473372f..afd59c824 100644 --- a/lang/calamares_es_MX.ts +++ b/lang/calamares_es_MX.ts @@ -354,17 +354,17 @@ El instalador terminará y se perderán todos los cambios. Después: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Particionado manual </strong><br/> Puede crear o cambiar el tamaño de las particiones usted mismo. - + Boot loader location: Ubicación del cargador de arranque: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 será reducido a %2MB y una nueva partición %3MB will be created for %4. @@ -375,109 +375,109 @@ El instalador terminará y se perderán todos los cambios. - - - + + + Current: Actual: - + Reuse %1 as home partition for %2. Reuse %1 como partición home para %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Seleccione una partición para reducir el tamaño, a continuación, arrastre la barra inferior para redimencinar</strong> - + <strong>Select a partition to install on</strong> <strong>Seleccione una partición para instalar</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. No se puede encontrar en el sistema una partición EFI. Por favor vuelva atrás y use el particionamiento manual para configurar %1. - + The EFI system partition at %1 will be used for starting %2. La partición EFI en %1 será usada para iniciar %2. - + EFI system partition: Partición de sistema EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de almacenamiento parece no tener un sistema operativo en el. ¿que le gustaría hacer?<br/> Usted podrá revisar y confirmar sus elecciones antes que cualquier cambio se realice al dispositivo de almacenamiento. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Borrar disco</strong> <br/>Esto <font color="red">borrará</font> todos los datos presentes actualmente en el dispositivo de almacenamiento seleccionado. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de almacenamiento tiene %1 en el. ¿Que le gustaría hacer? <br/>Usted podrá revisar y confirmar sus elecciones antes de que cualquier cambio se realice al dispositivo de almacenamiento. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instalar junto a</strong> <br/>El instalador reducirá una partición con el fin de hacer espacio para %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Reemplazar una partición</strong> <br/>Reemplaza una partición con %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de almacenamiento ya tiene un sistema operativo en el. ¿Que le gustaría hacer?<br/> Usted podrá revisar y confirmar sus elecciones antes que cualquier cambio se realice al dispositivo de almacenamiento. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de almacenamiento tiene múltiples sistemas operativos en el. ¿Que le gustaria hacer?<br/> Usted podrá revisar y confirmar sus elecciones antes que cualquier cambio se realice al dispositivo de almacenamiento. @@ -740,6 +740,14 @@ El instalador terminará y se perderán todos los cambios. No se puede abrir el archivo groups para lectura. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1577,7 +1585,7 @@ El instalador terminará y se perderán todos los cambios. - + font-weight: normal Tamaño de fuente: normal @@ -1607,22 +1615,22 @@ El instalador terminará y se perderán todos los cambios. <small>Este nombre sera usado si hace esta computadora visible para otros en una red.</small> - + Log in automatically without asking for the password. Iniciar sesión automáticamente sin preguntar por la contraseña. - + Use the same password for the administrator account. Usar la misma contraseña para la cuenta de administrador. - + Choose a password for the administrator account. Elegir una contraseña para la cuenta de administrador. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Escribe dos veces la contraseña para comprobar si tiene errores</small> @@ -1768,17 +1776,17 @@ El instalador terminará y se perderán todos los cambios. - + Are you sure you want to create a new partition table on %1? ¿Está seguro de querer crear una nueva tabla de particiones en %1? - + Can not create new partition No se puede crear nueva partición - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. La tabla de partición en %1 ya tiene %2 particiones primarias, y no pueden agregarse mas. Favor remover una partición primaria y en cambio, agregue una partición extendida. @@ -2052,6 +2060,11 @@ Salida Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2300,6 +2313,14 @@ Salida El instalador ha fallado al reducir la partición %1 en el disco '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2709,33 +2730,33 @@ Salida UsersPage - + Your username is too long. Tu nombre de usuario es demasiado largo. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Tu nombre de usuario contiene caracteres no válidos. Solo se pueden usar letras minúsculas y números. - + Your hostname is too short. El nombre de tu equipo es demasiado corto. - + Your hostname is too long. El nombre de tu equipo es demasiado largo. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Tu nombre de equipo contiene caracteres no válidos Sólo se pueden usar letras, números y guiones. - - + + Your passwords do not match! Las contraseñas no coinciden! @@ -2752,7 +2773,7 @@ Salida VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_es_PR.ts b/lang/calamares_es_PR.ts index 7b17fad8c..5e340e1c6 100644 --- a/lang/calamares_es_PR.ts +++ b/lang/calamares_es_PR.ts @@ -353,17 +353,17 @@ The installer will quit and all changes will be lost. - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -374,108 +374,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -738,6 +738,14 @@ The installer will quit and all changes will be lost. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1575,7 +1583,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal @@ -1605,22 +1613,22 @@ The installer will quit and all changes will be lost. - + Log in automatically without asking for the password. - + Use the same password for the administrator account. - + Choose a password for the administrator account. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> @@ -1766,17 +1774,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2047,6 +2055,11 @@ Output: Language (Country) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2294,6 +2307,14 @@ Output: + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2703,33 +2724,33 @@ Output: UsersPage - + Your username is too long. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - - + + Your passwords do not match! @@ -2746,7 +2767,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_et.ts b/lang/calamares_et.ts index fa61cfa35..f12ade006 100644 --- a/lang/calamares_et.ts +++ b/lang/calamares_et.ts @@ -354,17 +354,17 @@ Paigaldaja sulgub ning kõik muutused kaovad. Pärast: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Käsitsi partitsioneerimine</strong><br/>Sa võid ise partitsioone luua või nende suurust muuta. - + Boot loader location: Käivituslaaduri asukoht: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 vähendatakse suuruseni %2MB ja %4 jaoks luuakse uus %3MB partitsioon. @@ -375,108 +375,108 @@ Paigaldaja sulgub ning kõik muutused kaovad. - - - + + + Current: Hetkel: - + Reuse %1 as home partition for %2. Taaskasuta %1 %2 kodupartitsioonina. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Vali vähendatav partitsioon, seejärel sikuta alumist riba suuruse muutmiseks</strong> - + <strong>Select a partition to install on</strong> <strong>Vali partitsioon, kuhu paigaldada</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. EFI süsteemipartitsiooni ei leitud sellest süsteemist. Palun mine tagasi ja kasuta käsitsi partitsioonimist, et seadistada %1. - + The EFI system partition at %1 will be used for starting %2. EFI süsteemipartitsioon asukohas %1 kasutatakse %2 käivitamiseks. - + EFI system partition: EFI süsteemipartitsioon: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Sellel mäluseadmel ei paista olevat operatsioonisüsteemi peal. Mida soovid teha?<br/>Sa saad oma valikud üle vaadata ja kinnitada enne kui mistahes muudatus saab mäluseadmele teostatud. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Tühjenda ketas</strong><br/>See <font color="red">kustutab</font> kõik valitud mäluseadmel olevad andmed. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Sellel mäluseadmel on peal %1. Mida soovid teha?<br/>Sa saad oma valikud üle vaadata ja kinnitada enne kui mistahes muudatus saab mäluseadmele teostatud. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Paigalda kõrvale</strong><br/>Paigaldaja vähendab partitsiooni, et teha ruumi operatsioonisüsteemile %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Asenda partitsioon</strong><br/>Asendab partitsiooni operatsioonisüsteemiga %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Sellel mäluseadmel on juba operatsioonisüsteem peal. Mida soovid teha?<br/>Sa saad oma valikud üle vaadata ja kinnitada enne kui mistahes muudatus saab mäluseadmele teostatud. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Sellel mäluseadmel on mitu operatsioonisüsteemi peal. Mida soovid teha?<br/>Sa saad oma valikud üle vaadata ja kinnitada enne kui mistahes muudatus saab mäluseadmele teostatud. @@ -739,6 +739,14 @@ Paigaldaja sulgub ning kõik muutused kaovad. Grupifaili ei saa lugemiseks avada. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ Paigaldaja sulgub ning kõik muutused kaovad. - + font-weight: normal font-weight: normal @@ -1606,22 +1614,22 @@ Paigaldaja sulgub ning kõik muutused kaovad. <small>Seda nime kasutatakse, kui teed arvuti võrgus teistele nähtavaks.</small> - + Log in automatically without asking for the password. Logi automaatselt sisse ilma parooli küsimata. - + Use the same password for the administrator account. Kasuta sama parooli administraatorikontole. - + Choose a password for the administrator account. Vali administraatori kontole parool. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Sisesta sama parooli kaks korda, et kontrollida kirjavigade puudumist.</small> @@ -1767,17 +1775,17 @@ Paigaldaja sulgub ning kõik muutused kaovad. Paigalda käivituslaadur kohta: - + Are you sure you want to create a new partition table on %1? Kas soovid kindlasti luua uut partitsioonitabelit kettale %1? - + Can not create new partition Uut partitsiooni ei saa luua - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Partitsioonitabel kohas %1 juba omab %2 peamist partitsiooni ning rohkem juurde ei saa lisada. Palun eemalda selle asemel üks peamine partitsioon ja lisa juurde laiendatud partitsioon. @@ -2051,6 +2059,11 @@ Väljund: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2298,6 +2311,14 @@ Väljund: Paigaldajal ebaõnnestus partitsiooni %1 suuruse muutmine kettal "%2". + + ResizeVolumeGroupDialog + + + Resize Volume Group + Muuda kettagrupi suurust + + ResizeVolumeGroupJob @@ -2707,33 +2728,33 @@ Väljund: UsersPage - + Your username is too long. Sinu kasutajanimi on liiga pikk. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Sinu kasutajanimi sisaldab sobimatuid tähemärke. Lubatud on ainult väiketähed ja numbrid. - + Your hostname is too short. Sinu hostinimi on liiga lühike. - + Your hostname is too long. Sinu hostinimi on liiga pikk. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Sinu hostinimi sisaldab sobimatuid tähemärke. Ainult tähed, numbrid ja sidekriipsud on lubatud. - - + + Your passwords do not match! Sinu paroolid ei ühti! @@ -2750,8 +2771,8 @@ Väljund: VolumeGroupBaseDialog - VolumeGroupDialog - VolumeGroupDialog + Create Volume Group + diff --git a/lang/calamares_eu.ts b/lang/calamares_eu.ts index b146c01bf..952e818ed 100644 --- a/lang/calamares_eu.ts +++ b/lang/calamares_eu.ts @@ -354,17 +354,17 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. Ondoren: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Eskuz partizioak landu</strong><br/>Zure kasa sortu edo tamainaz alda dezakezu partizioak. - + Boot loader location: Abio kargatzaile kokapena: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 %2MB-ra txikituko da, eta %3MB-tako partizio berri bat sortuko da %4-(e)rako. @@ -375,108 +375,108 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. - - - + + + Current: Unekoa: - + Reuse %1 as home partition for %2. Berrerabili %1 home partizio bezala %2rentzat. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Aukeratu partizioa txikitzeko eta gero arrastatu azpiko-barra tamaina aldatzeko</strong> - + <strong>Select a partition to install on</strong> <strong>aukeratu partizioa instalatzeko</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Ezin da inon aurkitu EFI sistemako partiziorik sistema honetan. Mesedez joan atzera eta erabili eskuz partizioak lantzea %1 ezartzeko. - + The EFI system partition at %1 will be used for starting %2. %1eko EFI partizio sistema erabiliko da abiarazteko %2. - + EFI system partition: EFI sistema-partizioa: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Biltegiratze-gailuak badirudi ez duela sistema eragilerik. Zer egin nahiko zenuke? <br/>Zure aukerak berrikusteko eta berresteko aukera izango duzu aldaketak gauzatu aurretik biltegiratze-gailuan - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Diskoa ezabatu</strong><br/>Honek orain dauden datu guztiak <font color="red">ezbatuko</font> ditu biltegiratze-gailutik. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Biltegiratze-gailuak %1 dauka. Zer egin nahiko zenuke? <br/>Zure aukerak berrikusteko eta berresteko aukera izango duzu aldaketak gauzatu aurretik biltegiratze-gailuan - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instalatu alboan</strong><br/>Instalatzaileak partizioa txikituko du lekua egiteko %1-(r)i. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Ordeztu partizioa</strong><br/>ordezkatu partizioa %1-(e)kin. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Biltegiragailu honetan badaude jadanik eragile sistema bat. Zer gustatuko litzaizuke egin?<br/>Biltegiragailuan aldaketarik egin baino lehen zure aukerak aztertu eta konfirmatu ahal izango duzu. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Biltegiragailu honetan badaude jadanik eragile sistema batzuk. Zer gustatuko litzaizuke egin?<br/>Biltegiragailuan aldaketarik egin baino lehen zure aukerak aztertu eta konfirmatu ahal izango duzu. @@ -739,6 +739,14 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. Ezin da groups fitxategia ireki berau irakurtzeko. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. - + font-weight: normal Letra-mota zabalera: normala @@ -1606,22 +1614,22 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. <small>Izen hau erakutsiko da sarean zure ordenagailua besteei erakustean.</small> - + Log in automatically without asking for the password. Hasi saioa automatikoki pasahitza eskatu gabe. - + Use the same password for the administrator account. Erabili pasahitz bera administratzaile kontuan. - + Choose a password for the administrator account. Aukeratu pasahitz bat administratzaile kontuarentzat. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Sartu pasahitza birritan, honela tekleatze erroreak egiaztatzeko.</small> @@ -1767,17 +1775,17 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. Abio kargatzailea I&nstalatu bertan: - + Are you sure you want to create a new partition table on %1? Ziur al zaude partizio-taula berri bat %1-(e)an sortu nahi duzula? - + Can not create new partition Ezin da partizio berririk sortu - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2050,6 +2058,11 @@ Irteera: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2297,6 +2310,14 @@ Irteera: + + ResizeVolumeGroupDialog + + + Resize Volume Group + Bolumen Talde berriaren tamaina aldatu + + ResizeVolumeGroupJob @@ -2706,33 +2727,33 @@ Irteera: UsersPage - + Your username is too long. Zure erabiltzaile-izena luzeegia da. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Zure erabiltzaile-izena baliodun ez diren karaktereak ditu. Letra xeheak eta zenbakiak bakarrik onartzen dira. - + Your hostname is too short. Zure ostalari-izena laburregia da. - + Your hostname is too long. Zure ostalari-izena luzeegia da. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Zure ostalariak baliodun ez diren karaktereak ditu. Letrak, zenbakiak eta marratxoak bakarrik onartzen dira. - - + + Your passwords do not match! Pasahitzak ez datoz bat! @@ -2749,8 +2770,8 @@ Irteera: VolumeGroupBaseDialog - VolumeGroupDialog - BolumenTaldeElkarrizketa + Create Volume Group + diff --git a/lang/calamares_fa.ts b/lang/calamares_fa.ts index 93e6e6c83..47b30b97e 100644 --- a/lang/calamares_fa.ts +++ b/lang/calamares_fa.ts @@ -353,17 +353,17 @@ The installer will quit and all changes will be lost. - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -374,108 +374,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -738,6 +738,14 @@ The installer will quit and all changes will be lost. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1575,7 +1583,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal @@ -1605,22 +1613,22 @@ The installer will quit and all changes will be lost. - + Log in automatically without asking for the password. - + Use the same password for the administrator account. - + Choose a password for the administrator account. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> @@ -1766,17 +1774,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2047,6 +2055,11 @@ Output: Language (Country) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2294,6 +2307,14 @@ Output: + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2703,33 +2724,33 @@ Output: UsersPage - + Your username is too long. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - - + + Your passwords do not match! @@ -2746,7 +2767,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_fi_FI.ts b/lang/calamares_fi_FI.ts index a5505bf55..d53e7623e 100644 --- a/lang/calamares_fi_FI.ts +++ b/lang/calamares_fi_FI.ts @@ -354,17 +354,17 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. Jälkeen: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -375,108 +375,108 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. - - - + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -739,6 +739,14 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. Ei voida avata ryhmätiedostoa luettavaksi. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. - + font-weight: normal fontin koko: normaali @@ -1606,22 +1614,22 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. <small>Tätä nimeä tullaan käyttämään mikäli asetat tietokoneen näkyviin muille verkossa.</small> - + Log in automatically without asking for the password. - + Use the same password for the administrator account. - + Choose a password for the administrator account. Valitse salasana pääkäyttäjän tilille. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Syötä salasana kahdesti välttääksesi kirjoitusvirheitä.</small> @@ -1767,17 +1775,17 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. - + Are you sure you want to create a new partition table on %1? Oletko varma, että haluat luoda uuden osion %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2048,6 +2056,11 @@ Output: Language (Country) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2295,6 +2308,14 @@ Output: Asennusohjelma epäonnistui osion %1 koon muuttamisessa levyllä '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2704,33 +2725,33 @@ Output: UsersPage - + Your username is too long. Käyttäjänimesi on liian pitkä. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. - + Your hostname is too short. Isäntänimesi on liian lyhyt. - + Your hostname is too long. Isäntänimesi on liian pitkä. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Isäntänimesi sisältää epäkelpoja merkkejä. Vain kirjaimet, numerot ja väliviivat ovat sallittuja. - - + + Your passwords do not match! Salasanasi eivät täsmää! @@ -2747,7 +2768,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_fr.ts b/lang/calamares_fr.ts index 69c5468be..3ee734028 100644 --- a/lang/calamares_fr.ts +++ b/lang/calamares_fr.ts @@ -354,17 +354,17 @@ L'installateur se fermera et les changements seront perdus. Après: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Partitionnement manuel</strong><br/>Vous pouvez créer ou redimensionner vous-même des partitions. - + Boot loader location: Emplacement du chargeur de démarrage: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 va être réduit à %2Mo et une nouvelle partition de %3Mo va être créée pour %4. @@ -375,108 +375,108 @@ L'installateur se fermera et les changements seront perdus. - - - + + + Current: Actuel : - + Reuse %1 as home partition for %2. Réutiliser %1 comme partition home pour %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Sélectionnez une partition à réduire, puis faites glisser la barre du bas pour redimensionner</strong> - + <strong>Select a partition to install on</strong> <strong>Sélectionner une partition pour l'installation</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Une partition système EFI n'a pas pu être trouvée sur ce système. Veuillez retourner à l'étape précédente et sélectionner le partitionnement manuel pour configurer %1. - + The EFI system partition at %1 will be used for starting %2. La partition système EFI sur %1 va être utilisée pour démarrer %2. - + EFI system partition: Partition système EFI : - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Ce périphérique de stockage ne semble pas contenir de système d'exploitation. Que souhaitez-vous faire ?<br/>Vous pourrez relire et confirmer vos choix avant que les modifications soient effectuées sur le périphérique de stockage. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Effacer le disque</strong><br/>Ceci va <font color="red">effacer</font> toutes les données actuellement présentes sur le périphérique de stockage sélectionné. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Ce périphérique de stockage contient %1. Que souhaitez-vous faire ?<br/>Vous pourrez relire et confirmer vos choix avant que les modifications soient effectuées sur le périphérique de stockage. - + No Swap Aucun Swap - + Reuse Swap Réutiliser le Swap - + Swap (no Hibernate) Swap (sans hibernation) - + Swap (with Hibernate) Swap (avec hibernation) - + Swap to file Swap dans un fichier - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Installer à côté</strong><br/>L'installateur va réduire une partition pour faire de la place pour %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Remplacer une partition</strong><br>Remplace une partition par %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Ce périphérique de stockage contient déjà un système d'exploitation. Que souhaitez-vous faire ?<br/>Vous pourrez relire et confirmer vos choix avant que les modifications soient effectuées sur le périphérique de stockage. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Ce péiphérique de stockage contient déjà plusieurs systèmes d'exploitation. Que souhaitez-vous faire ?<br/>Vous pourrez relire et confirmer vos choix avant que les modifications soient effectuées sur le périphérique de stockage. @@ -739,6 +739,14 @@ L'installateur se fermera et les changements seront perdus. Impossible d'ouvrir le fichier groups en lecture. + + CreateVolumeGroupDialog + + + Create Volume Group + Créer le Groupe de Volumes + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ L'installateur se fermera et les changements seront perdus. - + font-weight: normal style de police : normal @@ -1606,22 +1614,22 @@ L'installateur se fermera et les changements seront perdus. <small>Ce nom sera utilisé pour rendre l'ordinateur visible des autres sur le réseau.</small> - + Log in automatically without asking for the password. Démarrer la session sans demander de mot de passe. - + Use the same password for the administrator account. Utiliser le même mot de passe pour le compte administrateur. - + Choose a password for the administrator account. Choisir un mot de passe pour le compte administrateur. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Veuillez entrer le même mot de passe deux fois, afin de vérifier qu'ils n'y ait pas d'erreur de frappe.</small> @@ -1767,17 +1775,17 @@ L'installateur se fermera et les changements seront perdus. Installer le chargeur de démarrage sur : - + Are you sure you want to create a new partition table on %1? Êtes-vous sûr de vouloir créer une nouvelle table de partitionnement sur %1 ? - + Can not create new partition Impossible de créer une nouvelle partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. La table de partition sur %1 contient déjà %2 partitions primaires, et aucune supplémentaire ne peut être ajoutée. Veuillez supprimer une partition primaire et créer une partition étendue à la place. @@ -2052,6 +2060,11 @@ Sortie Language (Country) %1 (%2) + + + (no mount point) + (aucun point de montage) + RemoveVolumeGroupJob @@ -2299,6 +2312,14 @@ Sortie Le programme d'installation n'a pas pu redimensionner la partition %1 sur le disque '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + Redimensionner le Groupe de Volumes + + ResizeVolumeGroupJob @@ -2708,33 +2729,33 @@ Sortie UsersPage - + Your username is too long. Votre nom d'utilisateur est trop long. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Votre nom d'utilisateur contient des caractères invalides. Seuls les lettres minuscules et les chiffres sont autorisés. - + Your hostname is too short. Le nom d'hôte est trop petit. - + Your hostname is too long. Le nom d'hôte est trop long. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Le nom d'hôte contient des caractères invalides. Seules les lettres, nombres et tirets sont autorisés. - - + + Your passwords do not match! Vos mots de passe ne correspondent pas ! @@ -2751,8 +2772,8 @@ Sortie VolumeGroupBaseDialog - VolumeGroupDialog - VolumeGroupDialog + Create Volume Group + Créer le Groupe de Volumes diff --git a/lang/calamares_fr_CH.ts b/lang/calamares_fr_CH.ts index fb5a453de..1c1d26ab0 100644 --- a/lang/calamares_fr_CH.ts +++ b/lang/calamares_fr_CH.ts @@ -353,17 +353,17 @@ The installer will quit and all changes will be lost. - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -374,108 +374,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -738,6 +738,14 @@ The installer will quit and all changes will be lost. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1575,7 +1583,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal @@ -1605,22 +1613,22 @@ The installer will quit and all changes will be lost. - + Log in automatically without asking for the password. - + Use the same password for the administrator account. - + Choose a password for the administrator account. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> @@ -1766,17 +1774,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2047,6 +2055,11 @@ Output: Language (Country) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2294,6 +2307,14 @@ Output: + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2703,33 +2724,33 @@ Output: UsersPage - + Your username is too long. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - - + + Your passwords do not match! @@ -2746,7 +2767,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_gl.ts b/lang/calamares_gl.ts index e3d6a6a0b..9c61eeff3 100644 --- a/lang/calamares_gl.ts +++ b/lang/calamares_gl.ts @@ -355,17 +355,17 @@ O instalador pecharase e perderanse todos os cambios. Despois: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Particionado manual</strong><br/> Pode crear o redimensionar particións pola súa conta. - + Boot loader location: Localización do cargador de arranque: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 será acurtada a %2MB e unha nova partición de %3MB será creada para %4 @@ -376,108 +376,108 @@ O instalador pecharase e perderanse todos os cambios. - - - + + + Current: Actual: - + Reuse %1 as home partition for %2. Reutilizar %1 como partición home para %2 - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Seleccione unha partición para acurtar, logo empregue a barra para redimensionala</strong> - + <strong>Select a partition to install on</strong> <strong>Seleccione unha partición para instalar</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Non foi posible atopar unha partición de sistema de tipo EFI. Por favor, volva atrás e empregue a opción de particionado manual para crear unha en %1. - + The EFI system partition at %1 will be used for starting %2. A partición EFI do sistema en %1 será usada para iniciar %2. - + EFI system partition: Partición EFI do sistema: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Esta unidade de almacenamento non semella ter un sistema operativo instalado nela. Que desexa facer?<br/>Poderá revisar e confirmar as súas eleccións antes de que calquera cambio sexa feito na unidade de almacenamento. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Borrar disco</strong><br/>Esto <font color="red">eliminará</font> todos os datos gardados na unidade de almacenamento seleccionada. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. A unidade de almacenamento ten %1 nela. Que desexa facer?<br/>Poderá revisar e confirmar a súa elección antes de que se aplique algún cambio á unidade. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instalar a carón</strong><br/>O instalador encollerá a partición para facerlle sitio a %1 - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Substituír a partición</strong><br/>Substitúe a partición con %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Esta unidade de almacenamento xa ten un sistema operativo instalado nel. Que desexa facer?<br/>Poderá revisar e confirmar as súas eleccións antes de que calquera cambio sexa feito na unidade de almacenamento - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Esta unidade de almacenamento ten múltiples sistemas operativos instalados nela. Que desexa facer?<br/>Poderá revisar e confirmar as súas eleccións antes de que calquera cambio sexa feito na unidade de almacenamento. @@ -740,6 +740,14 @@ O instalador pecharase e perderanse todos os cambios. Non foi posible ler o arquivo grupos. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1577,7 +1585,7 @@ O instalador pecharase e perderanse todos os cambios. - + font-weight: normal Tamaño de letra: normal @@ -1607,22 +1615,22 @@ O instalador pecharase e perderanse todos os cambios. <small>Este nome usarase se fai o computador visible para outros nunha rede.</small> - + Log in automatically without asking for the password. Entrar automáticamente sen preguntar polo contrasinal. - + Use the same password for the administrator account. Empregar o mesmo contrasinal para a conta de administrador. - + Choose a password for the administrator account. Escoller un contrasinal para a conta de administrador. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Introduza o mesmo contrasinal dúas veces para comprobar que non houbo erros ao escribilo.</small> @@ -1768,17 +1776,17 @@ O instalador pecharase e perderanse todos os cambios. I&nstalar o cargador de arranque en: - + Are you sure you want to create a new partition table on %1? Confirma que desexa crear unha táboa de particións nova en %1? - + Can not create new partition Non é posíbel crear a partición nova - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. A táboa de particións de %1 xa ten %2 particións primarias e non é posíbel engadir máis. Retire unha partición primaria e engada unha partición estendida. @@ -2052,6 +2060,11 @@ Saída: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2299,6 +2312,14 @@ Saída: O instalador fallou a hora de reducir a partición %1 no disco '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + Cambiar o tamaño do grupo de volumes + + ResizeVolumeGroupJob @@ -2708,33 +2729,33 @@ Saída: UsersPage - + Your username is too long. O nome de usuario é demasiado longo. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. O nome de usuario contén caracteres non válidos. Só se permiten letras en minúscula e números. - + Your hostname is too short. O nome do computador é demasiado curto. - + Your hostname is too long. O nome do computador é demasiado longo. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. O nome do computador contén caracteres non válidos. Só se permiten letras, números e guións. - - + + Your passwords do not match! Os contrasinais non coinciden! @@ -2751,8 +2772,8 @@ Saída: VolumeGroupBaseDialog - VolumeGroupDialog - DiálogoGrupoVolumes + Create Volume Group + diff --git a/lang/calamares_gu.ts b/lang/calamares_gu.ts index 5bacb7f30..c40616154 100644 --- a/lang/calamares_gu.ts +++ b/lang/calamares_gu.ts @@ -353,17 +353,17 @@ The installer will quit and all changes will be lost. - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -374,108 +374,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -738,6 +738,14 @@ The installer will quit and all changes will be lost. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1575,7 +1583,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal @@ -1605,22 +1613,22 @@ The installer will quit and all changes will be lost. - + Log in automatically without asking for the password. - + Use the same password for the administrator account. - + Choose a password for the administrator account. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> @@ -1766,17 +1774,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2047,6 +2055,11 @@ Output: Language (Country) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2294,6 +2307,14 @@ Output: + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2703,33 +2724,33 @@ Output: UsersPage - + Your username is too long. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - - + + Your passwords do not match! @@ -2746,7 +2767,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_he.ts b/lang/calamares_he.ts index 990de4240..2727c4e75 100644 --- a/lang/calamares_he.ts +++ b/lang/calamares_he.ts @@ -4,7 +4,7 @@ The <strong>boot environment</strong> of this system.<br><br>Older x86 systems only support <strong>BIOS</strong>.<br>Modern systems usually use <strong>EFI</strong>, but may also show up as BIOS if started in compatibility mode. - <strong>תצורת האתחול</strong> של מערכת זו. <br><br> מערכות x86 ישנות יותר תומכות אך ורק ב־<strong>BIOS</strong>.<br> מערכות חדשות משתמשות בדרך כלל ב־<strong>EFI</strong>, אך עשוית להופיע כ־BIOS אם הן מופעלות במצב תאימות לאחור. + <strong>סביבת האתחול</strong> של מערכת זו. <br><br> מערכות x86 ישנות יותר תומכות אך ורק ב־<strong>BIOS</strong>.<br> מערכות חדשות משתמשות בדרך כלל ב־<strong>EFI</strong>, אך עשוית להופיע כ־BIOS אם הן מופעלות במצב תאימות לאחור. @@ -89,7 +89,7 @@ Interface: - ממשק: + מנשק: @@ -354,17 +354,17 @@ The installer will quit and all changes will be lost. לאחר: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>הגדרת מחיצות באופן ידני</strong><br/>ניתן ליצור או לשנות את גודל המחיצות בעצמך. - + Boot loader location: מיקום מנהל אתחול המערכת: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 תוקטן לכדי %2 מ״ב ותיווצר מחיצה חדשה בגודל %3 מ״ב עבור %4. @@ -375,108 +375,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: נוכחי: - + Reuse %1 as home partition for %2. להשתמש ב־%1 כמחיצת הבית (home) עבור %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>ראשית יש לבחור מחיצה לכיווץ, לאחר מכן לגרור את הסרגל התחתון כדי לשנות את גודלה</strong> - + <strong>Select a partition to install on</strong> <strong>נא לבחור מחיצה כדי להתקין עליה</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. במערכת זו לא נמצאה מחיצת מערכת EFI. נא לחזור ולהשתמש ביצירת מחיצות באופן ידני כדי להגדיר את %1. - + The EFI system partition at %1 will be used for starting %2. מחיצת מערכת ה־EFI שב־%1 תשמש עבור טעינת %2. - + EFI system partition: מחיצת מערכת EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. לא נמצאה מערכת הפעלה על התקן אחסון זה. מה ברצונך לעשות?<br/> ניתן לסקור ולאשר את בחירתך לפני ששינויים יתבצעו על התקן האחסון. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>מחיקת כונן</strong><br/> פעולה זו <font color="red">תמחק</font> את כל המידע השמור על התקן האחסון הנבחר. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. בהתקן אחסון זה נמצאה %1. מה ברצונך לעשות?<br/> ניתן לסקור ולאשר את בחירתך לפני ששינויים יתבצעו על התקן האחסון. - + No Swap - + בלי החלפה - + Reuse Swap - + שימוש מחדש בהחלפה - + Swap (no Hibernate) - + החלפה (ללא תרדמת) - + Swap (with Hibernate) - + החלפה (עם תרדמת) - + Swap to file - + החלפה לקובץ - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>התקנה לצד</strong><br/> אשף ההתקנה יכווץ מחיצה כדי לפנות מקום לטובת %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>החלפת מחיצה</strong><br/> ביצוע החלפה של המחיצה ב־%1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. כבר קיימת מערכת הפעלה על התקן האחסון הזה. כיצד להמשיך?<br/> ניתן לסקור ולאשר את בחירתך לפני ששינויים יתבצעו על התקן האחסון. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. ישנן מגוון מערכות הפעלה על התקן אחסון זה. איך להמשיך? <br/>ניתן לסקור ולאשר את בחירתך לפני ששינויים יתבצעו על התקן האחסון. @@ -739,27 +739,35 @@ The installer will quit and all changes will be lost. לא ניתן לפתוח את קובץ הקבוצות לקריאה. + + CreateVolumeGroupDialog + + + Create Volume Group + יצירת קבוצת כרכים + + CreateVolumeGroupJob Create new volume group named %1. - + יצירת קבוצת כרכים חדשה בשם %1. Create new volume group named <strong>%1</strong>. - + יצירת קבוצת כרכים חדשה בשם <strong>%1</strong>. Creating new volume group named %1. - + נוצרת קבוצת כרכים חדשה בשם %1. The installer failed to create a volume group named '%1'. - + אשף ההתקנה נכשל ביצירת קבוצת כרכים בשם ‚%1’. @@ -768,17 +776,17 @@ The installer will quit and all changes will be lost. Deactivate volume group named %1. - + השבתת קבוצת כרכים בשם %1. Deactivate volume group named <strong>%1</strong>. - + השבתת קבוצת כרכים בשם <strong>%1</strong>. The installer failed to deactivate a volume group named %1. - + אשף ההתקנה נכשל בהשבתת קבוצת כרכים בשם %1. @@ -847,7 +855,7 @@ The installer will quit and all changes will be lost. %1 - (%2) - + %1 - (%2) @@ -1576,7 +1584,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal font-weight: normal @@ -1606,22 +1614,22 @@ The installer will quit and all changes will be lost. <small>בשם זה ייעשה שימוש לטובת זיהוי מול מחשבים אחרים ברשת במידת הצורך.</small> - + Log in automatically without asking for the password. כניסה אוטומטית מבלי לבקש ססמה. - + Use the same password for the administrator account. להשתמש באותה הססמה עבור חשבון המנהל. - + Choose a password for the administrator account. בחירת ססמה עבור חשבון המנהל. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>עליך להקליד את אותה הססמה פעמיים כדי לאפשר זיהוי של שגיאות הקלדה.</small> @@ -1744,40 +1752,40 @@ The installer will quit and all changes will be lost. New Volume Group - + קבוצת כרכים חדשה Resize Volume Group - + שינוי גודל קבוצת כרכים Deactivate Volume Group - + השבתת קבוצת כרכים Remove Volume Group - + הסרת קבוצת כרכים I&nstall boot loader on: - + הת&קנת מנהל אתחול על: - + Are you sure you want to create a new partition table on %1? ליצור טבלת מחיצות חדשה על %1? - + Can not create new partition לא ניתן ליצור מחיצה חדשה - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. לטבלת המחיצות על %1 כבר יש %2 מחיצות עיקריות ואי אפשר להוסיף עוד כאלה. נא להסיר מחיצה עיקרית אחת ולהוסיף מחיצה מורחבת במקום. @@ -2051,6 +2059,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + (אין נקודת עגינה) + RemoveVolumeGroupJob @@ -2058,17 +2071,17 @@ Output: Remove Volume Group named %1. - + הסרת קבוצת כרכים בשם %1. Remove Volume Group named <strong>%1</strong>. - + הסרת קבוצת כרכים בשם <strong>%1</strong>. The installer failed to remove a volume group named '%1'. - + אשף ההתקנה נכשל בהסרת קבוצת כרכים בשם ‚%1’. @@ -2209,29 +2222,29 @@ Output: Resize Filesystem Job - + משימת שינוי גודל מערכת קבצים Invalid configuration - + תצורה שגויה The file-system resize job has an invalid configuration and will not run. - + למשימת שינוי גודל מערכת הקבצים יש תצורה שגויה והיא לא תפעל. KPMCore not Available - + KPMCore לא זמין Calamares cannot start KPMCore for the file-system resize job. - + ל־Calamares אין אפשרות להתחיל את KPMCore עבור משימת שינוי גודל מערכת הקבצים. @@ -2240,39 +2253,39 @@ Output: Resize Failed - + שינוי הגודל נכשל The filesystem %1 could not be found in this system, and cannot be resized. - + לא הייתה אפשרות למצוא את מערכת הקבצים %1 במערכת הזו, לכן לא ניתן לשנות את גודלה. The device %1 could not be found in this system, and cannot be resized. - + לא הייתה אפשרות למצוא את ההתקן %1 במערכת הזו, לכן לא ניתן לשנות את גודלו. The filesystem %1 cannot be resized. - + לא ניתן לשנות את גודל מערכת הקבצים %1. The device %1 cannot be resized. - + לא ניתן לשנות את גודל ההתקן %1. The filesystem %1 must be resized, but cannot. - + חובה לשנות את גודל מערכת הקבצים %1, אך לא ניתן. The device %1 must be resized, but cannot - + חובה לשנות את גודל ההתקן %1, אך לא ניתן. @@ -2298,23 +2311,31 @@ Output: תהליך ההתקנה נכשל בשינוי גודל המחיצה %1 על כונן '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + שינוי גודל קבוצת כרכים + + ResizeVolumeGroupJob Resize volume group named %1 from %2 to %3. - + שינוי גודל קבוצת כרכים בשם %1 מ־%2 ל־%3. Resize volume group named <strong>%1</strong> from <strong>%2</strong> to <strong>%3</strong>. - + שינוי גודל קבוצת כרכים בשם <strong>%1</strong> מ־<strong>%2</strong> ל־<strong>%3</strong>. The installer failed to resize a volume group named '%1'. - + אשף ההתקנה נכשל בשינוי גודל קבוצת הכרכים בשם ‚%1’. @@ -2707,33 +2728,33 @@ Output: UsersPage - + Your username is too long. שם המשתמש ארוך מדי. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. שם המחשב מכיל תווים בלתי תקינים. מותר להשתמש אך ורק באותיות ובמספרים. - + Your hostname is too short. שם המחשב קצר מדי. - + Your hostname is too long. שם המחשב ארוך מדי. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. שם המחשב מכיל תווים בלתי תקינים. מותר להשתמש אך ורק באותיות, במספרים ובמקפים. - - + + Your passwords do not match! הססמאות לא תואמות! @@ -2750,28 +2771,28 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog - + Create Volume Group + יצירת קבוצת כרכים List of Physical Volumes - + רשימת כרכים פיזיים Volume Group Name: - + שם קבוצת כרכים: Volume Group Type: - + סוג קבוצת כרכים: Physical Extent Size: - + גודל משטח פיזי: @@ -2781,7 +2802,7 @@ Output: Total Size: - + גודל כולל: @@ -2789,22 +2810,22 @@ Output: --- - + --- Used Size: - + גודל מנוצל: Total Sectors: - + סך כל המקטעים: Quantity of LVs: - + כמות הכרכים הלוגיים: diff --git a/lang/calamares_hi.ts b/lang/calamares_hi.ts index 0c126282b..8d0ac4eed 100644 --- a/lang/calamares_hi.ts +++ b/lang/calamares_hi.ts @@ -354,17 +354,17 @@ The installer will quit and all changes will be lost. बाद में: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>मैनुअल विभाजन</strong><br/> आप स्वयं भी विभाजन बना व उनका आकार बदल सकते है। - + Boot loader location: बूट लोडर का स्थान: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 को छोटा करके %2MB किया जाएगा व %4 के लिए %3MB का एक नया विभाजन बनेगा। @@ -375,108 +375,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: मौजूदा : - + Reuse %1 as home partition for %2. %2 के होम विभाजन के लिए %1 को पुनः उपयोग करें। - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>छोटा करने के लिए विभाजन चुनें, फिर नीचे bar से उसका आकर सेट करें</strong> - + <strong>Select a partition to install on</strong> <strong>इंस्टॉल के लिए विभाजन चुनें</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. इस सिस्टम पर कहीं भी कोई EFI सिस्टम विभाजन नहीं मिला। कृपया वापस जाएँ व %1 को सेट करने के लिए मैनुअल रूप से विभाजन करें। - + The EFI system partition at %1 will be used for starting %2. %1 वाले EFI सिस्टम विभाजन का उपयोग %2 को शुरू करने के लिए किया जाएगा। - + EFI system partition: EFI सिस्टम विभाजन: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. इस डिवाइस पर लगता है कि कोई ऑपरेटिंग सिस्टम नहीं है। आप क्या करना चाहेंगे?<br/>आप डिवाइस में किसी भी बदलाव से पहले उसकी समीक्षा व पुष्टि कर सकेंगे। - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>डिस्क का सारा डाटा हटाएँ</strong><br/>इससे चयनित डिवाइस पर मौजूद सारा डाटा <font color="red">हटा</font>हो जाएगा। - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. इस डिवाइस पर %1 है। आप क्या करना चाहेंगे?<br/>आप डिवाइस में किसी भी बदलाव से पहले उसकी समीक्षा व पुष्टि कर सकेंगे। - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>साथ में इंस्टॉल करें</strong><br/>इंस्टॉलर %1 के लिए स्थान बनाने हेतु एक विभाजन को छोटा कर देगा। - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>विभाजन को बदलें</strong><br/>एक विभाजन को %1 से बदलें। - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. इस डिवाइस पर पहले से एक ऑपरेटिंग सिस्टम है। आप क्या करना चाहेंगे?<br/>आप डिवाइस में किसी भी बदलाव से पहले उसकी समीक्षा व पुष्टि कर सकेंगे। - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. इस डिवाइस पर एक से अधिक ऑपरेटिंग सिस्टम है। आप क्या करना चाहेंगे?<br/>आप डिवाइस में किसी भी बदलाव से पहले उसकी समीक्षा व पुष्टि कर सकेंगे। @@ -739,6 +739,14 @@ The installer will quit and all changes will be lost. रीड हेतु groups फ़ाइल खोली नहीं जा सकती। + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal मुद्रलिपि-weight: सामान्य @@ -1606,22 +1614,22 @@ The installer will quit and all changes will be lost. <small>यदि आपका कंप्यूटर किसी नेटवर्क पर दृश्यमान होता है, तो यह नाम उपयोग किया जाएगा।</small> - + Log in automatically without asking for the password. कूटशब्द बिना पूछे ही स्वतः लॉग इन करें। - + Use the same password for the administrator account. प्रबंधक अकाउंट के लिए भी यही कूटशब्द उपयोग करें। - + Choose a password for the administrator account. प्रबंधक अकाउंट के लिए कूटशब्द चुनें। - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>समान कूटशब्द दो बार दर्ज करें, ताकि जाँच की जा सके कि कहीं टाइपिंग त्रुटि तो नहीं है।</small> @@ -1767,17 +1775,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? क्या आप वाकई %1 पर एक नई विभाजन तालिका बनाना चाहते हैं? - + Can not create new partition नया विभाजन नहीं बनाया जा सकता - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2051,6 +2059,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2298,6 +2311,14 @@ Output: इंस्टॉलर डिस्क '%2' पर विभाजन %1 का आकर बदलने में विफल रहा। + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2707,33 +2728,33 @@ Output: UsersPage - + Your username is too long. आपका उपयोक्ता नाम बहुत लंबा है। - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. आपके होस्ट नाम में अमान्य अक्षर हैं । केवल lowercase अक्षरों व संख्याओं की ही अनुमति है । - + Your hostname is too short. आपका होस्ट नाम बहुत छोटा है। - + Your hostname is too long. आपका होस्ट नाम बहुत लंबा है। - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. आपके होस्ट नाम में अमान्य अक्षर हैं । केवल अक्षरों, संख्याओं व dash की ही अनुमति है । - - + + Your passwords do not match! आपके कूटशब्द मेल नहीं खाते! @@ -2750,7 +2771,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_hr.ts b/lang/calamares_hr.ts index 96b4ecb2c..6aa4be625 100644 --- a/lang/calamares_hr.ts +++ b/lang/calamares_hr.ts @@ -354,17 +354,17 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.Poslije: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Ručno particioniranje</strong><br/>Možete sami stvoriti ili promijeniti veličine particija. - + Boot loader location: Lokacija boot učitavača: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 će se smanjiti na %2MB i stvorit će se nova %3MB particija za %4. @@ -375,108 +375,108 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. - - - + + + Current: Trenutni: - + Reuse %1 as home partition for %2. Koristi %1 kao home particiju za %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Odaberite particiju za smanjivanje, te povlačenjem donjeg pokazivača odaberite promjenu veličine</strong> - + <strong>Select a partition to install on</strong> <strong>Odaberite particiju za instalaciju</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. EFI particija ne postoji na ovom sustavu. Vratite se natrag i koristite ručno particioniranje da bi ste postavili %1. - + The EFI system partition at %1 will be used for starting %2. EFI particija na %1 će se koristiti za pokretanje %2. - + EFI system partition: EFI particija: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Izgleda da na ovom disku nema operacijskog sustava. Što želite učiniti?<br/>Moći ćete provjeriti i potvrditi vaš odabir prije bilo kakvih promjena na disku. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Obriši disk</strong><br/>To će <font color="red">obrisati</font> sve podatke na odabranom disku. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Ovaj disk ima %1. Što želite učiniti?<br/>Moći ćete provjeriti i potvrditi vaš odabir prije bilo kakvih promjena na disku. - + No Swap Bez swap-a - + Reuse Swap Iskoristi postojeći swap - + Swap (no Hibernate) Swap (bez hibernacije) - + Swap (with Hibernate) Swap (sa hibernacijom) - + Swap to file Swap datoteka - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instaliraj uz postojeće</strong><br/>Instalacijski program će smanjiti particiju da bi napravio mjesto za %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Zamijeni particiju</strong><br/>Zamijenjuje particiju sa %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Ovaj disk već ima operacijski sustav. Što želite učiniti?<br/>Moći ćete provjeriti i potvrditi vaš odabir prije bilo kakvih promjena na disku. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Ovaj disk ima više operacijskih sustava. Što želite učiniti?<br/>Moći ćete provjeriti i potvrditi vaš odabir prije bilo kakvih promjena na disku. @@ -739,6 +739,14 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.Ne mogu otvoriti groups datoteku za čitanje. + + CreateVolumeGroupDialog + + + Create Volume Group + Stvori volume grupu + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. - + font-weight: normal debljina fonta: normalan @@ -1606,22 +1614,22 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.<small>Ovo ime će se koristiti ako odaberete da je računalo vidljivo ostalim korisnicima na mreži.</small> - + Log in automatically without asking for the password. Automatska prijava bez traženja lozinke. - + Use the same password for the administrator account. Koristi istu lozinku za administratorski račun. - + Choose a password for the administrator account. Odaberi lozinku za administratorski račun. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Unesite istu lozinku dvaput, tako da bi se provjerile eventualne pogreške prilikom upisa.</small> @@ -1767,17 +1775,17 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.I&nstaliraj boot učitavač na: - + Are you sure you want to create a new partition table on %1? Jeste li sigurni da želite stvoriti novu particijsku tablicu na %1? - + Can not create new partition Ne mogu stvoriti novu particiju - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Particijska tablica %1 već ima %2 primarne particije i nove se više ne mogu dodati. Molimo vas da uklonite jednu primarnu particiju i umjesto nje dodate proširenu particiju. @@ -2051,6 +2059,11 @@ Izlaz: Language (Country) %1 (%2) + + + (no mount point) + (nema točke montiranja) + RemoveVolumeGroupJob @@ -2298,6 +2311,14 @@ Izlaz: Instalacijski program nije uspio promijeniti veličinu particije %1 na disku '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + Promijenite veličinu volume grupe + + ResizeVolumeGroupJob @@ -2707,33 +2728,33 @@ Izlaz: UsersPage - + Your username is too long. Vaše korisničko ime je predugačko. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Korisničko ime sadržava nedozvoljene znakove. Dozvoljena su samo mala slova i brojevi. - + Your hostname is too short. Ime računala je kratko. - + Your hostname is too long. Ime računala je predugačko. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Ime računala sadrži nedozvoljene znakove. Samo slova, brojevi i crtice su dozvoljene. - - + + Your passwords do not match! Lozinke se ne podudaraju! @@ -2750,8 +2771,8 @@ Izlaz: VolumeGroupBaseDialog - VolumeGroupDialog - VolumeGroupDialog + Create Volume Group + Stvori volume grupu diff --git a/lang/calamares_hu.ts b/lang/calamares_hu.ts index c1308484b..d14a51cb0 100644 --- a/lang/calamares_hu.ts +++ b/lang/calamares_hu.ts @@ -355,17 +355,17 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l Utána: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Manuális partícionálás</strong><br/>Létrehozhat vagy átméretezhet partíciókat. - + Boot loader location: Rendszerbetöltő helye: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 lesz zsugorítva %2MB méretűre és egy új %3MB méretű partíció lesz létrehozva itt %4 @@ -376,108 +376,108 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l - - - + + + Current: Aktuális: - + Reuse %1 as home partition for %2. %1 partíció használata mint home partíció a %2 -n - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Válaszd ki a partíciót amit zsugorítani akarsz és egérrel méretezd át.</strong> - + <strong>Select a partition to install on</strong> <strong>Válaszd ki a telepítésre szánt partíciót </strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Nem található EFI partíció a rendszeren. Menj vissza a manuális partícionáláshoz és állíts be %1. - + The EFI system partition at %1 will be used for starting %2. A %1 EFI rendszer partíció lesz használva %2 indításához. - + EFI system partition: EFI rendszerpartíció: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Úgy tűnik ezen a tárolóeszközön nincs operációs rendszer. Mit szeretnél csinálni?<br/>Lehetőséged lesz átnézni és megerősíteni a választásod mielőtt bármilyen változtatás történik a tárolóeszközön. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Lemez törlése</strong><br/>Ez <font color="red">törölni</font> fogja a lemezen levő összes adatot. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Ezen a tárolóeszközön %1 található. Mit szeretnél tenni?<br/>Lehetőséged lesz átnézni és megerősíteni a választásod mielőtt bármilyen változtatás történik a tárolóeszközön. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Meglévő mellé telepíteni</strong><br/>A telepítő zsugorítani fogja a partíciót, hogy elférjen a %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>A partíció lecserélése</strong> a következővel: %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Ez a tárolóeszköz már tartalmaz egy operációs rendszert. Mit szeretnél tenni?<br/>Lehetőséged lesz átnézni és megerősíteni a választásod mielőtt bármilyen változtatás történik a tárolóeszközön. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. A tárolóeszközön több operációs rendszer található. Mit szeretnél tenni?<br/>Lehetőséged lesz átnézni és megerősíteni a választásod mielőtt bármilyen változtatás történik a tárolóeszközön. @@ -740,6 +740,14 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l Nem lehet a groups fájlt megnyitni olvasásra. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1577,7 +1585,7 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l - + font-weight: normal betű-súly: normál @@ -1607,22 +1615,22 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l <small>Ez a név lesz használva ha a számítógép látható a hálózaton.</small> - + Log in automatically without asking for the password. Jelszó megkérdezése nélküli automatikus bejelentkezés. - + Use the same password for the administrator account. Ugyanaz a jelszó használata az adminisztrátor felhasználóhoz. - + Choose a password for the administrator account. Adj meg jelszót az adminisztrátor felhasználói fiókhoz. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Írd be a jelszót kétszer így ellenőrizve lesznek a gépelési hibák.</small> @@ -1768,17 +1776,17 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l Rendszerbetöltő &telepítése ide: - + Are you sure you want to create a new partition table on %1? Biztos vagy benne, hogy létrehozol egy új partíciós táblát itt %1 ? - + Can not create new partition Nem hozható létre új partíció - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. A(z) %1 lemezen lévő partíciós táblában már %2 elsődleges partíció van, és több nem adható hozzá. Helyette távolítson el egy elsődleges partíciót, és adjon hozzá egy kiterjesztett partíciót. @@ -2052,6 +2060,11 @@ Kimenet: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2299,6 +2312,14 @@ Kimenet: A telepítő nem tudta átméretezni a(z) %1 partíciót a(z) '%2' lemezen. + + ResizeVolumeGroupDialog + + + Resize Volume Group + Kötetcsoport átméretezése + + ResizeVolumeGroupJob @@ -2709,33 +2730,33 @@ Calamares hiba %1. UsersPage - + Your username is too long. A felhasználónév túl hosszú. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. A felhasználónév érvénytelen karaktereket tartalmaz. Csak kis kezdőbetűk és számok érvényesek. - + Your hostname is too short. A hálózati név túl rövid. - + Your hostname is too long. A hálózati név túl hosszú. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. A hálózati név érvénytelen karaktereket tartalmaz. Csak betűk, számok és kötőjel érvényes. - - + + Your passwords do not match! A két jelszó nem egyezik! @@ -2752,8 +2773,8 @@ Calamares hiba %1. VolumeGroupBaseDialog - VolumeGroupDialog - Kötetcsoport párbeszédablak + Create Volume Group + diff --git a/lang/calamares_id.ts b/lang/calamares_id.ts index 566583c0b..da0016d8d 100644 --- a/lang/calamares_id.ts +++ b/lang/calamares_id.ts @@ -356,17 +356,17 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.Setelah: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Pemartisian manual</strong><br/>Anda bisa membuat atau mengubah ukuran partisi. - + Boot loader location: Lokasi Boot loader: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 akan disusutkan menjadi %2MB dan partisi baru %3MB akan dibuat untuk %4. @@ -377,108 +377,108 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. - - - + + + Current: Saat ini: - + Reuse %1 as home partition for %2. Gunakan kembali %1 sebagai partisi home untuk %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Pilih sebuah partisi untuk diiris, kemudian seret bilah di bawah untuk mengubah ukuran</strong> - + <strong>Select a partition to install on</strong> <strong>Pilih sebuah partisi untuk memasang</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Sebuah partisi sistem EFI tidak ditemukan pada sistem ini. Silakan kembali dan gunakan pemartisian manual untuk mengeset %1. - + The EFI system partition at %1 will be used for starting %2. Partisi sistem EFI di %1 akan digunakan untuk memulai %2. - + EFI system partition: Partisi sistem EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Tampaknya media penyimpanan ini tidak mengandung sistem operasi. Apa yang hendak Anda lakukan?<br/>Anda dapat menelaah dan mengkonfirmasi pilihan Anda sebelum dilakukan perubahan pada media penyimpanan. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Hapus disk</strong><br/>Aksi ini akan <font color="red">menghapus</font> semua berkas yang ada pada media penyimpanan terpilih. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Media penyimpanan ini mengandung %1. Apa yang hendak Anda lakukan?<br/>Anda dapat menelaah dan mengkonfirmasi pilihan Anda sebelum dilakukan perubahan pada media penyimpanan. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instal berdampingan dengan</strong><br/>Installer akan mengiris sebuah partisi untuk memberi ruang bagi %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Ganti sebuah partisi</strong><br/> Ganti partisi dengan %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Media penyimpanan ini telah mengandung sistem operasi. Apa yang hendak Anda lakukan?<br/>Anda dapat menelaah dan mengkonfirmasi pilihan Anda sebelum dilakukan perubahan pada media penyimpanan. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Media penyimpanan ini telah mengandung beberapa sistem operasi. Apa yang hendak Anda lakukan?<br/>Anda dapat menelaah dan mengkonfirmasi pilihan Anda sebelum dilakukan perubahan pada media penyimpanan. @@ -741,6 +741,14 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.Tidak dapat membuka berkas groups untuk dibaca. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1578,7 +1586,7 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. - + font-weight: normal font-weight: normal @@ -1608,22 +1616,22 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.<small>Nama ini akan digunakan jika anda membuat komputer ini terlihat oleh orang lain dalam sebuah jaringan.</small> - + Log in automatically without asking for the password. Log in otomatis tanpa menanyakan sandi. - + Use the same password for the administrator account. Gunakan sandi yang sama untuk akun administrator. - + Choose a password for the administrator account. Pilih sebuah kata sandi untuk akun administrator. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Ketik kata sandi yang sama dua kali, supaya kesalahan pengetikan dapat diketahui.</small> @@ -1769,17 +1777,17 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.I&nstal boot loader di: - + Are you sure you want to create a new partition table on %1? Apakah Anda yakin ingin membuat tabel partisi baru pada %1? - + Can not create new partition Tidak bisa menciptakan partisi baru. - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Partisi tabel pada %1 sudah memiliki %2 partisi primer, dan tidak ada lagi yang bisa ditambahkan. Silakan hapus salah satu partisi primer dan tambahkan sebuah partisi extended, sebagai gantinya. @@ -2053,6 +2061,11 @@ Keluaran: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2300,6 +2313,14 @@ Keluaran: Installer gagal untuk merubah ukuran partisi %1 pada disk '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + Ubah-ukuran Grup Volume + + ResizeVolumeGroupJob @@ -2709,33 +2730,33 @@ Keluaran: UsersPage - + Your username is too long. Nama pengguna Anda terlalu panjang. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Nama pengguna Anda berisi karakter yang tidak sah. Hanya huruf kecil dan angka yang diperbolehkan. - + Your hostname is too short. Hostname Anda terlalu pendek. - + Your hostname is too long. Hostname Anda terlalu panjang. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Hostname Anda berisi karakter yang tidak sah. Hanya huruf kecil, angka, dan strip yang diperbolehkan. - - + + Your passwords do not match! Sandi Anda tidak sama! @@ -2752,8 +2773,8 @@ Keluaran: VolumeGroupBaseDialog - VolumeGroupDialog - DialogGrupVolume + Create Volume Group + diff --git a/lang/calamares_is.ts b/lang/calamares_is.ts index a5807d8a7..a7fbf617c 100644 --- a/lang/calamares_is.ts +++ b/lang/calamares_is.ts @@ -354,17 +354,17 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. Eftir: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Handvirk disksneiðing</strong><br/>Þú getur búið til eða breytt stærð disksneiða sjálft. - + Boot loader location: Staðsetning ræsistjóra - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 verður minnkuð í %2MB og ný %3MB disksneið verður búin til fyrir %4. @@ -375,108 +375,108 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. - - - + + + Current: Núverandi: - + Reuse %1 as home partition for %2. Endurnota %1 sem heimasvæðis disksneið fyrir %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Veldu disksneið til að minnka, dragðu síðan botnstikuna til að breyta stærðinni</strong> - + <strong>Select a partition to install on</strong> <strong>Veldu disksneið til að setja upp á </strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. EFI kerfisdisksneið er hvergi að finna á þessu kerfi. Farðu til baka og notaðu handvirka skiptingu til að setja upp %1. - + The EFI system partition at %1 will be used for starting %2. EFI kerfisdisksneið á %1 mun verða notuð til að ræsa %2. - + EFI system partition: EFI kerfisdisksneið: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Þetta geymslu tæki hefur mörg stýrikerfi á sér. Hvað viltu gera?<br/>Þú verður að vera fær um að yfirfara og staðfesta val þitt áður en breytingar eru gerðar til geymslu tæki. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Eyða disk</strong><br/>Þetta mun <font color="red">eyða</font> öllum gögnum á þessu valdna geymslu tæki. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Þetta geymslu tæki hefur %1 á sér. Hvað viltu gera?<br/>Þú verður að vera fær um að yfirfara og staðfesta val þitt áður en breytingar eru gerðar til geymslu tæki. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Setja upp samhliða</strong><br/>Uppsetningarforritið mun minnka disksneið til að búa til pláss fyrir %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Skipta út disksneið</strong><br/>Skiptir disksneið út með %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Þetta geymslu tæki hefur stýrikerfi á sér. Hvað viltu gera?<br/>Þú verður að vera fær um að yfirfara og staðfesta val þitt áður en breytingar eru gerðar til geymslu tæki. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Þetta geymslu tæki hefur mörg stýrikerfi á sér. Hvað viltu gera?<br/>Þú verður að vera fær um að yfirfara og staðfesta val þitt áður en breytingar eru gerðar til geymslu tæki. @@ -739,6 +739,14 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. Get ekki opnað hópa skrá til að lesa. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. - + font-weight: normal letur-þyngd: venjuleg @@ -1606,22 +1614,22 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. <small>Þetta nafn verður notað ef þú gerir tölvuna sýnilega öðrum á neti.</small> - + Log in automatically without asking for the password. Skrá inn sjálfkrafa án þess að biðja um lykilorð. - + Use the same password for the administrator account. Nota sama lykilorð fyrir kerfisstjóra reikning. - + Choose a password for the administrator account. Veldu lykilorð fyrir kerfisstjóra reikning. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Sláðu sama lykilorð tvisvar, þannig að það er hægt að yfirfara innsláttarvillur.</small> @@ -1767,17 +1775,17 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. - + Are you sure you want to create a new partition table on %1? Ertu viss um að þú viljir búa til nýja disksneið á %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2048,6 +2056,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2295,6 +2308,14 @@ Output: Uppsetningarforritinu mistókst að breyta stærð disksneiðar %1 á diski '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2704,33 +2725,33 @@ Output: UsersPage - + Your username is too long. Notandanafnið þitt er of langt. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Notandanafnið þitt inniheldur ógilda stafi. Aðeins lágstöfum og númer eru leyfð. - + Your hostname is too short. Notandanafnið þitt er of stutt. - + Your hostname is too long. Notandanafnið þitt er of langt. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - - + + Your passwords do not match! Lykilorð passa ekki! @@ -2747,7 +2768,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_it_IT.ts b/lang/calamares_it_IT.ts index f66c5b0e4..82ad12d10 100644 --- a/lang/calamares_it_IT.ts +++ b/lang/calamares_it_IT.ts @@ -354,17 +354,17 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno Dopo: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Partizionamento manuale</strong><br/>Si possono creare o ridimensionare le partizioni manualmente. - + Boot loader location: Posizionamento del boot loader: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 sarà ridotta a %2MB e una nuova partizione di %3MB sarà creata per %4. @@ -375,108 +375,108 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno - - - + + + Current: Corrente: - + Reuse %1 as home partition for %2. Riutilizzare %1 come partizione home per &2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Selezionare una partizione da ridurre, trascina la barra inferiore per ridimensionare</strong> - + <strong>Select a partition to install on</strong> <strong>Selezionare la partizione sulla quale si vuole installare</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Impossibile trovare una partizione EFI di sistema. Si prega di tornare indietro ed effettuare un partizionamento manuale per configurare %1. - + The EFI system partition at %1 will be used for starting %2. La partizione EFI di sistema su %1 sarà usata per avviare %2. - + EFI system partition: Partizione EFI di sistema: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Questo dispositivo di memoria non sembra contenere alcun sistema operativo. Come si vuole procedere?<br/>Si potranno comunque rivedere e confermare le scelte prima di apportare i cambiamenti al dispositivo. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Cancellare disco</strong><br/>Questo <font color="red">cancellerà</font> tutti i dati attualmente presenti sul dispositivo di memoria. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Questo dispositivo di memoria ha %1. Come si vuole procedere?<br/>Si potranno comunque rivedere e confermare le scelte prima di apportare i cambiamenti al dispositivo. - + No Swap - + No Swap - + Reuse Swap - + Riutilizza Swap - + Swap (no Hibernate) - + Swap (senza ibernazione) - + Swap (with Hibernate) - + Swap (con ibernazione) - + Swap to file - + Swap su file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Installare a fianco</strong><br/>Il programma di installazione ridurrà una partizione per dare spazio a %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Sostituire una partizione</strong><br/>Sostituisce una partizione con %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Questo dispositivo di memoria contenere già un sistema operativo. Come si vuole procedere?<br/>Si potranno comunque rivedere e confermare le scelte prima di apportare i cambiamenti al dispositivo. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Questo dispositivo di memoria contenere diversi sistemi operativi. Come si vuole procedere?<br/>Comunque si potranno rivedere e confermare le scelte prima di apportare i cambiamenti al dispositivo. @@ -739,27 +739,35 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno Impossibile aprire il file groups in lettura. + + CreateVolumeGroupDialog + + + Create Volume Group + Crea Gruppo di Volumi + + CreateVolumeGroupJob Create new volume group named %1. - + Crea un nuovo gruppo di volumi denominato %1. Create new volume group named <strong>%1</strong>. - + Crea un nuovo gruppo di volumi denominato <strong>%1</strong>. Creating new volume group named %1. - + Creazione del nuovo gruppo di volumi denominato %1. The installer failed to create a volume group named '%1'. - + Il programma di installazione non è riuscito a creare un gruppo di volumi denominato '%1'. @@ -768,17 +776,17 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno Deactivate volume group named %1. - + Disattiva gruppo di volumi denominato %1. Deactivate volume group named <strong>%1</strong>. - + Disattiva gruppo di volumi denominato <strong>%1</strong>. The installer failed to deactivate a volume group named %1. - + Il programma di installazione non è riuscito a disattivare il gruppo di volumi denominato %1. @@ -847,7 +855,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno %1 - (%2) - + %1 - (%2) @@ -1576,7 +1584,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno - + font-weight: normal Dimensione font: normale @@ -1606,22 +1614,22 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno <small>Questo nome sarà usato se rendi visibile il computer ad altre persone in una rete.</small> - + Log in automatically without asking for the password. Accedere automaticamente senza chiedere la password. - + Use the same password for the administrator account. Usare la stessa password per l'account amministratore. - + Choose a password for the administrator account. Scegliere una password per l'account dell'amministratore. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Inserire la password due volte per controllare eventuali errori di battitura.</small> @@ -1744,40 +1752,40 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno New Volume Group - + Nuovo Gruppo di Volumi Resize Volume Group - + RIdimensiona Gruppo di Volumi Deactivate Volume Group - + Disattiva Gruppo di Volumi Remove Volume Group - + Rimuovi Gruppo di Volumi I&nstall boot loader on: - + I&nstalla boot loader su: - + Are you sure you want to create a new partition table on %1? Si è sicuri di voler creare una nuova tabella delle partizioni su %1? - + Can not create new partition Impossibile creare nuova partizione - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. La tabella delle partizioni su %1 contiene già %2 partizioni primarie, non se ne possono aggiungere altre. Rimuovere una partizione primaria e aggiungere una partizione estesa invece. @@ -2051,6 +2059,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + (nessun mount point) + RemoveVolumeGroupJob @@ -2058,12 +2071,12 @@ Output: Remove Volume Group named %1. - + Rimuovi Gruppo di Volumi denominato %1. Remove Volume Group named <strong>%1</strong>. - + Rimuovi gruppo di volumi denominato <strong>%1</strong>. @@ -2298,6 +2311,14 @@ Output: Il programma di installazione non è riuscito a ridimensionare la partizione %1 sul disco '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + RIdimensiona Gruppo di Volumi + + ResizeVolumeGroupJob @@ -2707,33 +2728,33 @@ Output: UsersPage - + Your username is too long. Il nome utente è troppo lungo. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Il nome utente contiene caratteri non validi. Sono ammessi solo lettere minuscole e numeri. - + Your hostname is too short. Hostname è troppo corto. - + Your hostname is too long. Hostname è troppo lungo. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Hostname contiene caratteri non validi. Sono ammessi solo lettere, numeri e trattini. - - + + Your passwords do not match! Le password non corrispondono! @@ -2750,8 +2771,8 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog - + Create Volume Group + Crea Gruppo di Volumi diff --git a/lang/calamares_ja.ts b/lang/calamares_ja.ts index 3a49ed2d6..88fd24c3a 100644 --- a/lang/calamares_ja.ts +++ b/lang/calamares_ja.ts @@ -354,17 +354,17 @@ The installer will quit and all changes will be lost. 後: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>手動パーティション</strong><br/>パーティションの作成、あるいはサイズ変更を行うことができます。 - + Boot loader location: ブートローダーの場所: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 は %2 MB に縮小され、新しい %3 MB のパーティションが %4 のために作成されます。 @@ -375,108 +375,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: 現在: - + Reuse %1 as home partition for %2. %1 を %2 のホームパーティションとして再利用する - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>縮小するパーティションを選択し、下のバーをドラッグしてサイズを変更して下さい</strong> - + <strong>Select a partition to install on</strong> <strong>インストールするパーティションの選択</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. システムにEFIシステムパーティションが存在しません。%1 のセットアップのため、元に戻り、手動パーティショニングを使用してください。 - + The EFI system partition at %1 will be used for starting %2. %1 上のEFIシステムパーテイションは %2 のスタートに使用されます。 - + EFI system partition: EFI システムパーティション: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. このストレージデバイスは、オペレーティングシステムを持っていないようです。どうしますか?<br/>ストレージデバイスに対する変更が実施される前に、変更点をレビューし、確認することができます。 - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>ディスクの消去</strong><br/>選択したストレージデバイス上のデータがすべて <font color="red">削除</font>されます。 - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. このストレージデバイスは %1 を有しています。どうしますか?<br/>ストレージデバイスに対する変更が実施される前に、変更点をレビューし、確認することができます。 - + No Swap スワップを使用しない - + Reuse Swap スワップを再利用 - + Swap (no Hibernate) スワップ(ハイバーネートなし) - + Swap (with Hibernate) スワップ(ハイバーネート) - + Swap to file ファイルにスワップ - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>共存してインストール</strong><br/>インストーラは %1 用の空きスペースを確保するため、パーティションを縮小します。 - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>パーティションの置換</strong><br/>パーティションを %1 に置き換えます。 - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. この記憶装置は、すでにオペレーティングシステムが存在します。どうしますか?<br/>ストレージデバイスに対する変更が実施される前に、変更点をレビューし、確認することができます。 - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. このストレージデバイスには、複数のオペレーティングシステムが存在します。どうしますか?<br />ストレージデバイスに対する変更が実施される前に、変更点をレビューし、確認することができます。 @@ -739,6 +739,14 @@ The installer will quit and all changes will be lost. groups ファイルを読み込めません。 + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1577,7 +1585,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal フォントウェイト: normal @@ -1607,22 +1615,22 @@ The installer will quit and all changes will be lost. <small>ネットワーク上からコンピュータが見えるようにする場合、この名前が使用されます。</small> - + Log in automatically without asking for the password. パスワードを尋ねずに自動的にログインする。 - + Use the same password for the administrator account. 管理者アカウントと同じパスワードを使用する。 - + Choose a password for the administrator account. 管理者アカウントのパスワードを選択する。 - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>入力ミスを確認することができるように、同じパスワードを 2 回入力します。</small> @@ -1768,17 +1776,17 @@ The installer will quit and all changes will be lost. ブートローダーインストール先: - + Are you sure you want to create a new partition table on %1? %1 上で新しいパーティションテーブルを作成します。よろしいですか? - + Can not create new partition 新しいパーティションを作成できません - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. %1 上のパーティションテーブルには既にプライマリパーティション %2 が配置されており、追加することができません。プライマリパーティションを消去して代わりに拡張パーティションを追加してください。 @@ -2052,6 +2060,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2299,6 +2312,14 @@ Output: インストーラが、ディスク '%2' でのパーティション %1 のリサイズに失敗しました。 + + ResizeVolumeGroupDialog + + + Resize Volume Group + ボリュームグループのサイズ変更 + + ResizeVolumeGroupJob @@ -2708,33 +2729,33 @@ Output: UsersPage - + Your username is too long. ユーザー名が長すぎます。 - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. ユーザー名に不適切な文字が含まれています。アルファベットの小文字と数字のみが使用できます。 - + Your hostname is too short. ホスト名が短すぎます。 - + Your hostname is too long. ホスト名が長過ぎます。 - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. ホスト名に不適切な文字が含まれています。アルファベット、数字及びハイフンのみが使用できます。 - - + + Your passwords do not match! パスワードが一致していません! @@ -2751,8 +2772,8 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog - ボリュームグループのダイアログ + Create Volume Group + diff --git a/lang/calamares_kk.ts b/lang/calamares_kk.ts index e59580531..73c9822fa 100644 --- a/lang/calamares_kk.ts +++ b/lang/calamares_kk.ts @@ -353,17 +353,17 @@ The installer will quit and all changes will be lost. - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -374,108 +374,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: EFI жүйелік бөлімі: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -738,6 +738,14 @@ The installer will quit and all changes will be lost. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1575,7 +1583,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal @@ -1605,22 +1613,22 @@ The installer will quit and all changes will be lost. - + Log in automatically without asking for the password. - + Use the same password for the administrator account. - + Choose a password for the administrator account. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> @@ -1766,17 +1774,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2047,6 +2055,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2294,6 +2307,14 @@ Output: + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2703,33 +2724,33 @@ Output: UsersPage - + Your username is too long. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - - + + Your passwords do not match! @@ -2746,7 +2767,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_kn.ts b/lang/calamares_kn.ts index 21a1da9e9..796e57a51 100644 --- a/lang/calamares_kn.ts +++ b/lang/calamares_kn.ts @@ -353,17 +353,17 @@ The installer will quit and all changes will be lost. - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -374,108 +374,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: ಪ್ರಸಕ್ತ: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -738,6 +738,14 @@ The installer will quit and all changes will be lost. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1575,7 +1583,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal @@ -1605,22 +1613,22 @@ The installer will quit and all changes will be lost. - + Log in automatically without asking for the password. - + Use the same password for the administrator account. - + Choose a password for the administrator account. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> @@ -1766,17 +1774,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2047,6 +2055,11 @@ Output: Language (Country) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2294,6 +2307,14 @@ Output: + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2703,33 +2724,33 @@ Output: UsersPage - + Your username is too long. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - - + + Your passwords do not match! @@ -2746,7 +2767,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_ko.ts b/lang/calamares_ko.ts index c803f858f..c5156b4c4 100644 --- a/lang/calamares_ko.ts +++ b/lang/calamares_ko.ts @@ -354,17 +354,17 @@ The installer will quit and all changes will be lost. 이후: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: 부트 로더 위치: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -375,108 +375,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: 현재: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. %1의 EFI 시스템 파티션은 %2의 시작으로 사용될 것입니다. - + EFI system partition: EFI 시스템 파티션: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -739,6 +739,14 @@ The installer will quit and all changes will be lost. groups 파일을 읽을 수가 없습니다. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal @@ -1606,22 +1614,22 @@ The installer will quit and all changes will be lost. - + Log in automatically without asking for the password. 암호를 묻지 않고 자동으로 로그인합니다. - + Use the same password for the administrator account. 관리자 계정에 대해 같은 암호를 사용합니다. - + Choose a password for the administrator account. 관리자 계정을 위한 암호를 선택하세요. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>입력 오류를 검사하기 위해 암호를 똑같이 두번 입력하세요.</small> @@ -1767,17 +1775,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition 새로운 파티션을 만들 수 없습니다 - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2051,6 +2059,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2298,6 +2311,14 @@ Output: + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2707,33 +2728,33 @@ Output: UsersPage - + Your username is too long. 사용자 이름이 너무 깁니다. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. 사용자 이름이 유효하지 않은 문자들을 포함하고 있습니다. 소문자 그리고 숫자만이 허용됩니다. - + Your hostname is too short. 호스트 이름이 너무 짧습니다. - + Your hostname is too long. 호스트 이름이 너무 깁니다. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. 호트스 이름이 유효하지 않은 문자들을 포함하고 있습니다. 영문자, 숫자 그리고 붙임표(-)만이 허용됩니다. - - + + Your passwords do not match! 암호가 일치하지 않습니다! @@ -2750,7 +2771,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_lo.ts b/lang/calamares_lo.ts index ee15eb8f9..eab7dcce8 100644 --- a/lang/calamares_lo.ts +++ b/lang/calamares_lo.ts @@ -353,17 +353,17 @@ The installer will quit and all changes will be lost. - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -374,108 +374,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -738,6 +738,14 @@ The installer will quit and all changes will be lost. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1575,7 +1583,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal @@ -1605,22 +1613,22 @@ The installer will quit and all changes will be lost. - + Log in automatically without asking for the password. - + Use the same password for the administrator account. - + Choose a password for the administrator account. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> @@ -1766,17 +1774,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2047,6 +2055,11 @@ Output: Language (Country) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2294,6 +2307,14 @@ Output: + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2703,33 +2724,33 @@ Output: UsersPage - + Your username is too long. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - - + + Your passwords do not match! @@ -2746,7 +2767,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_lt.ts b/lang/calamares_lt.ts index 3eba2ef0d..54c685fb9 100644 --- a/lang/calamares_lt.ts +++ b/lang/calamares_lt.ts @@ -354,17 +354,17 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. Po: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Rankinis skaidymas</strong><br/>Galite patys kurti ar keisti skaidinių dydžius. - + Boot loader location: Paleidyklės vieta: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 bus sumažintas iki %2MB ir naujas %3MB skaidinys bus sukurtas sistemai %4. @@ -375,108 +375,108 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. - - - + + + Current: Dabartinis: - + Reuse %1 as home partition for %2. Pakartotinai naudoti %1 kaip namų skaidinį, skirtą %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Pasirinkite, kurį skaidinį sumažinti, o tuomet vilkite juostą, kad pakeistumėte skaidinio dydį</strong> - + <strong>Select a partition to install on</strong> <strong>Pasirinkite kuriame skaidinyje įdiegti</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Šioje sistemoje niekur nepavyko rasti EFI skaidinio. Prašome grįžti ir naudoti rankinį skaidymą, kad nustatytumėte %1. - + The EFI system partition at %1 will be used for starting %2. %2 paleidimui bus naudojamas EFI sistemos skaidinys, esantis ties %1. - + EFI system partition: EFI sistemos skaidinys: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Atrodo, kad šiame įrenginyje nėra operacinės sistemos. Ką norėtumėte daryti?<br/>Prieš atliekant bet kokius pakeitimus atminties įrenginyje, jūs galėsite apžvelgti ir patvirtinti savo pasirinkimus. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Ištrinti diską</strong><br/>Tai <font color="red">ištrins</font> visus, pasirinktame atminties įrenginyje, esančius duomenis. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Šiame atminties įrenginyje jau yra %1. Ką norėtumėte daryti?<br/>Prieš atliekant bet kokius pakeitimus atminties įrenginyje, jūs galėsite apžvelgti ir patvirtinti savo pasirinkimus. - + No Swap Be sukeitimų skaidinio - + Reuse Swap Iš naujo naudoti sukeitimų skaidinį - + Swap (no Hibernate) Sukeitimų skaidinys (be užmigdymo) - + Swap (with Hibernate) Sukeitimų skaidinys (su užmigdymu) - + Swap to file Sukeitimų failas - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Įdiegti šalia</strong><br/>Diegimo programa sumažins skaidinį, kad atlaisvintų vietą sistemai %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Pakeisti skaidinį</strong><br/>Pakeičia skaidinį ir įrašo %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Šiame atminties įrenginyje jau yra operacinė sistema. Ką norėtumėte daryti?<br/>Prieš atliekant bet kokius pakeitimus atminties įrenginyje, jūs galėsite apžvelgti ir patvirtinti savo pasirinkimus. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Šiame atminties įrenginyje jau yra kelios operacinės sistemos. Ką norėtumėte daryti?<br/>Prieš atliekant bet kokius pakeitimus atminties įrenginyje, jūs galėsite apžvelgti ir patvirtinti savo pasirinkimus. @@ -739,6 +739,14 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. Nepavyko skaitymui atverti grupių failo. + + CreateVolumeGroupDialog + + + Create Volume Group + Sukurti tomų grupę + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. - + font-weight: normal šrifto ryškumas: normalus @@ -1606,22 +1614,22 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. <small>Šis vardas bus naudojamas, jeigu padarysite savo kompiuterį matomą kitiems naudotojams tinkle.</small> - + Log in automatically without asking for the password. Prisijungti automatiškai, neklausiant slaptažodžio. - + Use the same password for the administrator account. Naudoti tokį patį slaptažodį administratoriaus paskyrai. - + Choose a password for the administrator account. Pasirinkite slaptažodį administratoriaus paskyrai. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Norint įsitikinti, kad rašydami slaptažodį nesuklydote, įrašykite tą patį slaptažodį du kartus.</small> @@ -1767,17 +1775,17 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. Į&diegti paleidyklę skaidinyje: - + Are you sure you want to create a new partition table on %1? Ar tikrai %1 norite sukurti naują skaidinių lentelę? - + Can not create new partition Nepavyksta sukurti naują skaidinį - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Skaidinių lentelėje ties %1 jau yra %2 pirminiai skaidiniai ir daugiau nebegali būti pridėta. Pašalinkite vieną pirminį skaidinį ir vietoj jo, pridėkite išplėstą skaidinį. @@ -2051,6 +2059,11 @@ Išvestis: Language (Country) %1 (%2) + + + (no mount point) + (nėra prijungimo taško) + RemoveVolumeGroupJob @@ -2298,6 +2311,14 @@ Išvestis: Diegimo programai nepavyko pakeisti skaidinio %1 dydį diske '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + Keisti tomų grupės dydį + + ResizeVolumeGroupJob @@ -2707,33 +2728,33 @@ Išvestis: UsersPage - + Your username is too long. Jūsų naudotojo vardas yra pernelyg ilgas. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Jūsų naudotojo varde yra neleistinų simbolių. Leidžiamos tik mažosios raidės ir skaičiai. - + Your hostname is too short. Jūsų kompiuterio vardas yra pernelyg trumpas. - + Your hostname is too long. Jūsų kompiuterio vardas yra pernelyg ilgas. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Jūsų kompiuterio varde yra neleistinų simbolių. Kompiuterio varde gali būti tik raidės, skaičiai ir brūkšniai. - - + + Your passwords do not match! Jūsų slaptažodžiai nesutampa! @@ -2750,8 +2771,8 @@ Išvestis: VolumeGroupBaseDialog - VolumeGroupDialog - Tomų grupės dialogas + Create Volume Group + Sukurti tomų grupę diff --git a/lang/calamares_mk.ts b/lang/calamares_mk.ts index 9dd4c8926..78959459d 100644 --- a/lang/calamares_mk.ts +++ b/lang/calamares_mk.ts @@ -353,17 +353,17 @@ The installer will quit and all changes will be lost. - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -374,108 +374,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -738,6 +738,14 @@ The installer will quit and all changes will be lost. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1575,7 +1583,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal @@ -1605,22 +1613,22 @@ The installer will quit and all changes will be lost. - + Log in automatically without asking for the password. - + Use the same password for the administrator account. - + Choose a password for the administrator account. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> @@ -1766,17 +1774,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2047,6 +2055,11 @@ Output: Language (Country) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2294,6 +2307,14 @@ Output: + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2703,33 +2724,33 @@ Output: UsersPage - + Your username is too long. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - - + + Your passwords do not match! @@ -2746,7 +2767,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_mr.ts b/lang/calamares_mr.ts index fa2d45314..4b3c17eb6 100644 --- a/lang/calamares_mr.ts +++ b/lang/calamares_mr.ts @@ -353,17 +353,17 @@ The installer will quit and all changes will be lost. नंतर : - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -374,108 +374,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: सद्या : - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -738,6 +738,14 @@ The installer will quit and all changes will be lost. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1575,7 +1583,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal @@ -1605,22 +1613,22 @@ The installer will quit and all changes will be lost. - + Log in automatically without asking for the password. - + Use the same password for the administrator account. - + Choose a password for the administrator account. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> @@ -1766,17 +1774,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2047,6 +2055,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2294,6 +2307,14 @@ Output: + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2703,33 +2724,33 @@ Output: UsersPage - + Your username is too long. तुमचा वापरकर्तानाव खूप लांब आहे - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. तुमच्या वापरकर्तानावात अवैध अक्षरे आहेत. फक्त अक्षरे, अंक आणि डॅश स्वीकारले जातील. - + Your hostname is too short. तुमचा संगणकनाव खूप लहान आहे - + Your hostname is too long. तुमचा संगणकनाव खूप लांब आहे - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. तुमच्या संगणकनावात अवैध अक्षरे आहेत. फक्त अक्षरे, अंक आणि डॅश स्वीकारले जातील. - - + + Your passwords do not match! तुमचा परवलीशब्द जुळत नाही @@ -2746,7 +2767,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_nb.ts b/lang/calamares_nb.ts index 690c58b8f..6f4c72b41 100644 --- a/lang/calamares_nb.ts +++ b/lang/calamares_nb.ts @@ -354,17 +354,17 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Manuell partisjonering</strong><br/>Du kan opprette eller endre størrelse på partisjoner selv. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -375,108 +375,108 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. - - - + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -739,6 +739,14 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. - + font-weight: normal @@ -1606,22 +1614,22 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. - + Log in automatically without asking for the password. - + Use the same password for the administrator account. - + Choose a password for the administrator account. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> @@ -1767,17 +1775,17 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2048,6 +2056,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2295,6 +2308,14 @@ Output: + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2704,33 +2725,33 @@ Output: UsersPage - + Your username is too long. Brukernavnet ditt er for langt. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - - + + Your passwords do not match! @@ -2747,7 +2768,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_ne_NP.ts b/lang/calamares_ne_NP.ts index 2e0fa32b3..cf0630cd5 100644 --- a/lang/calamares_ne_NP.ts +++ b/lang/calamares_ne_NP.ts @@ -353,17 +353,17 @@ The installer will quit and all changes will be lost. - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -374,108 +374,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -738,6 +738,14 @@ The installer will quit and all changes will be lost. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1575,7 +1583,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal @@ -1605,22 +1613,22 @@ The installer will quit and all changes will be lost. - + Log in automatically without asking for the password. - + Use the same password for the administrator account. - + Choose a password for the administrator account. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> @@ -1766,17 +1774,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2047,6 +2055,11 @@ Output: Language (Country) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2294,6 +2307,14 @@ Output: + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2703,33 +2724,33 @@ Output: UsersPage - + Your username is too long. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - - + + Your passwords do not match! @@ -2746,7 +2767,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_nl.ts b/lang/calamares_nl.ts index 90f7ed0a1..5e4ada5d1 100644 --- a/lang/calamares_nl.ts +++ b/lang/calamares_nl.ts @@ -197,7 +197,7 @@ %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + %1 kan niet worden geïnstalleerd. Calamares kon niet alle geconfigureerde modules laden. Dit is een probleem met hoe Calamares wordt gebruikt door de distributie. @@ -207,7 +207,7 @@ &Install - + &Installeer @@ -354,17 +354,17 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Na: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Handmatig partitioneren</strong><br/>Je maakt of wijzigt zelf de partities. - + Boot loader location: Bootloader locatie: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 zal verkleind worden tot %2MB en een nieuwe %3MB partitie zal worden aangemaakt voor %4. @@ -375,108 +375,108 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. - - - + + + Current: Huidig: - + Reuse %1 as home partition for %2. Hergebruik %1 als home-partitie voor %2 - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Selecteer een partitie om te verkleinen, en sleep vervolgens de onderste balk om het formaat te wijzigen</strong> - + <strong>Select a partition to install on</strong> <strong>Selecteer een partitie om op te installeren</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Er werd geen EFI systeempartitie gevonden op dit systeem. Gelieve terug te gaan en manueel te partitioneren om %1 in te stellen. - + The EFI system partition at %1 will be used for starting %2. De EFI systeempartitie op %1 zal gebruikt worden om %2 te starten. - + EFI system partition: EFI systeempartitie: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Dit opslagmedium lijkt geen besturingssysteem te bevatten. Wat wil je doen?<br/>Je zal jouw keuzes kunnen nazien en bevestigen voordat er iets aan het opslagmedium wordt veranderd. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Wis schijf</strong><br/>Dit zal alle huidige gegevens op de geselecteerd opslagmedium <font color="red">verwijderen</font>. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Dit opslagmedium bevat %1. Wat wil je doen?<br/>Je zal jouw keuzes kunnen nazien en bevestigen voordat er iets aan het opslagmedium wordt veranderd. - + No Swap - + Geen wisselgeheugen - + Reuse Swap - + Wisselgeheugen hergebruiken - + Swap (no Hibernate) - + Wisselgeheugen (geen Sluimerstand) - + Swap (with Hibernate) - + Wisselgeheugen ( met Sluimerstand) - + Swap to file - + Wisselgeheugen naar bestand - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Installeer ernaast</strong><br/>Het installatieprogramma zal een partitie verkleinen om plaats te maken voor %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Vervang een partitie</strong><br/>Vervangt een partitie met %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Dit opslagmedium bevat reeds een besturingssysteem. Wat wil je doen?<br/>Je zal jouw keuzes kunnen nazien en bevestigen voordat er iets aan het opslagmedium wordt veranderd. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Dit opslagmedium bevat meerdere besturingssystemen. Wat wil je doen?<br/>Je zal jouw keuzes kunnen nazien en bevestigen voordat er iets aan het opslagmedium wordt veranderd. @@ -528,17 +528,17 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Could not run command. - + Kon de opdracht niet uitvoeren. The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined. - + De opdracht loopt in de gastomgeving en moet het root pad weten, maar rootMountPoint is niet gedefinieerd. The command needs to know the user's name, but no username is defined. - + De opdracht moet de naam van de gebruiker weten, maar de gebruikersnaam is niet gedefinieerd. @@ -546,7 +546,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Contextual Processes Job - + Contextuele processen Taak @@ -584,7 +584,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. LVM LV name - + LVM LV naam @@ -739,27 +739,35 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Kan het bestand groups niet lezen. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob Create new volume group named %1. - + Maak nieuw volumegroep aan met de naam %1. Create new volume group named <strong>%1</strong>. - + Maak nieuwe volumegroep aan met de naam <strong>%1</strong>. Creating new volume group named %1. - + Aanmaken van volumegroep met de naam %1. The installer failed to create a volume group named '%1'. - + Het installatieprogramma kon de volumegroep met de naam '%1' niet aanmaken. @@ -768,17 +776,17 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Deactivate volume group named %1. - + Volumegroep met de naam %1 uitschakelen. Deactivate volume group named <strong>%1</strong>. - + Volumegroep met de naam <strong>%1</strong> uitschakelen. The installer failed to deactivate a volume group named %1. - + Het installatieprogramma kon de volumegroep met de naam %1 niet uitschakelen. @@ -847,7 +855,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. %1 - (%2) - + %1 - (%2) @@ -1010,7 +1018,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. <html><head/><body><p>When this box is checked, your system will restart immediately when you click on <span style=" font-style:italic;">Done</span> or close the installer.</p></body></html> - + <html><head/><body><p>Wanneer dit vakje aangevinkt is, zal het systeem herstarten van zodra je op <span style=" font-style:italic;">Voltooid</span> klikt, of het installatieprogramma afsluit.</p></body></html> @@ -1079,7 +1087,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Please install KDE Konsole and try again! - + Gelieve KDE Konsole te installeren en opnieuw te proberen! @@ -1284,7 +1292,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Network Installation. (Disabled: Received invalid groups data) - + Netwerkinstallatie. (Uitgeschakeld: ongeldige gegevens over groepen) @@ -1315,12 +1323,12 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Memory allocation error when setting '%1' - + Foute geheugentoewijzing bij het instellen van %1. Memory allocation error - + Foute geheugentoewijzing @@ -1335,7 +1343,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. The password differs with case changes only - + Het wachtwoord verschilt slechts in hoofdlettergebruik @@ -1350,192 +1358,192 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. The password contains words from the real name of the user in some form - + Het wachtwoord bevat woorden van de echte naam van de gebruiker in één of andere vorm. The password contains forbidden words in some form - + Het wachtwoord bevat verboden woorden in één of andere vorm. The password contains less than %1 digits - + Het wachtwoord bevat minder dan %1 cijfers The password contains too few digits - + Het wachtwoord bevat te weinig cijfers The password contains less than %1 uppercase letters - + Het wachtwoord bevat minder dan %1 hoofdletters. The password contains too few uppercase letters - + Het wachtwoord bevat te weinig hoofdletters. The password contains less than %1 lowercase letters - + Het wachtwoord bevat minder dan %1 kleine letters. The password contains too few lowercase letters - + Het wachtwoord bevat te weinig kleine letters. The password contains less than %1 non-alphanumeric characters - + Het wachtwoord bevat minder dan %1 niet-alfanumerieke symbolen. The password contains too few non-alphanumeric characters - + Het wachtwoord bevat te weinig niet-alfanumerieke symbolen. The password is shorter than %1 characters - + Het wachtwoord is korter dan %1 karakters. The password is too short - + Het wachtwoord is te kort. The password is just rotated old one - + Het wachtwoord is enkel omgedraaid. The password contains less than %1 character classes - + Het wachtwoord bevat minder dan %1 karaktergroepen The password does not contain enough character classes - + Het wachtwoord bevat te weinig karaktergroepen The password contains more than %1 same characters consecutively - + Het wachtwoord bevat meer dan %1 dezelfde karakters na elkaar The password contains too many same characters consecutively - + Het wachtwoord bevat te veel dezelfde karakters na elkaar The password contains more than %1 characters of the same class consecutively - + Het wachtwoord bevat meer dan %1 karakters van dezelfde groep na elkaar The password contains too many characters of the same class consecutively - + Het wachtwoord bevat te veel karakters van dezelfde groep na elkaar The password contains monotonic sequence longer than %1 characters - + Het wachtwoord bevat een monotone sequentie van meer dan %1 karakters The password contains too long of a monotonic character sequence - + Het wachtwoord bevat een te lange monotone sequentie van karakters No password supplied - + Geen wachtwoord opgegeven Cannot obtain random numbers from the RNG device - + Kan geen willekeurige nummers verkrijgen van het RNG apparaat Password generation failed - required entropy too low for settings - + Wachtwoord aanmaken mislukt - te weinig wanorde voor de instellingen The password fails the dictionary check - %1 - + Het wachtwoord faalt op de woordenboektest - %1 The password fails the dictionary check - + Het wachtwoord faalt op de woordenboektest Unknown setting - %1 - + Onbekende instelling - %1 Unknown setting - + Onbekende instelling Bad integer value of setting - %1 - + Ongeldige gehele waarde voor instelling - %1 Bad integer value - + Ongeldige gehele waarde Setting %1 is not of integer type - + Instelling %1 is niet van het type integer Setting is not of integer type - + Instelling is niet van het type integer Setting %1 is not of string type - + Instelling %1 is niet van het type string Setting is not of string type - + Instelling is niet van het type string Opening the configuration file failed - + Openen van het configuratiebestand is mislukt The configuration file is malformed - + Het configuratiebestand is ongeldig Fatal failure - + Fatale fout Unknown error - + Onbekende fout @@ -1576,7 +1584,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. - + font-weight: normal afronding lettertype: normaal @@ -1606,22 +1614,22 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. <small>Deze naam zal worden gebruikt als u de computer zichtbaar maakt voor anderen op een netwerk.</ small> - + Log in automatically without asking for the password. Automatisch aanmelden zonder wachtwoord te vragen. - + Use the same password for the administrator account. Gebruik hetzelfde wachtwoord voor het administratoraccount. - + Choose a password for the administrator account. Kies een wachtwoord voor het administrator account. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Voer hetzelfde wachtwoord twee keer in, zodat het gecontroleerd kan worden op typefouten.</ small> @@ -1729,7 +1737,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Cre&ate - + &Aanmaken @@ -1744,42 +1752,42 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. New Volume Group - + Nieuwe volumegroep Resize Volume Group - + Volumegroep herschalen Deactivate Volume Group - + Volumegroep uitschakelen Remove Volume Group - + Volumegroep verwijderen I&nstall boot loader on: - + I&nstalleer bootloader op: - + Are you sure you want to create a new partition table on %1? Weet u zeker dat u een nieuwe partitie tabel wil maken op %1? - + Can not create new partition - + Kan de nieuwe partitie niet aanmaken - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. - + De partitietabel op %1 bevat al %2 primaire partities en er kunnen geen nieuwe worden aangemaakt. In plaats hiervan kan één primaire partitie verwijderen en een uitgebreide partitie toevoegen. @@ -1885,13 +1893,13 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Plasma Look-and-Feel Job - + Plasma Look-and-Feel taak Could not select KDE Plasma Look-and-Feel package - + Kon geen KDE Plasma Look-and-Feel pakket selecteren @@ -1904,12 +1912,12 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Placeholder - + Plaatshouder Please choose a look-and-feel for the KDE Plasma Desktop. You can also skip this step and configure the look-and-feel once the system is installed. Clicking on a look-and-feel selection will give you a live preview of that look-and-feel. - + Kies een Look-and Feel voor de KDE Plasma Desktop. Je kan deze stap ook overslaan en de Look-and-Feel instellen op het geïnstalleerde systeem. Bij het selecteren van een Look-and-Feel zal een live voorbeeld tonen van die Look-and-Feel. @@ -1917,7 +1925,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Look-and-Feel - + Look-and-Feel @@ -1925,17 +1933,17 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Saving files for later ... - + Bestanden opslaan voor later... No files configured to save for later. - + Geen bestanden geconfigureerd om op te slaan voor later. Not all of the configured files could be preserved. - + Niet alle geconfigureerde bestanden konden worden bewaard. @@ -1944,39 +1952,42 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. There was no output from the command. - + +Er was geen uitvoer van de opdracht. Output: - + +Uitvoer: + External command crashed. - + Externe opdracht is vastgelopen. Command <i>%1</i> crashed. - + Opdracht <i>%1</i> is vastgelopen. External command failed to start. - + Externe opdracht kon niet worden gestart. Command <i>%1</i> failed to start. - + Opdracht <i>%1</i> kon niet worden gestart. Internal error when starting command. - + Interne fout bij het starten van de opdracht. @@ -1986,22 +1997,22 @@ Output: External command failed to finish. - + Externe opdracht is niet correct beëindigd. Command <i>%1</i> failed to finish in %2 seconds. - + Opdracht <i>%1</i> is niet beëindigd in %2 seconden. External command finished with errors. - + Externe opdracht beëindigd met fouten. Command <i>%1</i> finished with exit code %2. - + Opdracht <i>%1</i> beëindigd met foutcode %2. @@ -2048,6 +2059,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + (geen aankoppelpunt) + RemoveVolumeGroupJob @@ -2055,17 +2071,17 @@ Output: Remove Volume Group named %1. - + Volumegroep met de naam %1 verwijderen. Remove Volume Group named <strong>%1</strong>. - + Volumegroep met de naam <strong>%1</strong> verwijderen. The installer failed to remove a volume group named '%1'. - + Het installatieprogramma kon de volumegroep met de naam '%1' niet verwijderen. @@ -2206,29 +2222,29 @@ Output: Resize Filesystem Job - + Bestandssysteem herschalen Taak Invalid configuration - + Ongeldige configuratie The file-system resize job has an invalid configuration and will not run. - + De bestandssysteem herschalen-taak heeft een ongeldige configuratie en zal niet uitgevoerd worden. KPMCore not Available - + KPMCore niet beschikbaar Calamares cannot start KPMCore for the file-system resize job. - + Calamares kan KPMCore niet starten voor de bestandssysteem-herschaaltaak. @@ -2237,39 +2253,39 @@ Output: Resize Failed - + Herschalen mislukt The filesystem %1 could not be found in this system, and cannot be resized. - + Het bestandssysteem %1 kon niet gevonden worden op dit systeem en kan niet herschaald worden. The device %1 could not be found in this system, and cannot be resized. - + Het apparaat %1 kon niet gevonden worden op dit systeem en kan niet herschaald worden. The filesystem %1 cannot be resized. - + Het bestandssysteem %1 kan niet worden herschaald. The device %1 cannot be resized. - + Het apparaat %1 kan niet worden herschaald. The filesystem %1 must be resized, but cannot. - + Het bestandssysteem %1 moet worden herschaald, maar kan niet. The device %1 must be resized, but cannot - + Het apparaat %1 moet worden herschaald, maar kan niet. @@ -2295,23 +2311,31 @@ Output: Installatieprogramma is er niet in geslaagd om de grootte van partitie %1 op schrijf %2 aan te passen. + + ResizeVolumeGroupDialog + + + Resize Volume Group + Volumegroep herschalen + + ResizeVolumeGroupJob Resize volume group named %1 from %2 to %3. - + Herschaal volumegroep met de naam %1 van %2 naar %3. Resize volume group named <strong>%1</strong> from <strong>%2</strong> to <strong>%3</strong>. - + Herschaal volumegroep met de naam <strong>%1</strong> van <strong>%2</strong> naar <strong>%3</strong>. The installer failed to resize a volume group named '%1'. - + Het installatieprogramma kon de volumegroep met naam '%1' niet herschalen. @@ -2556,7 +2580,7 @@ Output: Shell Processes Job - + Shell-processen Taak @@ -2565,7 +2589,7 @@ Output: %L1 / %L2 slide counter, %1 of %2 (numeric) - + %L1 / %L2 @@ -2589,22 +2613,22 @@ Output: Installation feedback - + Installatiefeedback Sending installation feedback. - + Installatiefeedback opsturen. Internal error in install-tracking. - + Interne fout in de installatie-tracking. HTTP request timed out. - + HTTP request is verlopen. @@ -2612,28 +2636,28 @@ Output: Machine feedback - + Machinefeedback Configuring machine feedback. - + Instellen van machinefeedback. Error in machine feedback configuration. - + Fout in de configuratie van de machinefeedback. Could not configure machine feedback correctly, script error %1. - + Kon de machinefeedback niet correct instellen, scriptfout %1. Could not configure machine feedback correctly, Calamares error %1. - + Kon de machinefeedback niet correct instellen, Calamares-fout %1. @@ -2646,51 +2670,51 @@ Output: Placeholder - + Plaatshouder <html><head/><body><p>By selecting this, you will send <span style=" font-weight:600;">no information at all</span> about your installation.</p></body></html> - + <html><head/><body><p>Door dit aan te vinken zal er <span style=" font-weight:600;">geen enkele informatie</span> over jouw installatie verstuurd worden.</p></body></html> TextLabel - + TextLabel ... - + ... <html><head/><body><p><a href="placeholder"><span style=" text-decoration: underline; color:#2980b9;">Click here for more information about user feedback</span></a></p></body></html> - + <html><head/><body><p><a href="placeholder"><span style=" text-decoration: underline; color:#2980b9;">Klik hier voor meer informatie over gebruikersfeedback</span></a></p></body></html> Install tracking helps %1 to see how many users they have, what hardware they install %1 to and (with the last two options below), get continuous information about preferred applications. To see what will be sent, please click the help icon next to each area. - + Installatie-tracking helpt %1 om te zien hoeveel gebruikers ze hebben, op welke hardware %1 geïnstalleerd wordt en (met de laatste twee opties hieronder) op de hoogte te blijven van de geprefereerde toepassingen. Om na te gaan wat verzonden zal worden, klik dan op het help-pictogram naast elke optie. By selecting this you will send information about your installation and hardware. This information will <b>only be sent once</b> after the installation finishes. - + Door dit aan te vinken zal er informatie verstuurd worden over jouw installatie en hardware. Deze informatie zal <b>slechts eenmaal verstuurd worden</b> na het afronden van de installatie. By selecting this you will <b>periodically</b> send information about your installation, hardware and applications, to %1. - + Door dit aan te vinken zal <b>periodiek</b> informatie verstuurd worden naar %1 over jouw installatie, hardware en toepassingen. By selecting this you will <b>regularly</b> send information about your installation, hardware, applications and usage patterns, to %1. - + Door dit aan te vinken zal <b>regelmatig</b> informatie verstuurd worden naar %1 over jouw installatie, hardware, toepassingen en gebruikspatronen. @@ -2698,39 +2722,39 @@ Output: Feedback - + Feedback UsersPage - + Your username is too long. De gebruikersnaam is te lang. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. De gebruikersnaam bevat ongeldige tekens. Enkel kleine letters en nummers zijn toegelaten. - + Your hostname is too short. De hostnaam is te kort. - + Your hostname is too long. De hostnaam is te lang. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. De hostnaam bevat ongeldige tekens. Enkel letters, cijfers en liggende streepjes zijn toegelaten. - - + + Your passwords do not match! Je wachtwoorden komen niet overeen! @@ -2747,28 +2771,28 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group List of Physical Volumes - + Lijst met fysieke volumes Volume Group Name: - + Volumegroep naam: Volume Group Type: - + Volumegroep type: Physical Extent Size: - + Fysieke reikwijdte grootte: @@ -2778,7 +2802,7 @@ Output: Total Size: - + Totale grootte: @@ -2786,22 +2810,22 @@ Output: --- - + --- Used Size: - + Gebruikte grootte: Total Sectors: - + Totaal aantal sectoren: Quantity of LVs: - + Aantal LV's: @@ -2854,12 +2878,12 @@ Output: <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + <h1>%1</h1><br/><strong>%2<br/>voor %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Met dank aan: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg en het <a href="https://www.transifex.com/calamares/calamares/">Calamares vertaalteam</a>.<br/><br/>De ontwikkeling van <a href="https://calamares.io/">Calamares</a> wordt gesponsord door <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. %1 support - %1 ondersteuning + %1 ondersteuning diff --git a/lang/calamares_pl.ts b/lang/calamares_pl.ts index 54b5b3fff..5a61f26c1 100644 --- a/lang/calamares_pl.ts +++ b/lang/calamares_pl.ts @@ -354,17 +354,17 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Po: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Ręczne partycjonowanie</strong><br/>Możesz samodzielnie utworzyć lub zmienić rozmiar istniejących partycji. - + Boot loader location: Położenie programu rozruchowego: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 zostanie zmniejszony do %2MB a nowa partycja %3MB zostanie utworzona dla %4. @@ -375,108 +375,108 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. - - - + + + Current: Bieżący: - + Reuse %1 as home partition for %2. Użyj ponownie %1 jako partycji domowej dla %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Wybierz partycję do zmniejszenia, a następnie przeciągnij dolny pasek, aby zmienić jej rozmiar</strong> - + <strong>Select a partition to install on</strong> <strong>Wybierz partycję, na której przeprowadzona będzie instalacja</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Nigdzie w tym systemie nie można odnaleźć partycji systemowej EFI. Prosimy się cofnąć i użyć ręcznego partycjonowania dysku do ustawienia %1. - + The EFI system partition at %1 will be used for starting %2. Partycja systemowa EFI na %1 będzie użyta do uruchamiania %2. - + EFI system partition: Partycja systemowa EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. To urządzenie pamięci masowej prawdopodobnie nie posiada żadnego systemu operacyjnego. Co chcesz zrobić?<br/>Będziesz miał możliwość przejrzenia oraz zatwierdzenia swoich ustawień przed wykonaniem jakichkolwiek zmian na tym urządzeniu. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Wyczyść dysk</strong><br/>Ta operacja <font color="red">usunie</font> wszystkie dane obecnie znajdujące się na wybranym urządzeniu przechowywania. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. To urządzenie pamięci masowej posiada %1. Co chcesz zrobić?<br/>Będziesz miał możliwość przejrzenia oraz zatwierdzenia swoich ustawień przed wykonaniem jakichkolwiek zmian na tym urządzeniu. - + No Swap Brak przestrzeni wymiany - + Reuse Swap Użyj ponownie przestrzeni wymiany - + Swap (no Hibernate) Przestrzeń wymiany (bez hibernacji) - + Swap (with Hibernate) Przestrzeń wymiany (z hibernacją) - + Swap to file Przestrzeń wymiany do pliku - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Zainstaluj obok siebie</strong><br/>Instalator zmniejszy partycję, aby zrobić miejsce dla %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Zastąp partycję</strong><br/>Zastępowanie partycji poprzez %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. To urządzenie pamięci masowej posiada już system operacyjny. Co chcesz zrobić?<br/>Będziesz miał możliwość przejrzenia oraz zatwierdzenia swoich ustawień przed wykonaniem jakichkolwiek zmian na tym urządzeniu. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. To urządzenie pamięci masowej posiada kilka systemów operacyjnych. Co chcesz zrobić?<br/>Będziesz miał możliwość przejrzenia oraz zatwierdzenia swoich ustawień przed wykonaniem jakichkolwiek zmian na tym urządzeniu. @@ -739,6 +739,14 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Nie można otworzyć pliku groups do odczytu. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. - + font-weight: normal font-weight: normal @@ -1606,22 +1614,22 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.<small>Ta nazwa będzie używana, jeśli udostępnisz swój komputer w sieci.</small> - + Log in automatically without asking for the password. Zaloguj automatycznie bez proszenia o hasło. - + Use the same password for the administrator account. Użyj tego samego hasła dla konta administratora. - + Choose a password for the administrator account. Wybierz hasło do konta administratora. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Wpisz to samo hasło dwa razy, aby mieć pewność, że uniknąłeś literówek.</small> @@ -1767,17 +1775,17 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Zainstaluj program rozruchowy - + Are you sure you want to create a new partition table on %1? Czy na pewno chcesz utworzyć nową tablicę partycji na %1? - + Can not create new partition Nie można utworzyć nowej partycji - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Tablica partycji na %1 ma już %2 podstawowych partycji i więcej nie może już być dodanych. Prosimy o usunięcie jednej partycji systemowej i dodanie zamiast niej partycji rozszerzonej. @@ -2051,6 +2059,11 @@ Wyjście: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2299,6 +2312,14 @@ i nie uruchomi się Instalator nie mógł zmienić rozmiaru partycji %1 na dysku '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + Zmień Rozmiar Grupy Woluminów + + ResizeVolumeGroupJob @@ -2708,33 +2729,33 @@ i nie uruchomi się UsersPage - + Your username is too long. Twoja nazwa użytkownika jest za długa. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Twoja nazwa użytkownika zawiera niepoprawne znaki. Dozwolone są tylko małe litery i cyfry. - + Your hostname is too short. Twoja nazwa komputera jest za krótka. - + Your hostname is too long. Twoja nazwa komputera jest za długa. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Twoja nazwa komputera zawiera niepoprawne znaki. Dozwolone są tylko litery, cyfry i myślniki. - - + + Your passwords do not match! Twoje hasła nie są zgodne! @@ -2751,8 +2772,8 @@ i nie uruchomi się VolumeGroupBaseDialog - VolumeGroupDialog - DialogGrupyWoluminów + Create Volume Group + diff --git a/lang/calamares_pt_BR.ts b/lang/calamares_pt_BR.ts index 02a6b353d..a064985e7 100644 --- a/lang/calamares_pt_BR.ts +++ b/lang/calamares_pt_BR.ts @@ -354,17 +354,17 @@ O instalador será fechado e todas as alterações serão perdidas.Depois: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Particionamento manual</strong><br/>Você pode criar ou redimensionar partições. - + Boot loader location: Local do gerenciador de inicialização: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 será reduzida para %2MB e uma nova partição de %3MB será criada para %4. @@ -375,108 +375,108 @@ O instalador será fechado e todas as alterações serão perdidas. - - - + + + Current: Atual: - + Reuse %1 as home partition for %2. Reutilizar %1 como partição home para %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Selecione uma partição para reduzir, então arraste a barra de baixo para redimensionar</strong> - + <strong>Select a partition to install on</strong> <strong>Selecione uma partição para instalação</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Uma partição de sistema EFI não pôde ser encontrada neste dispositivo. Por favor, volte e use o particionamento manual para gerenciar %1. - + The EFI system partition at %1 will be used for starting %2. A partição de sistema EFI em %1 será utilizada para iniciar %2. - + EFI system partition: Partição de sistema EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Parece que não há um sistema operacional neste dispositivo de armazenamento. O que você gostaria de fazer?<br/>Você poderá revisar e confirmar suas opções antes que as alterações sejam feitas no dispositivo de armazenamento. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Apagar disco</strong><br/>Isto <font color="red">excluirá</font> todos os dados no dispositivo de armazenamento selecionado. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de armazenamento possui %1 nele. O que você gostaria de fazer?<br/>Você poderá revisar e confirmar suas opções antes que as alterações sejam feitas no dispositivo de armazenamento. - + No Swap Sem swap - + Reuse Swap Reutilizar swap - + Swap (no Hibernate) Swap (sem hibernação) - + Swap (with Hibernate) Swap (com hibernação) - + Swap to file Swap em arquivo - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instalar lado a lado</strong><br/>O instalador reduzirá uma partição para liberar espaço para %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Substituir uma partição</strong><br/>Substitui uma partição com %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Já há um sistema operacional neste dispositivo de armazenamento. O que você gostaria de fazer?<br/>Você poderá revisar e confirmar suas opções antes que as alterações sejam feitas no dispositivo de armazenamento. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Há diversos sistemas operacionais neste dispositivo de armazenamento. O que você gostaria de fazer?<br/>Você poderá revisar e confirmar suas opções antes que as alterações sejam feitas no dispositivo de armazenamento. @@ -739,6 +739,14 @@ O instalador será fechado e todas as alterações serão perdidas.Não foi possível abrir arquivo de grupos para leitura. + + CreateVolumeGroupDialog + + + Create Volume Group + Criar Grupo de Volumes + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ O instalador será fechado e todas as alterações serão perdidas. - + font-weight: normal fonte: normal @@ -1606,22 +1614,22 @@ O instalador será fechado e todas as alterações serão perdidas.<small>Esse nome será usado caso você deixe o computador visível a outros na rede.</small> - + Log in automatically without asking for the password. Entrar automaticamente sem perguntar pela senha. - + Use the same password for the administrator account. Usar a mesma senha para a conta de administrador. - + Choose a password for the administrator account. Escolha uma senha para a conta administradora. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Digite a mesma senha duas vezes para que possa ser verificada contra erros de digitação.</small> @@ -1767,17 +1775,17 @@ O instalador será fechado e todas as alterações serão perdidas.I&nstalar gerenciador de inicialização em: - + Are you sure you want to create a new partition table on %1? Você tem certeza de que deseja criar uma nova tabela de partições em %1? - + Can not create new partition Não foi possível criar uma nova partição - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. A tabela de partições %1 já tem %2 partições primárias, e nenhuma a mais pode ser adicionada. Por favor, remova uma partição primária e adicione uma partição estendida no lugar. @@ -2051,6 +2059,11 @@ Saída: Language (Country) %1 (%2) + + + (no mount point) + (sem ponto de montagem) + RemoveVolumeGroupJob @@ -2298,6 +2311,14 @@ Saída: O instalador falhou em redimensionar a partição %1 no disco '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + Redimensionar Grupo de Volumes + + ResizeVolumeGroupJob @@ -2707,33 +2728,33 @@ Saída: UsersPage - + Your username is too long. O nome de usuário é grande demais. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. O nome de usuário contém caracteres inválidos. Apenas letras minúsculas e números são permitidos. - + Your hostname is too short. O nome da máquina é muito curto. - + Your hostname is too long. O nome da máquina é muito grande. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. O nome da máquina contém caracteres inválidos. Apenas letras, números e traços são permitidos. - - + + Your passwords do not match! As senhas não estão iguais! @@ -2750,8 +2771,8 @@ Saída: VolumeGroupBaseDialog - VolumeGroupDialog - VolumeGroupDialog + Create Volume Group + Criar Grupo de Volumes diff --git a/lang/calamares_pt_PT.ts b/lang/calamares_pt_PT.ts index 3bdb90445..3cd0e9ac8 100644 --- a/lang/calamares_pt_PT.ts +++ b/lang/calamares_pt_PT.ts @@ -27,7 +27,7 @@ Boot Partition - Partição de Arranque + Partição de arranque @@ -354,17 +354,17 @@ O instalador será encerrado e todas as alterações serão perdidas.Depois: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Particionamento manual</strong><br/>Pode criar ou redimensionar partições manualmente. - + Boot loader location: Localização do carregador de arranque: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 será encolhida para %2MB e uma nova %3MB partição será criada para %4. @@ -375,108 +375,108 @@ O instalador será encerrado e todas as alterações serão perdidas. - - - + + + Current: Atual: - + Reuse %1 as home partition for %2. Reutilizar %1 como partição home para %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Selecione uma partição para encolher, depois arraste a barra de fundo para redimensionar</strong> - + <strong>Select a partition to install on</strong> <strong>Selecione uma partição para instalar</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Nenhuma partição de sistema EFI foi encontrada neste sistema. Por favor volte atrás e use o particionamento manual para configurar %1. - + The EFI system partition at %1 will be used for starting %2. A partição de sistema EFI em %1 será usada para iniciar %2. - + EFI system partition: Partição de sistema EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de armazenamento aparenta não ter um sistema operativo. O que quer fazer?<br/>Poderá rever e confirmar as suas escolhas antes de qualquer alteração ser feita no dispositivo de armazenamento. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Apagar disco</strong><br/>Isto irá <font color="red">apagar</font> todos os dados atualmente apresentados no dispositivo de armazenamento selecionado. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de armazenamento tem %1 nele. O que quer fazer?<br/>Poderá rever e confirmar as suas escolhas antes de qualquer alteração ser feita no dispositivo de armazenamento. - + No Swap Sem Swap - + Reuse Swap Reutilizar Swap - + Swap (no Hibernate) Swap (sem Hibernação) - + Swap (with Hibernate) Swap (com Hibernação) - + Swap to file Swap para ficheiro - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instalar paralelamente</strong><br/>O instalador irá encolher a partição para arranjar espaço para %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Substituir a partição</strong><br/>Substitui a partição com %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de armazenamento já tem um sistema operativo nele. O que quer fazer?<br/>Poderá rever e confirmar as suas escolhas antes de qualquer alteração ser feita no dispositivo de armazenamento. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de armazenamento tem múltiplos sistemas operativos nele, O que quer fazer?<br/>Poderá rever e confirmar as suas escolhas antes de qualquer alteração ser feita no dispositivo de armazenamento. @@ -739,6 +739,14 @@ O instalador será encerrado e todas as alterações serão perdidas.Impossível abrir ficheiro dos grupos para leitura. + + CreateVolumeGroupDialog + + + Create Volume Group + Criar Grupo de Volume + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ O instalador será encerrado e todas as alterações serão perdidas. - + font-weight: normal font-weight: normal @@ -1606,22 +1614,22 @@ O instalador será encerrado e todas as alterações serão perdidas.<small>Este nome será usado se tornar este computador visível para outros numa rede.</small> - + Log in automatically without asking for the password. Iniciar sessão automaticamente sem pedir a palavra-passe. - + Use the same password for the administrator account. Usar a mesma palavra-passe para a conta de administrador. - + Choose a password for the administrator account. Escolha uma palavra-passe para a conta de administrador. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Introduza a mesma palavra-passe duas vezes, para que se possam verificar erros de digitação.</small> @@ -1767,17 +1775,17 @@ O instalador será encerrado e todas as alterações serão perdidas.I&nstalar carregador de arranque em: - + Are you sure you want to create a new partition table on %1? Tem certeza de que deseja criar uma nova tabela de partições em %1? - + Can not create new partition Não é possível criar nova partição - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. A tabela de partições em %1 já tem %2 partições primárias, e não podem ser adicionadas mais. Em vez disso, por favor remova uma partição primária e adicione uma partição estendida. @@ -2051,6 +2059,11 @@ Saída de Dados: Language (Country) %1 (%2) + + + (no mount point) + (sem ponto de montagem) + RemoveVolumeGroupJob @@ -2298,6 +2311,14 @@ Saída de Dados: O instalador falhou o redimensionamento da partição %1 no disco '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + Redimensionar Grupo de Volume + + ResizeVolumeGroupJob @@ -2707,33 +2728,33 @@ Saída de Dados: UsersPage - + Your username is too long. O seu nome de utilizador é demasiado longo. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. O seu nome de utilizador contem caractéres inválidos. Apenas letras minúsculas e números são permitidos. - + Your hostname is too short. O nome da sua máquina é demasiado curto. - + Your hostname is too long. O nome da sua máquina é demasiado longo. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. O nome da sua máquina contém caratéres inválidos. Apenas letras, números e traços são permitidos. - - + + Your passwords do not match! As suas palavras-passe não coincidem! @@ -2750,8 +2771,8 @@ Saída de Dados: VolumeGroupBaseDialog - VolumeGroupDialog - VolumeGroupDialog + Create Volume Group + Criar Grupo de Volume diff --git a/lang/calamares_ro.ts b/lang/calamares_ro.ts index 0763b9bb4..3a4688a2a 100644 --- a/lang/calamares_ro.ts +++ b/lang/calamares_ro.ts @@ -354,17 +354,17 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.După: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Partiționare manuală</strong><br/>Puteți crea sau redimensiona partițiile. - + Boot loader location: Locație boot loader: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 va fi micșorată la %2MB și o nouă partiție %3MB va fi creată pentru %4. @@ -375,108 +375,108 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. - - - + + + Current: Actual: - + Reuse %1 as home partition for %2. Reutilizează %1 ca partiție home pentru %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Selectează o partiție de micșorat, apoi trageți bara din jos pentru a redimensiona</strong> - + <strong>Select a partition to install on</strong> <strong>Selectează o partiție pe care să se instaleze</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. O partiție de sistem EFI nu poate fi găsită nicăieri în acest sistem. Vă rugăm să reveniți și să partiționați manual pentru a seta %1. - + The EFI system partition at %1 will be used for starting %2. Partiția de sistem EFI de la %1 va fi folosită pentru a porni %2. - + EFI system partition: Partiție de sistem EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Acest dispozitiv de stocare nu pare să aibă un sistem de operare instalat. Ce doriți să faceți?<br/>Veți putea revedea și confirma alegerile făcute înainte să fie realizate schimbări pe dispozitivul de stocare. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Șterge discul</strong><br/>Aceasta va <font color="red">șterge</font> toate datele prezente pe dispozitivul de stocare selectat. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Acest dispozitiv de stocare are %1. Ce doriți să faceți?<br/>Veți putea revedea și confirma alegerile făcute înainte să fie realizate schimbări pe dispozitivul de stocare. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instalează laolaltă</strong><br/>Instalatorul va micșora o partiție pentru a face loc pentru %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Înlocuiește o partiție</strong><br/>Înlocuiește o partiție cu %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Acest dispozitiv de stocare are deja un sistem de operare instalat. Ce doriți să faceți?<br/>Veți putea revedea și confirma alegerile făcute înainte de se realiza schimbări pe dispozitivul de stocare. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Acest dispozitiv de stocare are mai multe sisteme de operare instalate. Ce doriți să faceți?<br/>Veți putea revedea și confirma alegerile făcute înainte de a se realiza schimbări pe dispozitivul de stocare. @@ -739,6 +739,14 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.Nu se poate deschide fișierul groups pentru citire. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1579,7 +1587,7 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. - + font-weight: normal grosimea fontului: normală @@ -1609,22 +1617,22 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.<small>Numele va fi folosit dacă faceți acest calculator vizibil pentru alții pe o rețea.</small> - + Log in automatically without asking for the password. Autentifică-mă automat, fără a-mi cere parola. - + Use the same password for the administrator account. Folosește aceeași parolă pentru contul de administrator. - + Choose a password for the administrator account. Alege o parolă pentru contul de administrator. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Introduceți parola de 2 ori pentru a se verifica greșelile de tipar.</small> @@ -1770,17 +1778,17 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. - + Are you sure you want to create a new partition table on %1? Sigur doriți să creați o nouă tabelă de partiție pe %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2054,6 +2062,11 @@ Output Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2301,6 +2314,14 @@ Output Programul de instalare nu a redimensionat partiția %1 pe discul „%2”. + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2710,33 +2731,33 @@ Output UsersPage - + Your username is too long. Numele de utilizator este prea lung. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Numele de utilizator conține caractere invalide. Folosiți doar litere mici și numere. - + Your hostname is too short. Hostname este prea scurt. - + Your hostname is too long. Hostname este prea lung. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Hostname conține caractere invalide. Folosiți doar litere, numere și cratime. - - + + Your passwords do not match! Parolele nu se potrivesc! @@ -2753,7 +2774,7 @@ Output VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_ru.ts b/lang/calamares_ru.ts index 860259f6a..18a13f399 100644 --- a/lang/calamares_ru.ts +++ b/lang/calamares_ru.ts @@ -353,17 +353,17 @@ The installer will quit and all changes will be lost. После: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Ручная разметка</strong><br/>Вы можете самостоятельно создавать разделы или изменять их размеры. - + Boot loader location: Расположение загрузчика: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 будет уменьшен до %2MB и новый раздел %3MB будет создан для %4. @@ -374,108 +374,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: Текущий: - + Reuse %1 as home partition for %2. Использовать %1 как домашний раздел для %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Выберите раздел для уменьшения, затем двигайте ползунок, изменяя размер</strong> - + <strong>Select a partition to install on</strong> <strong>Выберите раздел для установки</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Не найдено системного раздела EFI. Пожалуйста, вернитесь назад и выполните ручную разметку %1. - + The EFI system partition at %1 will be used for starting %2. Системный раздел EFI на %1 будет использован для запуска %2. - + EFI system partition: Системный раздел EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Видимо, на этом устройстве нет операционной системы. Что Вы хотите сделать?<br/>Вы сможете изменить или подтвердить свой выбор до того, как на устройстве будут сделаны какие-либо изменения. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Стереть диск</strong><br/>Это <font color="red">удалит</font> все данные, которые сейчас находятся на выбранном устройстве. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. На этом устройстве есть %1. Что Вы хотите сделать?<br/>Вы сможете изменить или подтвердить свой выбор до того, как на устройстве будут сделаны какие-либо изменения. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Установить рядом</strong><br/>Программа установки уменьшит раздел, чтобы освободить место для %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Заменить раздел</strong><br/>Меняет раздел на %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. На этом устройстве уже есть операционная система. Что Вы хотите сделать?<br/>Вы сможете изменить или подтвердить свой выбор до того, как на устройстве будут сделаны какие-либо изменения. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. На этом устройстве есть несколько операционных систем. Что Вы хотите сделать?<br/>Вы сможете изменить или подтвердить свой выбор до того, как на устройстве будут сделаны какие-либо изменения. @@ -738,6 +738,14 @@ The installer will quit and all changes will be lost. Не удалось открыть файл groups для чтения. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1575,7 +1583,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal Гарнитура: обычная @@ -1605,22 +1613,22 @@ The installer will quit and all changes will be lost. <small>Это имя будет использовано, если Вы сделаете этот компьютер видимым в сети.</small> - + Log in automatically without asking for the password. Автоматический вход, без запроса пароля. - + Use the same password for the administrator account. Использовать тот же пароль для аккаунта администратора. - + Choose a password for the administrator account. Выберите пароль администратора - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Введите пароль дважды, чтобы исключить ошибки ввода.</small> @@ -1766,17 +1774,17 @@ The installer will quit and all changes will be lost. Уст&ановить загрузчик в: - + Are you sure you want to create a new partition table on %1? Вы уверены, что хотите создать новую таблицу разделов на %1? - + Can not create new partition Не удалось создать новый раздел - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. В таблице разделов на %1 уже %2 первичных разделов, больше добавить нельзя. Удалите один из первичных разделов и добавьте расширенный раздел. @@ -2050,6 +2058,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2297,6 +2310,14 @@ Output: Программе установки не удалось изменить размер раздела %1 на диске '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + Изменить размер группы томов + + ResizeVolumeGroupJob @@ -2706,33 +2727,33 @@ Output: UsersPage - + Your username is too long. Ваше имя пользователя слишком длинное. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Ваше имя пользователя содержит недопустимые символы. Допускаются только строчные буквы и цифры. - + Your hostname is too short. Имя вашего компьютера слишком коротко. - + Your hostname is too long. Имя вашего компьютера слишком длинное. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Имя вашего компьютера содержит недопустимые символы. Разрешены буквы, цифры и тире. - - + + Your passwords do not match! Пароли не совпадают! @@ -2749,7 +2770,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_sk.ts b/lang/calamares_sk.ts index 4222a0714..521d05a7d 100644 --- a/lang/calamares_sk.ts +++ b/lang/calamares_sk.ts @@ -354,17 +354,17 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Potom: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Ručné rozdelenie oddielov</strong><br/>Môžete vytvoriť alebo zmeniť veľkosť oddielov podľa seba. - + Boot loader location: Umiestnenie zavádzača: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. Oddiel %1 bude zmenšený na %2MB a nový %3MB oddiel bude vytvorený pre distribúciu %4. @@ -375,108 +375,108 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. - - - + + + Current: Teraz: - + Reuse %1 as home partition for %2. Opakované použitie oddielu %1 ako domovského pre distribúciu %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Vyberte oddiel na zmenšenie a potom potiahnutím spodného pruhu zmeňte veľkosť</strong> - + <strong>Select a partition to install on</strong> <strong>Vyberte oddiel, na ktorý sa má inštalovať</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Oddiel systému EFI sa nedá v tomto počítači nájsť. Prosím, prejdite späť a použite ručné rozdelenie oddielov na inštaláciu distribúcie %1. - + The EFI system partition at %1 will be used for starting %2. Oddie lsystému EFI na %1 bude použitý na spustenie distribúcie %2. - + EFI system partition: Oddiel systému EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Zdá sa, že toto úložné zariadenie neobsahuje operačný systém. Čo by ste chceli urobiť?<br/>Budete môcť skontrolovať a potvrdiť vaše voľby pred uplatnením akejkoľvek zmeny na úložnom zariadení. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Vymazanie disku</strong><br/>Týmto sa <font color="red">odstránia</font> všetky údaje momentálne sa nachádzajúce na vybranom úložnom zariadení. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Toto úložné zariadenie obsahuje operačný systém %1. Čo by ste chceli urobiť?<br/>Budete môcť skontrolovať a potvrdiť vaše voľby pred uplatnením akejkoľvek zmeny na úložnom zariadení. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Inštalácia popri súčasnom systéme</strong><br/>Inštalátor zmenší oddiel a uvoľní miesto pre distribúciu %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Nahradenie oddielu</strong><br/>Nahradí oddiel distribúciou %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Toto úložné zariadenie už obsahuje operačný systém. Čo by ste chceli urobiť?<br/>Budete môcť skontrolovať a potvrdiť vaše voľby pred uplatnením akejkoľvek zmeny na úložnom zariadení. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Toto úložné zariadenie obsahuje viacero operačných systémov. Čo by ste chceli urobiť?<br/>Budete môcť skontrolovať a potvrdiť vaše voľby pred uplatnením akejkoľvek zmeny na úložnom zariadení. @@ -739,6 +739,14 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Nedá sa otvoriť súbor skupín na čítanie. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. - + font-weight: normal font-weight: normal @@ -1606,22 +1614,22 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. <small>Tento názov bude použitý, keď sprístupníte počítač v sieti.</small> - + Log in automatically without asking for the password. Prihlásiť automaticky bez pýtania hesla. - + Use the same password for the administrator account. Použiť rovnaké heslo pre účet správcu. - + Choose a password for the administrator account. Zvoľte heslo pre účet správcu. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Zadajte rovnaké heslo dvakrát, aby sa predišlo preklepom.</small> @@ -1767,17 +1775,17 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Nai&nštalovať zavádzač na: - + Are you sure you want to create a new partition table on %1? Naozaj chcete vytvoriť novú tabuľku oddielov na zariadení %1? - + Can not create new partition Nedá sa vytvoriť nový oddiel - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Tabuľka oddielov na %1 už obsahuje primárne oddiely %2 a nie je možné pridávať žiadne ďalšie. Odstráňte jeden primárny oddiel a namiesto toho pridajte rozšírenú oblasť. @@ -2051,6 +2059,11 @@ Výstup: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2298,6 +2311,14 @@ Výstup: Inštalátor zlyhal pri zmene veľkosti oddielu %1 na disku „%2“. + + ResizeVolumeGroupDialog + + + Resize Volume Group + Zmeniť veľkosť skupiny zväzkov + + ResizeVolumeGroupJob @@ -2707,33 +2728,33 @@ Výstup: UsersPage - + Your username is too long. Vaše používateľské meno je príliš dlhé. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Vaše používateľské meno obsahuje neplatné znaky. Povolené sú iba písmená, čísla a pomlčky. - + Your hostname is too short. Váš názov hostiteľa je príliš krátky. - + Your hostname is too long. Váš názov hostiteľa je príliš dlhý. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Váš názov hostiteľa obsahuje neplatné znaky. Povolené sú iba písmená, čísla a pomlčky. - - + + Your passwords do not match! Vaše heslá sa nezhodujú! @@ -2750,8 +2771,8 @@ Výstup: VolumeGroupBaseDialog - VolumeGroupDialog - Dialógové okno skupín zväzkov + Create Volume Group + diff --git a/lang/calamares_sl.ts b/lang/calamares_sl.ts index 8e115bb61..c7e26c173 100644 --- a/lang/calamares_sl.ts +++ b/lang/calamares_sl.ts @@ -354,17 +354,17 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. Potem: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -375,108 +375,108 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. - - - + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -739,6 +739,14 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. Datoteke skupin ni bilo mogoče odpreti za branje. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. - + font-weight: normal Debelina pisave: normalna @@ -1606,22 +1614,22 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. <small>To ime bo uporabljeno, če bo vaš računalnik viden drugim napravam v omrežju.</small> - + Log in automatically without asking for the password. - + Use the same password for the administrator account. - + Choose a password for the administrator account. Izberite geslo za skrbniški račun. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Geslo vnesite dvakrat, da se zavarujete pred morebitnimi tipkarskimi napakami.</small> @@ -1767,17 +1775,17 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. - + Are you sure you want to create a new partition table on %1? Ali ste prepričani, da želite ustvariti novo razpredelnico razdelkov na %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2048,6 +2056,11 @@ Output: Language (Country) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2295,6 +2308,14 @@ Output: + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2704,33 +2725,33 @@ Output: UsersPage - + Your username is too long. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - - + + Your passwords do not match! @@ -2747,7 +2768,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_sq.ts b/lang/calamares_sq.ts index fbcf16edf..534942ab5 100644 --- a/lang/calamares_sq.ts +++ b/lang/calamares_sq.ts @@ -354,17 +354,17 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. Pas: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Pjesëzim dorazi</strong><br/>Pjesët mund t’i krijoni dhe ripërmasoni ju vetë. - + Boot loader location: Vendndodhje ngarkuesi nisjesh: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 do të zvogëlohet në %2MB dhe për %4 do të krijohet një pjesë e re %3MB. @@ -375,108 +375,108 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. - - - + + + Current: E tanishmja: - + Reuse %1 as home partition for %2. Ripërdore %1 si pjesën shtëpi për %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Përzgjidhni një pjesë që të zvogëlohet, mandej tërhiqni shtyllën e poshtme që ta ripërmasoni</strong> - + <strong>Select a partition to install on</strong> <strong>Përzgjidhni një pjesë ku të instalohet</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Në këtë sistem s’gjendet gjëkundi një pjesë EFI sistemi. Ju lutemi, kthehuni mbrapsht dhe përdorni pjesëzimin dorazi që të rregulloni %1. - + The EFI system partition at %1 will be used for starting %2. Për nisjen e %2 do të përdoret pjesa EFI e sistemit te %1. - + EFI system partition: Pjesë Sistemi EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Kjo pajisje depozitimi përmban %1 në të. Ç’do të donit të bënit?<br/>Do të jeni në gjendje të rishqyrtoni dhe ripohoni zgjedhjet tuaja, para se te pajisja e depozitimit të bëhet çfarëdo ndryshimi. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Fshije diskun</strong><br/>Kështu do të <font color=\"red\">fshihen</font> krejt të dhënat të pranishme tani në pajisjen e përzgjedhur. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Kjo pajisje depozitimi përmban %1 në të. Ç’do të donit të bënit?<br/>Do të jeni në gjendje të rishqyrtoni dhe ripohoni zgjedhjet tuaja, para se te pajisja e depozitimit të bëhet çfarëdo ndryshimi. - + No Swap Pa Swap - + Reuse Swap Ripërdor Swap-in - + Swap (no Hibernate) Swap (pa Letargji) - + Swap (with Hibernate) Swap (me Letargji) - + Swap to file Swap në kartelë - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instaloje në krah të tij</strong><br/>Instaluesi do të zvogëlojë një pjesë për të bërë vend për %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Zëvendëso një pjesë</strong><br/>Zëvendëson një pjesë me %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Kjo pajisje depozitimi ka tashmë një sistem operativ në të. Ç’do të donit të bënit?<br/>Do të jeni në gjendje të rishqyrtoni dhe ripohoni zgjedhjet tuaja, para se te pajisja e depozitimit të bëhet çfarëdo ndryshimi. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Kjo pajisje depozitimi ka disa sisteme operativë në të. Ç’do të donit të bënit?<br/>Do të jeni në gjendje të rishqyrtoni dhe ripohoni zgjedhjet tuaja, para se te pajisja e depozitimit të bëhet çfarëdo ndryshimi. @@ -739,6 +739,14 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. S’hapet dot kartelë grupesh për lexim. + + CreateVolumeGroupDialog + + + Create Volume Group + Krijoni Grup Volumesh + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. - + font-weight: normal font-weight: normal @@ -1606,22 +1614,22 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. <small>Ky emër do të përdoret nëse e bëni kompjuterin të dukshëm për të tjerët në një rrjet.</small> - + Log in automatically without asking for the password. Kryej hyrje vetvetiu, pa kërkuar fjalëkalimin. - + Use the same password for the administrator account. Përdor të njëjtin fjalëkalim për llogarinë e përgjegjësit. - + Choose a password for the administrator account. Zgjidhni një fjalëkalim për llogarinë e përgjegjësit. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Jepeni të njëjtin fjalëkalim dy herë, që të mund të kontrollohet për gabime shkrimi.</small> @@ -1767,17 +1775,17 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. &Instalo ngarkues nisjesh në: - + Are you sure you want to create a new partition table on %1? Jeni i sigurt se doni të krijoni një tabelë të re pjesësh në %1? - + Can not create new partition S’krijohet dot pjesë e re - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Tabela e pjesëzimit te %1 ka tashmë %2 pjesë parësore, dhe s’mund të shtohen të tjera. Ju lutemi, në vend të kësaj, hiqni një pjesë parësore dhe shtoni një pjesë të zgjeruar. @@ -2051,6 +2059,11 @@ Përfundim: Language (Country) %1 (%2) + + + (no mount point) + (s’ka pikë montimi) + RemoveVolumeGroupJob @@ -2298,6 +2311,14 @@ Përfundim: Instaluesi s’arriti të ripërmasojë pjesën %1 në diskun '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + Ripërmaso Grup Vëllimesh + + ResizeVolumeGroupJob @@ -2707,33 +2728,33 @@ Përfundim: UsersPage - + Your username is too long. Emri juaj i përdoruesit është shumë i gjatë. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Emri juaj i përdoruesit përmban shenja të pavlefshme. Lejohen vetëm shkronja të vogla dhe shifra. - + Your hostname is too short. Strehëemri juaj është shumë i shkurtër. - + Your hostname is too long. Strehëemri juaj është shumë i gjatë. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Strehëemri juaj përmban shenja të pavlefshme. Lejohen vetëm shkronja të vogla dhe shifra. - - + + Your passwords do not match! Fjalëkalimet tuaj s’përputhen! @@ -2750,8 +2771,8 @@ Përfundim: VolumeGroupBaseDialog - VolumeGroupDialog - Dialog Grupi Vëllimesh + Create Volume Group + Krijoni Grup Volumesh diff --git a/lang/calamares_sr.ts b/lang/calamares_sr.ts index 2665c4507..6dbb96429 100644 --- a/lang/calamares_sr.ts +++ b/lang/calamares_sr.ts @@ -354,17 +354,17 @@ The installer will quit and all changes will be lost. После: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Ручно партиционисање</strong><br/>Сами можете креирати или мењати партције. - + Boot loader location: Подизни учитавач на: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 биће змањена на %2MB а нова %3MB партиција биће направљена за %4. @@ -375,108 +375,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: Тренутно: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -739,6 +739,14 @@ The installer will quit and all changes will be lost. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal @@ -1606,22 +1614,22 @@ The installer will quit and all changes will be lost. - + Log in automatically without asking for the password. - + Use the same password for the administrator account. - + Choose a password for the administrator account. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> @@ -1767,17 +1775,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2048,6 +2056,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2295,6 +2308,14 @@ Output: + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2704,33 +2725,33 @@ Output: UsersPage - + Your username is too long. Ваше корисничко име је предугачко. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. - + Your hostname is too short. Име вашег "домаћина" - hostname је прекратко. - + Your hostname is too long. Ваше име домаћина је предуго - hostname - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Ваше име "домаћина" - hostname садржи недозвољене карактере. Могуће је користити само слова, бројеве и цртице. - - + + Your passwords do not match! Лозинке се не поклапају! @@ -2747,7 +2768,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_sr@latin.ts b/lang/calamares_sr@latin.ts index 309c1b271..75cf41643 100644 --- a/lang/calamares_sr@latin.ts +++ b/lang/calamares_sr@latin.ts @@ -354,17 +354,17 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. Poslije: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -375,108 +375,108 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. - - - + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -739,6 +739,14 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. Nemoguće otvoriti groups fajl + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. - + font-weight: normal font-weight: normal @@ -1606,22 +1614,22 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. <small>Ovo ime će biti vidljivo drugim računarima na mreži</small> - + Log in automatically without asking for the password. - + Use the same password for the administrator account. - + Choose a password for the administrator account. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Unesite istu lozinku dvaput, da ne bi došlp do greške kod kucanja</small> @@ -1767,17 +1775,17 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2048,6 +2056,11 @@ Output: Language (Country) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2295,6 +2308,14 @@ Output: + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2704,33 +2725,33 @@ Output: UsersPage - + Your username is too long. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - - + + Your passwords do not match! Vaše lozinke se ne poklapaju @@ -2747,7 +2768,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_sv.ts b/lang/calamares_sv.ts index 5459b1381..2b4071639 100644 --- a/lang/calamares_sv.ts +++ b/lang/calamares_sv.ts @@ -354,17 +354,17 @@ Alla ändringar kommer att gå förlorade. Efter: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Manuell partitionering</strong><br/>Du kan själv skapa och ändra storlek på partitionerna. - + Boot loader location: Sökväg till uppstartshanterare: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 kommer att förminskas till %2 MB och en ny %3 MB-partition kommer att skapas för %4. @@ -375,108 +375,108 @@ Alla ändringar kommer att gå förlorade. - - - + + + Current: Nuvarande: - + Reuse %1 as home partition for %2. Återanvänd %1 som hempartition för %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Välj en partition att minska, sen dra i nedre fältet för att ändra storlek</strong> - + <strong>Select a partition to install on</strong> <strong>Välj en partition att installera på</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Ingen EFI-partition kunde inte hittas på systemet. Gå tillbaka och partitionera din lagringsenhet manuellt för att ställa in %1. - + The EFI system partition at %1 will be used for starting %2. EFI-partitionen %1 kommer att användas för att starta %2. - + EFI system partition: EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Denna lagringsenhet ser inte ut att ha ett operativsystem installerat. Vad vill du göra?<br/>Du kommer kunna granska och bekräfta dina val innan någon ändring görs på lagringseneheten. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Rensa lagringsenhet</strong><br/>Detta kommer <font color="red">radera</font> all existerande data på den valda lagringsenheten. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Denna lagringsenhet har %1 på sig. Vad vill du göra?<br/>Du kommer kunna granska och bekräfta dina val innan någon ändring görs på lagringsenheten. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Installera på sidan om</strong><br/>Installationshanteraren kommer krympa en partition för att göra utrymme för %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Ersätt en partition</strong><br/>Ersätter en partition med %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Denna lagringsenhet har redan ett operativsystem på sig. Vad vill du göra?<br/>Du kommer kunna granska och bekräfta dina val innan någon ändring sker på lagringsenheten. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Denna lagringsenhet har flera operativsystem på sig. Vad vill du göra?<br/>Du kommer kunna granska och bekräfta dina val innan någon ändring sker på lagringsenheten. @@ -739,6 +739,14 @@ Alla ändringar kommer att gå förlorade. Kunde inte öppna gruppfilen för läsning. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ Alla ändringar kommer att gå förlorade. - + font-weight: normal font-weight: normal @@ -1606,22 +1614,22 @@ Alla ändringar kommer att gå förlorade. <small>Detta namn används om du gör datorn synlig för andra i ett nätverk.</small> - + Log in automatically without asking for the password. Logga in automatiskt utan att fråga efter lösenord. - + Use the same password for the administrator account. Använd samma lösenord för administratörskontot. - + Choose a password for the administrator account. Välj ett lösenord för administratörskontot. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Ange samma lösenord två gånger, så att det kan kontrolleras för stavfel.</small> @@ -1767,17 +1775,17 @@ Alla ändringar kommer att gå förlorade. - + Are you sure you want to create a new partition table on %1? Är du säker på att du vill skapa en ny partitionstabell på %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2048,6 +2056,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2295,6 +2308,14 @@ Output: Installationsprogrammet misslyckades med att ändra storleken på partition %1 på disk '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2704,33 +2725,33 @@ Output: UsersPage - + Your username is too long. Ditt användarnamn är för långt. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Ditt användarnamn innehåller otillåtna tecken! Endast små bokstäver och siffror tillåts. - + Your hostname is too short. Ditt värdnamn är för kort. - + Your hostname is too long. Ditt värdnamn är för långt. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Ditt värdnamn innehåller otillåtna tecken! Endast bokstäver, siffror och bindestreck tillåts. - - + + Your passwords do not match! Dina lösenord matchar inte! @@ -2747,7 +2768,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_th.ts b/lang/calamares_th.ts index 6188e4f5c..00c15dd14 100644 --- a/lang/calamares_th.ts +++ b/lang/calamares_th.ts @@ -354,17 +354,17 @@ The installer will quit and all changes will be lost. หลัง: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -375,108 +375,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. ไม่พบพาร์ทิชันสำหรับระบบ EFI อยู่ที่ไหนเลยในระบบนี้ กรุณากลับไปเลือกใช้การแบ่งพาร์ทิชันด้วยตนเอง เพื่อติดตั้ง %1 - + The EFI system partition at %1 will be used for starting %2. พาร์ทิชันสำหรับระบบ EFI ที่ %1 จะถูกใช้เพื่อเริ่มต้น %2 - + EFI system partition: พาร์ทิชันสำหรับระบบ EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -739,6 +739,14 @@ The installer will quit and all changes will be lost. ไม่สามารถเปิดไฟล์ groups เพื่ออ่านได้ + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal font-weight: normal @@ -1606,22 +1614,22 @@ The installer will quit and all changes will be lost. <small>ชื่อนี้จะถูกใช้ถ้าคุณตั้งค่าให้เครื่องอื่นๆ มองเห็นคอมพิวเตอร์ของคุณบนเครือข่าย</small> - + Log in automatically without asking for the password. - + Use the same password for the administrator account. - + Choose a password for the administrator account. เลือกรหัสผ่านสำหรับบัญชีผู้ใช้ผู้ดูแลระบบ - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>ใส่รหัสผ่านเดิมซ้ำ 2 ครั้ง เพื่อเป็นการตรวจสอบข้อผิดพลาดที่เกิดจากการพิมพ์</small> @@ -1767,17 +1775,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? คุณแน่ใจว่าจะสร้างตารางพาร์ทิชันใหม่บน %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2048,6 +2056,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2295,6 +2308,14 @@ Output: ตัวติดตั้งไม่สามารถเปลี่ยนขนาดพาร์ทิชัน %1 บนดิสก์ '%2' + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2704,33 +2725,33 @@ Output: UsersPage - + Your username is too long. ชื่อผู้ใช้ของคุณยาวเกินไป - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. ชื่อผู้ใช้ของคุณมีตัวอักษรที่ไม่ถูกต้อง ใช้ได้เฉพาะตัวอักษรภาษาอังกฤษตัวเล็กและตัวเลขเท่านั้น - + Your hostname is too short. ชื่อโฮสต์ของคุณสั้นเกินไป - + Your hostname is too long. ชื่อโฮสต์ของคุณยาวเกินไป - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. ชื่อโฮสต์ของคุณมีตัวอักษรที่ไม่ถูกต้อง ใช้ได้เฉพาะตัวอักษรภาษาอังกฤษ ตัวเลข และขีดกลาง "-" เท่านั้น - - + + Your passwords do not match! รหัสผ่านของคุณไม่ตรงกัน! @@ -2747,7 +2768,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_tr_TR.ts b/lang/calamares_tr_TR.ts index a53489750..a91f8e1b1 100644 --- a/lang/calamares_tr_TR.ts +++ b/lang/calamares_tr_TR.ts @@ -356,17 +356,17 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.Sonra: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Elle bölümleme</strong><br/>Bölümler oluşturabilir ve boyutlandırabilirsiniz. - + Boot loader location: Önyükleyici konumu: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 %2MB küçülecek ve %4 için %3MB bir disk bölümü oluşturacak. @@ -377,109 +377,109 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir. - - - + + + Current: Geçerli: - + Reuse %1 as home partition for %2. %2 ev bölümü olarak %1 yeniden kullanılsın. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Küçültmek için bir bölüm seçip alttaki çubuğu sürükleyerek boyutlandır</strong> - + <strong>Select a partition to install on</strong> <strong>Yükleyeceğin disk bölümünü seç</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Bu sistemde EFI disk bölümü bulunamadı. Lütfen geri dönün ve %1 kurmak için gelişmiş kurulum seçeneğini kullanın. - + The EFI system partition at %1 will be used for starting %2. %1 EFI sistem bölümü %2 başlatmak için kullanılacaktır. - + EFI system partition: EFI sistem bölümü: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Bu depolama aygıtı üzerinde yüklü herhangi bir işletim sistemi tespit etmedik. Ne yapmak istersiniz?<br/>Yaptığınız değişiklikler disk bölümü üzerine uygulanmadan önce gözden geçirme fırsatınız olacak. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Diski sil</strong><br/>Seçili depolama bölümündeki mevcut veriler şu anda <font color="red">silinecektir.</font> - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Bu depolama aygıtı üzerinde %1 vardır. Ne yapmak istersiniz?<br/>Yaptığınız değişiklikler disk bölümü üzerine uygulanmadan önce gözden geçirme fırsatınız olacak. - + No Swap Takas alanı yok - + Reuse Swap Yeniden takas alanı - + Swap (no Hibernate) Takas Alanı (uyku modu yok) - + Swap (with Hibernate) Takas Alanı (uyku moduyla) - + Swap to file Takas alanı dosyası - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Yanına yükleyin</strong><br/>Sistem yükleyici disk bölümünü küçülterek %1 için yer açacak. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Varolan bir disk bölümüne kur</strong><br/>Varolan bir disk bölümü üzerine %1 kur. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Bu depolama aygıtı üzerinde bir işletim sistemi yüklü. Ne yapmak istersiniz? <br/>Yaptığınız değişiklikler disk bölümü üzerine uygulanmadan önce gözden geçirme fırsatınız olacak. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Bu depolama aygıtı üzerinde birden fazla işletim sistemi var. Ne yapmak istersiniz? <br/>Yaptığınız değişiklikler disk bölümü üzerine uygulanmadan önce gözden geçirme fırsatınız olacak. @@ -742,6 +742,14 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.groups dosyası okunamadı. + + CreateVolumeGroupDialog + + + Create Volume Group + Birim Grubu Oluştur + + CreateVolumeGroupJob @@ -1579,7 +1587,7 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir. - + font-weight: normal font-weight: normal @@ -1609,22 +1617,22 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.<small>Bilgisayarınız herhangi bir ağ üzerinde görünür ise bu adı kullanacak.</small> - + Log in automatically without asking for the password. Şifre sormadan otomatik olarak giriş yap. - + Use the same password for the administrator account. Yönetici ile kullanıcı aynı şifreyi kullansın. - + Choose a password for the administrator account. Yönetici-Root hesabı için bir parola belirle. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Yazım hatası ihtimaline karşı aynı şifreyi tekrar giriniz.</small> @@ -1770,17 +1778,17 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.Ö&nyükleyiciyi şuraya kurun: - + Are you sure you want to create a new partition table on %1? %1 tablosunda yeni bölüm oluşturmaya devam etmek istiyor musunuz? - + Can not create new partition Yeni disk bölümü oluşturulamıyor - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. %1 üzerindeki disk bölümü tablosu zaten %2 birincil disk bölümüne sahip ve artık eklenemiyor. Lütfen bir birincil disk bölümü kaldırın ve bunun yerine uzatılmış bir disk bölümü ekleyin. @@ -2055,6 +2063,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + (bağlama noktası yok) + RemoveVolumeGroupJob @@ -2303,6 +2316,14 @@ Sistem güç kaynağına bağlı değil. Yükleyici %1 bölümünü '%2' diski üzerinde yeniden boyutlandırılamadı. + + ResizeVolumeGroupDialog + + + Resize Volume Group + Birim Grubunu Yeniden Boyutlandır + + ResizeVolumeGroupJob @@ -2712,33 +2733,33 @@ Sistem güç kaynağına bağlı değil. UsersPage - + Your username is too long. Kullanıcı adınız çok uzun. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Kullanıcı adınız geçersiz karakterler içeriyor. Sadece küçük harfleri ve sayıları kullanabilirsiniz. - + Your hostname is too short. Makine adınız çok kısa. - + Your hostname is too long. Makine adınız çok uzun. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Makine adınız geçersiz karakterler içeriyor. Sadece küçük harfleri ve sayıları ve tire işaretini kullanabilirsiniz. - - + + Your passwords do not match! Parolanız eşleşmiyor! @@ -2755,8 +2776,8 @@ Sistem güç kaynağına bağlı değil. VolumeGroupBaseDialog - VolumeGroupDialog - Birim Grubu İletişim Kutusu + Create Volume Group + Birim Grubu Oluştur diff --git a/lang/calamares_uk.ts b/lang/calamares_uk.ts index dd34337b5..3ff4b849a 100644 --- a/lang/calamares_uk.ts +++ b/lang/calamares_uk.ts @@ -354,17 +354,17 @@ The installer will quit and all changes will be lost. Після: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Розподілення вручну</strong><br/>Ви можете створити або змінити розмір розділів власноруч. - + Boot loader location: Місцезнаходження завантажувача: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. Розділ %1 буде зменьшено до %2Мб та створено новий розділ розміром %3MB для %4. @@ -375,108 +375,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: Зараз: - + Reuse %1 as home partition for %2. Використати %1 як домашній розділ (home) для %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Оберіть розділ для зменьшення, потім тягніть повзунок, щоб змінити розмір</strong> - + <strong>Select a partition to install on</strong> <strong>Оберіть розділ, на який встановити</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. В цій системі не знайдено жодного системного розділу EFI. Щоб встановити %1, будь ласка, поверніться та оберіть розподілення вручну. - + The EFI system partition at %1 will be used for starting %2. Системний розділ EFI %1 буде використано для встановлення %2. - + EFI system partition: Системний розділ EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Цей пристрій зберігання, схоже, не має жодної операційної системи. Що ви бажаєте зробити?<br/>У вас буде можливість переглянути та підтвердити все, що ви обрали перед тим, як будуть зроблені будь-які зміни на пристрої зберігання. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Очистити диск</strong><br/>Це <font color="red">знищить</font> всі данні, присутні на обраному пристрої зберігання. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. На цьому пристрої зберігання є %1. Що ви бажаєте зробити?<br/>У вас буде можливість переглянути та підтвердити все, що ви обрали перед тим, як будуть зроблені будь-які зміни на пристрої зберігання. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Встановити поруч</strong><br/>Установник зменьшить розмір розділу, щоб вивільнити простір для %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Замінити розділ</strong><br/>Замінити розділу на %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. На цьому пристрої зберігання вже є операційна система. Що ви бажаєте зробити?<br/>У вас буде можливість переглянути та підтвердити все, що ви обрали перед тим, як будуть зроблені будь-які зміни на пристрої зберігання. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. На цьому пристрої зберігання вже є декілька операційних систем. Що ви бажаєте зробити?<br/>У вас буде можливість переглянути та підтвердити все, що ви обрали перед тим, як будуть зроблені будь-які зміни на пристрої зберігання. @@ -739,6 +739,14 @@ The installer will quit and all changes will be lost. Неможливо відкрити файл груп для читання. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1577,7 +1585,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal font-weight: normal @@ -1607,22 +1615,22 @@ The installer will quit and all changes will be lost. <small>Це ім'я буде використовуватись, якщо ви зробите комп'ютер видимим іншим у мережі.</small> - + Log in automatically without asking for the password. Входити автоматично без паролю. - + Use the same password for the administrator account. Використовувати той самий пароль і для облікового рахунку адміністратора. - + Choose a password for the administrator account. Оберіть пароль для облікового рахунку адміністратора. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>Введіть один й той самий пароль двічі, для перевірки щодо помилок введення.</small> @@ -1768,17 +1776,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? Ви впевнені, що бажаєте створити нову таблицю розділів на %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2049,6 +2057,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2296,6 +2309,14 @@ Output: Установник зазнав невдачі під час зміни розміру розділу %1 на диску '%2'. + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2705,33 +2726,33 @@ Output: UsersPage - + Your username is too long. Ваше ім'я задовге. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. Ваше ім'я містить неприпустимі символи. Дозволені тільки малі літери та цифри. - + Your hostname is too short. Ім'я машини занадто коротке. - + Your hostname is too long. Ім'я машини задовге. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. Ім'я машини містить неприпустимі символи. Дозволені тільки літери, цифри та дефіс. - - + + Your passwords do not match! Паролі не збігаються! @@ -2748,7 +2769,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_ur.ts b/lang/calamares_ur.ts index 6038dc63f..883a4f26c 100644 --- a/lang/calamares_ur.ts +++ b/lang/calamares_ur.ts @@ -353,17 +353,17 @@ The installer will quit and all changes will be lost. - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -374,108 +374,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -738,6 +738,14 @@ The installer will quit and all changes will be lost. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1575,7 +1583,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal @@ -1605,22 +1613,22 @@ The installer will quit and all changes will be lost. - + Log in automatically without asking for the password. - + Use the same password for the administrator account. - + Choose a password for the administrator account. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> @@ -1766,17 +1774,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2047,6 +2055,11 @@ Output: Language (Country) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2294,6 +2307,14 @@ Output: + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2703,33 +2724,33 @@ Output: UsersPage - + Your username is too long. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - - + + Your passwords do not match! @@ -2746,7 +2767,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_uz.ts b/lang/calamares_uz.ts index 83b2f79c1..0f4cd8afd 100644 --- a/lang/calamares_uz.ts +++ b/lang/calamares_uz.ts @@ -353,17 +353,17 @@ The installer will quit and all changes will be lost. - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -374,108 +374,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -738,6 +738,14 @@ The installer will quit and all changes will be lost. + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1575,7 +1583,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal @@ -1605,22 +1613,22 @@ The installer will quit and all changes will be lost. - + Log in automatically without asking for the password. - + Use the same password for the administrator account. - + Choose a password for the administrator account. - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> @@ -1766,17 +1774,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2047,6 +2055,11 @@ Output: Language (Country) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2294,6 +2307,14 @@ Output: + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2703,33 +2724,33 @@ Output: UsersPage - + Your username is too long. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - - + + Your passwords do not match! @@ -2746,7 +2767,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_zh_CN.ts b/lang/calamares_zh_CN.ts index 41abff525..132d41a95 100644 --- a/lang/calamares_zh_CN.ts +++ b/lang/calamares_zh_CN.ts @@ -355,17 +355,17 @@ The installer will quit and all changes will be lost. 之后: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>手动分区</strong><br/>您可以自行创建或重新调整分区大小。 - + Boot loader location: 引导程序位置: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 将会被缩减到 %2 MB,同时将为 %4 创建空间为 %3MB 的新分区。 @@ -376,108 +376,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: 当前: - + Reuse %1 as home partition for %2. 将 %1 重用为 %2 的家分区。 - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>选择要缩小的分区,然后拖动底栏改变大小</strong> - + <strong>Select a partition to install on</strong> <strong>选择要安装到的分区</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. 在此系统上找不到任何 EFI 系统分区。请后退到上一步并使用手动分区配置 %1。 - + The EFI system partition at %1 will be used for starting %2. %1 处的 EFI 系统分区将被用来启动 %2。 - + EFI system partition: EFI 系统分区: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. 这个存储器上似乎还没有操作系统。您想要怎么做?<br/>在任何变更应用到存储器上前,您都可以重新查看并确认您的选择。 - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>抹除磁盘</strong><br/>这将会<font color="red">删除</font>目前选定的存储器上所有的数据。 - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. 这个存储器上已经有 %1 了。您想要怎么做?<br/>在任何变更应用到存储器上前,您都可以重新查看并确认您的选择。 - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>并存安装</strong><br/>安装程序将会缩小一个分区,为 %1 腾出空间。 - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>取代一个分区</strong><br/>以 %1 <strong>替代</strong>一个分区。 - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. 这个存储器上已经有一个操作系统了。您想要怎么做?<br/>在任何变更应用到存储器上前,您都可以重新查看并确认您的选择。 - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. 这个存储器上已经有多个操作系统了。您想要怎么做?<br/>在任何变更应用到存储器上前,您都可以重新查看并确认您的选择。 @@ -740,6 +740,14 @@ The installer will quit and all changes will be lost. 无法打开要读取的 groups 文件。 + + CreateVolumeGroupDialog + + + Create Volume Group + + + CreateVolumeGroupJob @@ -1578,7 +1586,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal font-weight: normal @@ -1608,22 +1616,22 @@ The installer will quit and all changes will be lost. <small>将计算机设置为对其他网络上计算机可见时将使用此名称。</small> - + Log in automatically without asking for the password. 不询问密码自动登录。 - + Use the same password for the administrator account. 为管理员帐号使用同样的密码。 - + Choose a password for the administrator account. 选择管理员账户的密码。 - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>输入相同密码两次,以检查输入错误。</small> @@ -1769,17 +1777,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? 您是否确定要在 %1 上创建新分区表? - + Can not create new partition 无法创建新分区 - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. %1上的分区表已经有%2个主分区,并且不能再添加。请删除一个主分区并添加扩展分区。 @@ -2053,6 +2061,11 @@ Output: Language (Country) %1(%2) + + + (no mount point) + + RemoveVolumeGroupJob @@ -2300,6 +2313,14 @@ Output: 安装程序调整磁盘“%2”上的分区 %1 大小失败。 + + ResizeVolumeGroupDialog + + + Resize Volume Group + + + ResizeVolumeGroupJob @@ -2709,33 +2730,33 @@ Output: UsersPage - + Your username is too long. 用户名太长。 - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. 您的用户名含有无效的字符。只能使用小写字母和数字。 - + Your hostname is too short. 主机名太短。 - + Your hostname is too long. 主机名太长。 - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. 您的主机名称含有无效的字符。只能使用字母、数字和短横。 - - + + Your passwords do not match! 密码不匹配! @@ -2752,7 +2773,7 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog + Create Volume Group diff --git a/lang/calamares_zh_TW.ts b/lang/calamares_zh_TW.ts index f6bf4b300..90aa3db65 100644 --- a/lang/calamares_zh_TW.ts +++ b/lang/calamares_zh_TW.ts @@ -354,17 +354,17 @@ The installer will quit and all changes will be lost. 之後: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>手動分割</strong><br/>您可以自行建立或重新調整分割區大小。 - + Boot loader location: 開機載入器位置: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 將會被縮減容量到 %2MB 而一個新的 %3MB 分割區將會被建立為 %4。 @@ -375,108 +375,108 @@ The installer will quit and all changes will be lost. - - - + + + Current: 目前: - + Reuse %1 as home partition for %2. 重新使用 %1 作為 %2 的家目錄分割區。 - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>選取要縮減的分割區,然後拖曳底部條狀物來調整大小</strong> - + <strong>Select a partition to install on</strong> <strong>選取分割區以安裝在其上</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. 在這個系統上找不到任何的 EFI 系統分割區。請回到上一步並使用手動分割以設定 %1。 - + The EFI system partition at %1 will be used for starting %2. 在 %1 的 EFI 系統分割區將會在開始 %2 時使用。 - + EFI system partition: EFI 系統分割區: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. 這個儲存裝置上似乎還沒有作業系統。您想要怎麼做?<br/>在任何變更套用到儲存裝置上前,您都可以重新檢視並確認您的選擇。 - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>抹除磁碟</strong><br/>這將會<font color="red">刪除</font>目前選取的儲存裝置上所有的資料。 - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. 這個儲存裝置上已經有 %1 了。您想要怎麼做?<br/>在任何變更套用到儲存裝置上前,您都可以重新檢視並確認您的選擇。 - + No Swap 沒有 Swap - + Reuse Swap 重用 Swap - + Swap (no Hibernate) Swap(沒有冬眠) - + Swap (with Hibernate) Swap(有冬眠) - + Swap to file Swap 到檔案 - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>並存安裝</strong><br/>安裝程式將會縮減一個分割區以讓出空間給 %1。 - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>取代一個分割區</strong><br/>用 %1 取代一個分割區。 - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. 這個儲存裝置上已經有一個作業系統了。您想要怎麼做?<br/>在任何變更套用到儲存裝置上前,您都可以重新檢視並確認您的選擇。 - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. 這個儲存裝置上已經有多個作業系統了。您想要怎麼做?<br/>在任何變更套用到儲存裝置上前,您都可以重新檢視並確認您的選擇。 @@ -739,6 +739,14 @@ The installer will quit and all changes will be lost. 無法開啟要讀取的 groups 檔案。 + + CreateVolumeGroupDialog + + + Create Volume Group + 建立卷冊群組 + + CreateVolumeGroupJob @@ -1576,7 +1584,7 @@ The installer will quit and all changes will be lost. - + font-weight: normal font-weight: normal @@ -1606,22 +1614,22 @@ The installer will quit and all changes will be lost. <small>若您將此電腦設定為讓網路上的其他電腦可見時將會使用此名稱。</small> - + Log in automatically without asking for the password. 不詢問密碼自動登入。 - + Use the same password for the administrator account. 為管理員帳號使用同樣的密碼。 - + Choose a password for the administrator account. 替系統管理員帳號設定一組密碼 - + <small>Enter the same password twice, so that it can be checked for typing errors.</small> <small>輸入同樣的密碼兩次,這樣可以檢查輸入錯誤。</small> @@ -1767,17 +1775,17 @@ The installer will quit and all changes will be lost. 安裝開機管理程式於: - + Are you sure you want to create a new partition table on %1? 您是否確定要在 %1 上建立一個新的分割區表格? - + Can not create new partition 無法建立新分割區 - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. 在 %1 上的分割表已有 %2 個主要分割區,無法再新增。請移除一個主要分割區並新增一個延伸分割區。 @@ -2051,6 +2059,11 @@ Output: Language (Country) %1 (%2) + + + (no mount point) + (沒有掛載點) + RemoveVolumeGroupJob @@ -2298,6 +2311,14 @@ Output: 安裝程式調整在磁碟 '%2' 上的分割區 %1 的大小失敗。 + + ResizeVolumeGroupDialog + + + Resize Volume Group + 調整卷冊群組大小 + + ResizeVolumeGroupJob @@ -2707,33 +2728,33 @@ Output: UsersPage - + Your username is too long. 您的使用者名稱太長了。 - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. 您的使用者名稱含有無效的字元。只能使用小寫字母及數字。 - + Your hostname is too short. 您的主機名稱太短了。 - + Your hostname is too long. 您的主機名稱太長了。 - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. 您的主機名稱含有無效的字元。只能使用字母、數字及破折號。 - - + + Your passwords do not match! 密碼不符! @@ -2750,8 +2771,8 @@ Output: VolumeGroupBaseDialog - VolumeGroupDialog - VolumeGroupDialog + Create Volume Group + 建立卷冊群組 diff --git a/lang/python.pot b/lang/python.pot index 46f355b69..2dee15545 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,6 +18,103 @@ msgstr "" "Language: \n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "Configure systemd services" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "Cannot modify service" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"systemctl {arg!s} call in chroot returned error code {num!s}." + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "Cannot enable systemd service {name!s}." + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "Cannot enable systemd target {name!s}." + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "Cannot disable systemd target {name!s}." + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "Cannot mask systemd unit {name!s}." + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Unmount file systems." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "Installing filesystems." + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "rsync failed with error code {}." + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "Failed to unpack image \"{}\"" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "No mount point for root partition" + +#: src/modules/unpackfs/main.py:302 +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:307 +msgid "Bad mount point for root partition" +msgstr "Bad mount point for root partition" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "rootMountPoint is \"{}\", which does not exist, doing nothing" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "Bad unsquash configuration" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "The filesystem for \"{}\" ({}) is not supported" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "The source filesystem \"{}\" does not exist" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "The destination \"{}\" in the target system is not a directory" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "Cannot write KDM configuration file" @@ -79,76 +176,65 @@ msgstr "The list is empty after checking for installed display managers." msgid "Display manager configuration was incomplete" msgstr "Display manager configuration was incomplete" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "Installing filesystems." - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "rsync failed with error code {}." - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "Failed to unpack image \"{}\"" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "No mount point for root partition" - -#: src/modules/unpackfs/main.py:302 -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:307 -msgid "Bad mount point for root partition" -msgstr "Bad mount point for root partition" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "rootMountPoint is \"{}\", which does not exist, doing nothing" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "Bad unsquash configuration" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "The filesystem for \"{}\" ({}) is not supported" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "The source filesystem \"{}\" does not exist" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "The destination \"{}\" in the target system is not a directory" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Unmount file systems." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Dummy python job." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Dummy python step {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "Installing data." -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "Configure OpenRC services" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "Cannot add service {name!s} to run-level {level!s}." + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "Cannot remove service {name!s} from run-level {level!s}." + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"rc-update {arg!s} call in chroot returned error code {num!s}." + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "Target runlevel does not exist" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "Target service does not exist" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"The path for service {name!s} is {path!s}, which does not " +"exist." + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "Configure Plymouth theme" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Generate machine-id." @@ -174,3 +260,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "Removing one package." msgstr[1] "Removing %(num)d packages." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "Remove live user from target system" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Dummy python job." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Dummy python step {}" diff --git a/lang/python/ar/LC_MESSAGES/python.mo b/lang/python/ar/LC_MESSAGES/python.mo index 87f9e4f62..f7ec2b95c 100644 Binary files a/lang/python/ar/LC_MESSAGES/python.mo and b/lang/python/ar/LC_MESSAGES/python.mo differ diff --git a/lang/python/ar/LC_MESSAGES/python.po b/lang/python/ar/LC_MESSAGES/python.po index a5be4f8d3..c1778c08a 100644 --- a/lang/python/ar/LC_MESSAGES/python.po +++ b/lang/python/ar/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Abubakaragoub Y , 2018\n" "Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n" @@ -21,6 +21,98 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "الغاء تحميل ملف النظام" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "فشلت كتابة ملف ضبط KDM." @@ -80,74 +172,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "الغاء تحميل ملف النظام" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "عملية بايثون دميه" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "عملية دميه خطوه بايثون {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "توليد معرف الجهاز" @@ -181,3 +257,15 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" msgstr[5] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "عملية بايثون دميه" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "عملية دميه خطوه بايثون {}" diff --git a/lang/python/ast/LC_MESSAGES/python.mo b/lang/python/ast/LC_MESSAGES/python.mo index 50f625a6a..02d4d02b6 100644 Binary files a/lang/python/ast/LC_MESSAGES/python.mo and b/lang/python/ast/LC_MESSAGES/python.mo differ diff --git a/lang/python/ast/LC_MESSAGES/python.po b/lang/python/ast/LC_MESSAGES/python.po index 97d482eaa..04f6bedc3 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: enolp , 2019\n" "Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n" @@ -21,6 +21,101 @@ msgstr "" "Language: ast\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "Nun pue modificase'l serviciu" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Desmontaxe de sistemes de ficheros." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "Instalando sistemes de ficheros." + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "rsync falló col códigu de fallu {}." + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "Fallu al desempaquetar la imaxe «{}»" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" +"Fallu al alcontrar unsquashfs, asegúrate que tienes instaláu'l paquete " +"squashfs-tools" + +#: src/modules/unpackfs/main.py:301 +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:302 +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:307 +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:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "rootMountPoint ye «{}» que nun esiste. Nun va facese nada" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "La configuración d'espardimientu ye incorreuta" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "El sistema de ficheros pa «{}» ({}) nun ta sofitáu" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "El sistema de ficheros d'orixe «{}» nun esiste" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "El destín «{}» nel sistema de destín nun ye un direutoriu" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "Nun pue escribise'l ficheru de configuración de KDM" @@ -83,77 +178,59 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "La configuración del xestor de pantalles nun se completó" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "Instalando sistemes de ficheros." - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "rsync falló col códigu de fallu {}." - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "Fallu al desempaquetar la imaxe «{}»" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" -"Fallu al alcontrar unsquashfs, asegúrate que tienes instaláu'l paquete " -"squashfs-tools" - -#: src/modules/unpackfs/main.py:301 -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:302 -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:307 -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:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "rootMountPoint ye «{}» que nun esiste. Nun va facese nada" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "La configuración d'espardimientu ye incorreuta" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "El sistema de ficheros pa «{}» ({}) nun ta sofitáu" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "El sistema de ficheros d'orixe «{}» nun esiste" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "El destín «{}» nel sistema de destín nun ye un direutoriu" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Desmontaxe de sistemes de ficheros." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Trabayu maniquín en Python." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Pasu maniquín {} en Python" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "Instalando datos." -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "Nun pue amestase'l serviciu {name!s} al nivel d'execución {level!s}." + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" +"Nun pue desaniciase'l serviciu {name!s} del nivel d'execución {level!s}." + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "El nivel d'execución de destín nun esiste" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "El serviciu de destín nun esiste" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Xeneración de machine-id." @@ -179,3 +256,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "Desaniciando un paquete." msgstr[1] "Desaniciando %(num)d paquetes." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Trabayu maniquín en Python." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Pasu maniquín {} en Python" diff --git a/lang/python/be/LC_MESSAGES/python.mo b/lang/python/be/LC_MESSAGES/python.mo index ebb941e8a..f068d4290 100644 Binary files a/lang/python/be/LC_MESSAGES/python.mo and b/lang/python/be/LC_MESSAGES/python.mo differ diff --git a/lang/python/be/LC_MESSAGES/python.po b/lang/python/be/LC_MESSAGES/python.po index ee256fd81..0e1e1e4ba 100644 --- a/lang/python/be/LC_MESSAGES/python.po +++ b/lang/python/be/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\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" @@ -17,6 +17,98 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -76,74 +168,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -173,3 +249,15 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/bg/LC_MESSAGES/python.mo b/lang/python/bg/LC_MESSAGES/python.mo index 54f750b76..2c505bb7a 100644 Binary files a/lang/python/bg/LC_MESSAGES/python.mo and b/lang/python/bg/LC_MESSAGES/python.mo differ diff --git a/lang/python/bg/LC_MESSAGES/python.po b/lang/python/bg/LC_MESSAGES/python.po index cb3c7dc4f..803879e4a 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Georgi Georgiev , 2018\n" "Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n" @@ -21,6 +21,98 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Демонтирай файловите системи." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -80,74 +172,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Демонтирай файловите системи." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Фиктивна задача python." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Фиктивна стъпка на python {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Генерирай machine-id." @@ -173,3 +249,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "Премахване на един пакет." msgstr[1] "Премахване на %(num)d пакети." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Фиктивна задача python." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Фиктивна стъпка на python {}" diff --git a/lang/python/ca/LC_MESSAGES/python.mo b/lang/python/ca/LC_MESSAGES/python.mo index e86957eb4..af47737a3 100644 Binary files a/lang/python/ca/LC_MESSAGES/python.mo and b/lang/python/ca/LC_MESSAGES/python.mo differ diff --git a/lang/python/ca/LC_MESSAGES/python.po b/lang/python/ca/LC_MESSAGES/python.po index 5e91825e5..14d66b4a6 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Davidmp , 2019\n" "Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n" @@ -21,6 +21,104 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "Configura els serveis de systemd" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "No es pot modificar el servei." + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"La crida de systemctl {arg!s} a chroot ha retornat el codi " +"d'error {num!s}." + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "No es pot habilitar el servei de systemd {name!s}." + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "No es pot habilitar la destinació de systemd {name!s}." + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "No es pot inhabilitar la destinació de systemd {name!s}." + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "No es pot emmascarar la unitat de systemd {name!s}." + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" +"Ordres desconegudes de systemd: {command!s} i " +"{suffix!s}, per a la unitat {name!s}." + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Desmunta els sistemes de fitxers." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "S'instal·len sistemes de fitxers." + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "Ha fallat rsync amb el codi d'error {}." + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "Ha fallat desempaquetar la imatge \"{}\"." + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" +"Ha fallat trobar unsquashfs, assegureu-vos que tingueu el paquet squashfs-" +"tools instal·lat." + +#: src/modules/unpackfs/main.py:301 +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:302 +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:307 +msgid "Bad mount point for root partition" +msgstr "Punt de muntatge incorrecte per a la partició d'arrel" + +#: src/modules/unpackfs/main.py:308 +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:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "Configuració incorrecta d'unsquash." + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "El sistema de fitxers per a \"{}\" ({}) no s'admet." + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "El sistema de fitxers font \"{}\" no existeix." + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "La destinació \"{}\" al sistema de destinació no és un directori." + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "No es pot escriure el fitxer de configuració del KDM." @@ -85,83 +183,73 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "La configuració del gestor de pantalla no era completa." -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "Instal·lant sistemes de fitxers." - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "Ha fallat rsync amb el codi d'error {}." - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "Ha fallat desempaquetar la imatge \"{}\"." - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" -"Ha fallat trobar unsquashfs, assegureu-vos que tingueu el paquet squashfs-" -"tools instal·lat." - -#: src/modules/unpackfs/main.py:301 -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:302 -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:307 -msgid "Bad mount point for root partition" -msgstr "Punt de muntatge incorrecte per a la partició d'arrel" - -#: src/modules/unpackfs/main.py:308 -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:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "Configuració incorrecta d'unsquash" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "El sistema de fitxers per a \"{}\" ({}) no s'admet." - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "El sistema de fitxers font \"{}\" no existeix." - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "La destinació \"{}\" al sistema de destinació no és un directori." - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Desmunta els sistemes de fitxers." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Tasca de python fictícia." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Pas de python fitctici {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." -msgstr "Instal·lant dades." +msgstr "S'instal·len dades." -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "Configura els serveis d'OpenRC" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "No es pot afegir el servei {name!s} al nivell d'execució {level!s}." + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" +"No es pot suprimir el servei {name!s} del nivell d'execució {level!s}." + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Servei - acció desconeguda {arg!s} per al servei {name!s} al " +"nivell d'execució {level!s}." + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"La crida de rc-update {arg!s} a chroot ha retornat el codi " +"d'error {num!s}." + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "El nivell d'execució de destinació no existeix." + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"El camí per al nivell d'execució {level!s} és {path!s}, però no" +" existeix." + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "El servei de destinació no existeix." + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"El camí per al servei {name!s} és {path!s}, però no existeix." + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "Configura el tema del Plymouth" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Generació de l'id. de la màquina." #: src/modules/packages/main.py:62 #, python-format msgid "Processing packages (%(count)d / %(total)d)" -msgstr "Processant paquets (%(count)d / %(total)d)" +msgstr "Es processen paquets (%(count)d / %(total)d)" #: src/modules/packages/main.py:64 src/modules/packages/main.py:74 msgid "Install packages." @@ -171,12 +259,24 @@ msgstr "Instal·la els paquets." #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." -msgstr[0] "Instal·lant un paquet." -msgstr[1] "Instal·lant %(num)d paquets." +msgstr[0] "S'instal·la un paquet." +msgstr[1] "S'instal·len %(num)d paquets." #: src/modules/packages/main.py:70 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." -msgstr[0] "Eliminant un paquet." -msgstr[1] "Suprimint %(num)d paquets." +msgstr[0] "Se suprimeix un paquet." +msgstr[1] "Se suprimeixen %(num)d paquets." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "Suprimeix l'usuari de la sessió autònoma del sistema de destinació" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Tasca de python fictícia." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Pas de python fitctici {}" diff --git a/lang/python/cs_CZ/LC_MESSAGES/python.mo b/lang/python/cs_CZ/LC_MESSAGES/python.mo index 414fae6c3..2a294529d 100644 Binary files a/lang/python/cs_CZ/LC_MESSAGES/python.mo and b/lang/python/cs_CZ/LC_MESSAGES/python.mo differ diff --git a/lang/python/cs_CZ/LC_MESSAGES/python.po b/lang/python/cs_CZ/LC_MESSAGES/python.po index 80d21c4bd..adfc1e593 100644 --- a/lang/python/cs_CZ/LC_MESSAGES/python.po +++ b/lang/python/cs_CZ/LC_MESSAGES/python.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Pavel Borecki , 2019\n" "Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n" @@ -22,6 +22,103 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "Nastavit služby systemd" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "Službu se nedaří upravit" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"Volání systemctl {arg!s} v chroot vrátilo chybový kód {num!s}." + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "Nedaří se zapnout systemd službu {name!s}." + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "Nedaří se zapnout systemd službu {name!s}." + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "Nedaří se vypnout systemd cíl {name!s}." + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "Nedaří se maskovat systemd jednotku {name!s}." + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" +"Neznámé systemd příkazy {command!s} a {suffix!s} " +"pro jednotku {name!s}." + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Odpojit souborové systémy." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "Instalace souborových systémů." + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "rsync se nezdařilo s chybových kódem {}." + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "Nepodařilo se rozbalit obraz „{}“" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" +"Nepodařilo se nalézt unsquashfs – ověřte, že máte nainstalovaný balíček " +"squashfs-tools" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "Žádný přípojný bot pro kořenový oddíl" + +#: src/modules/unpackfs/main.py:302 +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:307 +msgid "Bad mount point for root partition" +msgstr "Chybný přípojný bod pro kořenový oddíl" + +#: src/modules/unpackfs/main.py:308 +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:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "Chybná nastavení unsquash" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "Souborový systém „{}“ ({}) není podporován" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "Zdrojový souborový systém „{}“ neexistuje" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "Cíl „{}“ v cílovém systému není složka" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "Nedaří se zapsat soubor s nastaveními pro KDM" @@ -83,76 +180,67 @@ msgstr "Po kontrole nainstalovaných správců displejů je seznam prázdný." msgid "Display manager configuration was incomplete" msgstr "Nastavení správce displeje nebylo úplné" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "Instalace souborových systémů." - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "rsync se nezdařilo s chybových kódem {}." - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "Nepodařilo se rozbalit obraz „{}“" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" -"Nepodařilo se nalézt unsquashfs – ověřte, že máte nainstalovaný balíček " -"squashfs-tools" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "Žádný přípojný bot pro kořenový oddíl" - -#: src/modules/unpackfs/main.py:302 -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:307 -msgid "Bad mount point for root partition" -msgstr "Chybný přípojný bod pro kořenový oddíl" - -#: src/modules/unpackfs/main.py:308 -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:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "Chybná nastavení unsquash" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "Souborový systém „{}“ ({}) není podporován" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "Zdrojový souborový systém „{}“ neexistuje" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "Cíl „{}“ v cílovém systému není složka" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Odpojit souborové systémy." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Testovací úloha python." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Testovací krok {} python." - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "Instalace dat." -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "Nastavit OpenRC služby" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" +"Nedaří se přidat službu {name!s} do úrovně chodu (runlevel) {level!s}." + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" +"Nedaří se odebrat službu {name!s} z úrovně chodu (runlevel) {level!s}." + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Neznámá akce služby {arg!s} pro službu {name!s} v úrovni chodu " +"(runlevel) {level!s}." + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"rc-update {arg!s} volání v chroot vrátilo kód chyby {num!s}." + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "Cílová úroveň chodu (runlevel) neexistuje" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"Popis umístění pro úroveň chodu (runlevel) {level!s} je " +"{path!s}, keterá neexistuje." + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "Cílová služba neexistuje" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"Popis umístění pro službu {name!s} je {path!s}, která " +"neexistuje." + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "Nastavit téma vzhledu pro Plymouth" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Vytvořit identifikátor stroje." @@ -182,3 +270,15 @@ msgstr[0] "Odebírá se jeden balíček." msgstr[1] "Odebírají se %(num)d balíčky." msgstr[2] "Odebírá se %(num)d balíčků." msgstr[3] "Odebírá se %(num)d balíčků." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "Odebrat uživatele živé relace z cílového systému" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Testovací úloha python." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Testovací krok {} python." diff --git a/lang/python/da/LC_MESSAGES/python.mo b/lang/python/da/LC_MESSAGES/python.mo index 30a579415..9f7b620c2 100644 Binary files a/lang/python/da/LC_MESSAGES/python.mo and b/lang/python/da/LC_MESSAGES/python.mo differ diff --git a/lang/python/da/LC_MESSAGES/python.po b/lang/python/da/LC_MESSAGES/python.po index 2427771eb..2d8aa8caf 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\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" @@ -22,6 +22,103 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "Konfigurer systemd-tjenester" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "Kan ikke redigere tjeneste" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"systemctl {arg!s}-kald i chroot returnerede fejlkoden {num!s}." + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "Kan ikke aktivere systemd-tjenesten {name!s}." + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "Kan ikke aktivere systemd-målet {name!s}." + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "Kan ikke deaktivere systemd-målet {name!s}." + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "Kan ikke maskere systemd-enheden {name!s}." + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" +"Ukendte systemd-kommandoer {command!s} og " +"{suffix!s} til enheden {name!s}." + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Afmonter filsystemer." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "Installerer filsystemer." + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "rsync mislykkedes med fejlkoden {}." + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "Kunne ikke udpakke aftrykket \"{}\"" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" +"Kunne ikke finde unsquashfs, sørg for at squashfs-tools-pakken er " +"installeret" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "Intet monteringspunkt til rodpartition" + +#: src/modules/unpackfs/main.py:302 +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:307 +msgid "Bad mount point for root partition" +msgstr "Dårligt monteringspunkt til rodpartition" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "rootMountPoint er \"{}\", hvilket ikke findes, gør intet" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "Dårlig unsquash-konfiguration" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "Filsystemet til \"{}\" ({}) understøttes ikke" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "Kildefilsystemet \"{}\" findes ikke" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "Destinationen \"{}\" i målsystemet er ikke en mappe" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "Kan ikke skrive KDM-konfigurationsfil" @@ -84,76 +181,64 @@ msgstr "Listen er tom efter tjek, efter installerede displayhåndteringer." msgid "Display manager configuration was incomplete" msgstr "Displayhåndtering-konfiguration er ikke komplet" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "Installerer filsystemer." - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "rsync mislykkedes med fejlkoden {}." - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "Kunne ikke udpakke aftrykket \"{}\"" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" -"Kunne ikke finde unsquashfs, sørg for at squashfs-tools-pakken er " -"installeret" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "Intet monteringspunkt for rodpartition" - -#: src/modules/unpackfs/main.py:302 -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:307 -msgid "Bad mount point for root partition" -msgstr "Dårligt monteringspunkt for rodpartition" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "rootMountPoint er \"{}\", hvilket ikke findes, gør intet" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "Dårlig unsquash-konfiguration" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "Filsystemet for \"{}\" ({}) understøttes ikke" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "Kildefilsystemet \"{}\" findes ikke" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "Destinationen \"{}\" i målsystemet er ikke en mappe" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Afmonter filsystemer." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Dummy python-job." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Dummy python-trin {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "Installerer data." -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "Konfigurer OpenRC-tjenester" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "Kan ikke tilføje tjenesten {name!s} til kørselsniveauet {level!s}." + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "Kan ikke fjerne tjenesten {name!s} fra kørselsniveauet {level!s}." + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Ukendt tjenestehandling {arg!s} til tjenesten {name!s} i " +"kørselsniveauet {level!s}." + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"rc-update {arg!s}-kald i chroot returnerede fejlkoden {num!s}." + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "Målkørselsniveau findes ikke" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"Stien til kørselsniveauet {level!s} er {path!s}, som ikke " +"findes." + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "Måltjenesten findes ikke" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"Stien til tjenesten {name!s} er {path!s}, som ikke findes." + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "Konfigurer Plymouth-tema" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Generér maskin-id." @@ -179,3 +264,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "Fjerner én pakke." msgstr[1] "Fjerner %(num)d pakker." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "Fjern livebruger fra målsystemet" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Dummy python-job." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Dummy python-trin {}" diff --git a/lang/python/de/LC_MESSAGES/python.mo b/lang/python/de/LC_MESSAGES/python.mo index 8514d4807..751c1ebb0 100644 Binary files a/lang/python/de/LC_MESSAGES/python.mo and b/lang/python/de/LC_MESSAGES/python.mo differ diff --git a/lang/python/de/LC_MESSAGES/python.po b/lang/python/de/LC_MESSAGES/python.po index 8c281b114..4231f175a 100644 --- a/lang/python/de/LC_MESSAGES/python.po +++ b/lang/python/de/LC_MESSAGES/python.po @@ -4,8 +4,8 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Adriaan de Groot , 2017 # Christian Spaan, 2018 +# Adriaan de Groot , 2019 # Andreas Eitel , 2019 # #, fuzzy @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Andreas Eitel , 2019\n" "Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n" @@ -23,6 +23,104 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "Konfiguriere systemd Dienste" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "Der Dienst kann nicht geändert werden." + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"systemctl {arg!s} Aufruf in chroot lieferte Fehlercode {num!s} " +"zurück." + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "Der systemd-Dienst {name!s} kann nicht aktiviert werden." + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "Das systemd-Ziel {name!s} kann nicht aktiviert werden." + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "Das systemd-Ziel {name!s} kann nicht deaktiviert werden." + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "Die systemd-Einheit {name!s} kann nicht maskiert werden." + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" +"Unbekannte systemd Befehle {command!s} und " +"{suffix!s} für Einheit {name!s}." + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Dateisysteme aushängen." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "Dateisysteme installieren." + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "rsync fehlgeschlagen mit Fehlercode {}." + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "Entpacken des Image \"{}\" fehlgeschlagen" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" +"Konnte kein unsquashfs finden, stellen Sie sicher, dass Sie das squashfs-" +"tools Paket installiert haben" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "Kein Mount-Punkt für die Root-Partition" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "globalstorage enthält keinen \"rootMountPoint\"-Schlüssel, tue nichts" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "Schlechter Mount-Punkt für die Root-Partition" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "rootMountPoint ist \"{}\", welcher nicht existiert, tue nichts" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "Schlechte unsquash Konfiguration" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "Das Dateisystem für \"{}\" ({}) wird nicht unterstützt" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "Das Quelldateisystem \"{}\" existiert nicht" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "Das Ziel \"{}\" im Zielsystem ist kein Verzeichnis" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "Schreiben der KDM Konfigurationsdatei nicht möglich" @@ -85,76 +183,64 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "Displaymanagerkonfiguration war unvollständig." -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "Dateisysteme installieren." - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "rsync fehlgeschlagen mit Fehlercode {}." - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "Entpacken des Image \"{}\" fehlgeschlagen" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" -"Konnte kein unsquashfs finden, stellen Sie sicher, dass Sie das squashfs-" -"tools Paket installiert haben" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "Kein Mount-Punkt für die Root-Partition" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "globalstorage enthält keinen \"rootMountPoint\"-Schlüssel, tue nichts" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "Schlechter Mount-Punkt für die Root-Partition" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "rootMountPoint ist \"{}\", welcher nicht existiert, tue nichts" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "Schlechte unsquash Konfiguration" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "Das Dateisystem für \"{}\" ({}) wird nicht unterstützt" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "Das Quelldateisystem \"{}\" existiert nicht" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "Das Ziel \"{}\" im Zielsystem ist kein Verzeichnis" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Dateisysteme aushängen." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Dummy Python-Job" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Dummy Python-Schritt {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "Daten installieren." -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "Konfiguriere OpenRC Dienste" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "Kann den Dienst {name!s} nicht zu run-level {level!s} hinzufügen." + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "Kenn den Dienst {name!s} nicht aus run-level {level!s} entfernen." + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Unbekannte Dienstaktion {arg!s} für Dienst {name!s} in run-" +"level {level!s}." + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"rc-update {arg!s} Aufruf in chroot lieferte Fehlercode {num!s} " +"zurück." + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "Ziel Runlevel existiert nicht" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "Der Pfad für runlevel {level!s}, der nicht existiert, ist {path!s}." + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "Zieldienst existiert nicht" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"Der Pfad für den Dienst {name!s}, der nicht existiert, ist " +"{path!s}." + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "Konfiguriere Plymouth Thema" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Generiere Computer-ID" @@ -180,3 +266,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "Entferne ein Paket" msgstr[1] "Entferne %(num)d Pakete." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "Entferne Live-Benutzer aus dem Zielsystem" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Dummy Python-Job" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Dummy Python-Schritt {}" diff --git a/lang/python/el/LC_MESSAGES/python.mo b/lang/python/el/LC_MESSAGES/python.mo index a7cd9b167..5fc568093 100644 Binary files a/lang/python/el/LC_MESSAGES/python.mo and b/lang/python/el/LC_MESSAGES/python.mo differ diff --git a/lang/python/el/LC_MESSAGES/python.po b/lang/python/el/LC_MESSAGES/python.po index de6fd765f..59101e0a3 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Efstathios Iosifidis , 2017\n" "Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n" @@ -21,6 +21,98 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -80,74 +172,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -173,3 +249,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "" msgstr[1] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/en_GB/LC_MESSAGES/python.mo b/lang/python/en_GB/LC_MESSAGES/python.mo index 2fa9b9da1..1460f8611 100644 Binary files a/lang/python/en_GB/LC_MESSAGES/python.mo and b/lang/python/en_GB/LC_MESSAGES/python.mo differ diff --git a/lang/python/en_GB/LC_MESSAGES/python.po b/lang/python/en_GB/LC_MESSAGES/python.po index 01e28c294..43f26d25f 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Jason Collins , 2018\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/calamares/teams/20061/en_GB/)\n" @@ -21,6 +21,98 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Unmount file systems." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -80,74 +172,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Unmount file systems." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Dummy python job." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Dummy python step {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Generate machine-id." @@ -173,3 +249,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "Removing one package." msgstr[1] "Removing %(num)d packages." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Dummy python job." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Dummy python step {}" diff --git a/lang/python/eo/LC_MESSAGES/python.mo b/lang/python/eo/LC_MESSAGES/python.mo index 3a92deca8..a01b6f323 100644 Binary files a/lang/python/eo/LC_MESSAGES/python.mo and b/lang/python/eo/LC_MESSAGES/python.mo differ diff --git a/lang/python/eo/LC_MESSAGES/python.po b/lang/python/eo/LC_MESSAGES/python.po index 277599a81..854ec3596 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Kurt Ankh Phoenix , 2018\n" "Language-Team: Esperanto (https://www.transifex.com/calamares/teams/20061/eo/)\n" @@ -21,6 +21,98 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Demeti dosieraj sistemoj." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -80,74 +172,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Demeti dosieraj sistemoj." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Formala python laboro." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Formala python paŝo {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Generi maŝino-legitimilo." @@ -173,3 +249,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "Forigante unu pakaĵo." msgstr[1] "Forigante %(num)d pakaĵoj." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Formala python laboro." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Formala python paŝo {}" diff --git a/lang/python/es/LC_MESSAGES/python.mo b/lang/python/es/LC_MESSAGES/python.mo index 3619a8085..8d68c985f 100644 Binary files a/lang/python/es/LC_MESSAGES/python.mo and b/lang/python/es/LC_MESSAGES/python.mo differ diff --git a/lang/python/es/LC_MESSAGES/python.po b/lang/python/es/LC_MESSAGES/python.po index 626ff0ed8..426c5fce3 100644 --- a/lang/python/es/LC_MESSAGES/python.po +++ b/lang/python/es/LC_MESSAGES/python.po @@ -4,18 +4,19 @@ # FIRST AUTHOR , YEAR. # # Translators: -# strel, 2017 +# strel, 2018 # Francisco Sánchez López de Lerma , 2018 # Guido Grasso , 2018 +# Adolfo Jayme-Barrientos, 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" -"Last-Translator: Guido Grasso , 2018\n" +"Last-Translator: Adolfo Jayme-Barrientos, 2019\n" "Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,6 +24,100 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "Configurar servicios de systemd" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "No se puede modificar el servicio" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Desmontar sistemas de archivos." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "Instalando sistemas de archivos." + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "No se pudo desempaquetar la imagen «{}»" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" +"No se encontró unsquashfs; cerciórese de que tenga instalado el paquete " +"squashfs-tools" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "No se puede escribir el archivo de configuración KDM" @@ -86,74 +181,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "La configuración del gestor de pantalla estaba incompleta" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Desmontar sistemas de archivos." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Tarea de python ficticia." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Paso {} de python ficticio" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Generar identificación-de-máquina." @@ -179,3 +258,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "Eliminando un paquete." msgstr[1] "Eliminando %(num)d paquetes." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Tarea de python ficticia." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Paso {} de python ficticio" diff --git a/lang/python/es_MX/LC_MESSAGES/python.mo b/lang/python/es_MX/LC_MESSAGES/python.mo index 9a9abf41d..4c8229785 100644 Binary files a/lang/python/es_MX/LC_MESSAGES/python.mo and b/lang/python/es_MX/LC_MESSAGES/python.mo differ diff --git a/lang/python/es_MX/LC_MESSAGES/python.po b/lang/python/es_MX/LC_MESSAGES/python.po index c40b724d2..841014ab2 100644 --- a/lang/python/es_MX/LC_MESSAGES/python.po +++ b/lang/python/es_MX/LC_MESSAGES/python.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Logan 8192 , 2018\n" "Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n" @@ -22,6 +22,98 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Desmontar sistemas de archivo." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "No se puede escribir el archivo de configuración de KDM" @@ -81,74 +173,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Desmontar sistemas de archivo." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Trabajo python ficticio." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Paso python ficticio {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Generar identificación de la maquina." @@ -174,3 +250,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "Removiendo un paquete." msgstr[1] "Removiendo %(num)dpaquetes." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Trabajo python ficticio." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Paso python ficticio {}" diff --git a/lang/python/es_PR/LC_MESSAGES/python.mo b/lang/python/es_PR/LC_MESSAGES/python.mo index 715bc26a0..d3872bc6f 100644 Binary files a/lang/python/es_PR/LC_MESSAGES/python.mo and b/lang/python/es_PR/LC_MESSAGES/python.mo differ diff --git a/lang/python/es_PR/LC_MESSAGES/python.po b/lang/python/es_PR/LC_MESSAGES/python.po index 86b8460f1..073ad8e03 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/calamares/teams/20061/es_PR/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,98 @@ msgstr "" "Language: es_PR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -76,74 +168,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -169,3 +245,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "" msgstr[1] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/et/LC_MESSAGES/python.mo b/lang/python/et/LC_MESSAGES/python.mo index 93537c377..ba6dcdd14 100644 Binary files a/lang/python/et/LC_MESSAGES/python.mo and b/lang/python/et/LC_MESSAGES/python.mo differ diff --git a/lang/python/et/LC_MESSAGES/python.po b/lang/python/et/LC_MESSAGES/python.po index d4904e4ca..0c0b89f99 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Madis, 2019\n" "Language-Team: Estonian (https://www.transifex.com/calamares/teams/20061/et/)\n" @@ -21,6 +21,98 @@ msgstr "" "Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Haagi failisüsteemid lahti." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "KDM-konfiguratsioonifaili ei saa kirjutada" @@ -80,74 +172,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Haagi failisüsteemid lahti." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Testiv python'i töö." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Testiv python'i aste {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Genereeri masina-id." @@ -173,3 +249,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "Eemaldan ühe paketi." msgstr[1] "Eemaldan %(num)d paketti." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Testiv python'i töö." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Testiv python'i aste {}" diff --git a/lang/python/eu/LC_MESSAGES/python.mo b/lang/python/eu/LC_MESSAGES/python.mo index 6e730cbd9..5e301f749 100644 Binary files a/lang/python/eu/LC_MESSAGES/python.mo and b/lang/python/eu/LC_MESSAGES/python.mo differ diff --git a/lang/python/eu/LC_MESSAGES/python.po b/lang/python/eu/LC_MESSAGES/python.po index f07cf165b..89db8fc21 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Ander Elortondo, 2019\n" "Language-Team: Basque (https://www.transifex.com/calamares/teams/20061/eu/)\n" @@ -21,6 +21,98 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Fitxategi sistemak desmuntatu." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "Ezin da KDM konfigurazio fitxategia idatzi" @@ -84,74 +176,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "Pantaila kudeatzaile konfigurazioa osotu gabe" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Fitxategi sistemak desmuntatu." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Dummy python lana." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Dummy python urratsa {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Sortu makina-id." @@ -177,3 +253,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "Pakete bat kentzen." msgstr[1] "%(num)dpakete kentzen." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Dummy python lana." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Dummy python urratsa {}" diff --git a/lang/python/fa/LC_MESSAGES/python.mo b/lang/python/fa/LC_MESSAGES/python.mo index cb38de13f..a25fc7a02 100644 Binary files a/lang/python/fa/LC_MESSAGES/python.mo and b/lang/python/fa/LC_MESSAGES/python.mo differ diff --git a/lang/python/fa/LC_MESSAGES/python.po b/lang/python/fa/LC_MESSAGES/python.po index 555a30fe8..fafb917ce 100644 --- a/lang/python/fa/LC_MESSAGES/python.po +++ b/lang/python/fa/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Persian (https://www.transifex.com/calamares/teams/20061/fa/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,98 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -76,74 +168,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -169,3 +245,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "" msgstr[1] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/fi_FI/LC_MESSAGES/python.mo b/lang/python/fi_FI/LC_MESSAGES/python.mo index ded7d637b..391391cef 100644 Binary files a/lang/python/fi_FI/LC_MESSAGES/python.mo and b/lang/python/fi_FI/LC_MESSAGES/python.mo differ diff --git a/lang/python/fi_FI/LC_MESSAGES/python.po b/lang/python/fi_FI/LC_MESSAGES/python.po index 92815844a..7d553b691 100644 --- a/lang/python/fi_FI/LC_MESSAGES/python.po +++ b/lang/python/fi_FI/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Finnish (Finland) (https://www.transifex.com/calamares/teams/20061/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,98 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -76,74 +168,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -169,3 +245,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "" msgstr[1] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/fr/LC_MESSAGES/python.mo b/lang/python/fr/LC_MESSAGES/python.mo index d5e18271d..288771b01 100644 Binary files a/lang/python/fr/LC_MESSAGES/python.mo and b/lang/python/fr/LC_MESSAGES/python.mo differ diff --git a/lang/python/fr/LC_MESSAGES/python.po b/lang/python/fr/LC_MESSAGES/python.po index 768a61d61..09033ec6a 100644 --- a/lang/python/fr/LC_MESSAGES/python.po +++ b/lang/python/fr/LC_MESSAGES/python.po @@ -10,16 +10,17 @@ # Jeremy Gourmel , 2018 # Aurnytoraink , 2018 # Florian B , 2018 -# Doryan R , 2019 +# Doryan R, 2019 +# Seboss666 , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" -"Last-Translator: Doryan R , 2019\n" +"Last-Translator: Seboss666 , 2019\n" "Language-Team: French (https://www.transifex.com/calamares/teams/20061/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,6 +28,104 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "Configurer les services systemd" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "Impossible de modifier le service" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"L'appel systemctl {arg!s} en chroot a renvoyé le code d'erreur " +"{num!s}" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "Impossible d'activer le service systemd {name!s}." + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "Impossible d'activer la cible systemd {name!s}." + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "Impossible de désactiver la cible systemd {name!s}." + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "Impossible de masquer l'unit systemd {name!s}." + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" +"Commandes systemd {command!s} et {suffix!s} " +"inconnues pour l'unit {name!s}." + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Démonter les systèmes de fichiers" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "Installation de systèmes de fichiers." + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "rsync a échoué avec le code d'erreur {}." + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "Impossible de décompresser l'image \"{}\"" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" +"Échec de la recherche de unsquashfs, assurez-vous que le paquetage squashfs-" +"tools est installé." + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "Pas de point de montage pour la partition racine" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "globalstorage ne contient pas de clé \"rootMountPoint\", ne fait rien" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "Mauvais point de montage pour la partition racine" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "rootMountPoint est \"{}\", ce qui n'existe pas, ne fait rien" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "Mauvaise configuration unsquash" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "Le système de fichiers pour \"{}\" ({}) n'est pas supporté" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "Le système de fichiers source \"{}\" n'existe pas" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "La destination \"{}\" dans le système cible n'est pas un répertoire" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "Impossible d'écrire le fichier de configuration KDM" @@ -92,76 +191,66 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "La configuration du gestionnaire d'affichage était incomplète" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "Installation de systèmes de fichiers." - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "rsync a échoué avec le code d'erreur {}." - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "Impossible de décompresser l'image \"{}\"" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" -"Échec de la recherche de unsquashfs, assurez-vous que le paquetage squashfs-" -"tools est installé." - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "Pas de point de montage pour la partition racine" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "globalstorage ne contient pas de clé \"rootMountPoint\", ne fait rien" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "Mauvais point de montage pour la partition racine" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "rootMountPoint est \"{}\", ce qui n'existe pas, ne fait rien" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "Mauvaise configuration unsquash" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "Le système de fichiers pour \"{}\" ({}) n'est pas supporté" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "Le système de fichiers source \"{}\" n'existe pas" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "La destination \"{}\" dans le système cible n'est pas un répertoire" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Démonter les systèmes de fichiers" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Tâche factice python" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Étape factice python {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "Installation de données." -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "Configurer les services OpenRC" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "Impossible d'ajouter le service {name!s} au run-level {level!s}." + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "Impossible de retirer le service {name!s} du run-level {level!s}." + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Service-action {arg!s} inconnue pour le service {name!s} dans " +"le run-level {level!s}." + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"L'appel rc-update {arg!s} dans chroot a renvoyé le code " +"d'erreur {num!s}." + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "Le runlevel cible n'existe pas" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"Le chemin pour le runlevel {level!s} est {path!s}, qui n'existe" +" pas." + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "Le service cible n'existe pas" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"Le chemin pour le service {name!s} est {path!s}, qui n'existe " +"pas." + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "Configurer le thème Plymouth" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Générer un identifiant machine." @@ -187,3 +276,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "Suppression d'un paquet." msgstr[1] "Suppression de %(num)d paquets." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "Supprimer l'utilisateur live du système cible" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Tâche factice python" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Étape factice python {}" diff --git a/lang/python/fr_CH/LC_MESSAGES/python.mo b/lang/python/fr_CH/LC_MESSAGES/python.mo index 2dc0828fc..a063ac8ce 100644 Binary files a/lang/python/fr_CH/LC_MESSAGES/python.mo and b/lang/python/fr_CH/LC_MESSAGES/python.mo differ diff --git a/lang/python/fr_CH/LC_MESSAGES/python.po b/lang/python/fr_CH/LC_MESSAGES/python.po index 64935788c..7ac8f3120 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: French (Switzerland) (https://www.transifex.com/calamares/teams/20061/fr_CH/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,98 @@ msgstr "" "Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -76,74 +168,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -169,3 +245,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "" msgstr[1] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/gl/LC_MESSAGES/python.mo b/lang/python/gl/LC_MESSAGES/python.mo index 3760ac9a8..b94a0abb2 100644 Binary files a/lang/python/gl/LC_MESSAGES/python.mo and b/lang/python/gl/LC_MESSAGES/python.mo differ diff --git a/lang/python/gl/LC_MESSAGES/python.po b/lang/python/gl/LC_MESSAGES/python.po index 16f53c519..5acb49dcd 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Xosé, 2018\n" "Language-Team: Galician (https://www.transifex.com/calamares/teams/20061/gl/)\n" @@ -21,6 +21,98 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Desmontar sistemas de ficheiros." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "Non é posíbel escribir o ficheiro de configuración de KDM" @@ -85,74 +177,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "A configuración do xestor de pantalla foi incompleta" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Desmontar sistemas de ficheiros." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Tarefa parva de python." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Paso parvo de python {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Xerar o identificador da máquina." @@ -178,3 +254,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "A retirar un paquete." msgstr[1] "A retirar %(num)d paquetes." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Tarefa parva de python." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Paso parvo de python {}" diff --git a/lang/python/gu/LC_MESSAGES/python.mo b/lang/python/gu/LC_MESSAGES/python.mo index dc0612190..114bcc926 100644 Binary files a/lang/python/gu/LC_MESSAGES/python.mo and b/lang/python/gu/LC_MESSAGES/python.mo differ diff --git a/lang/python/gu/LC_MESSAGES/python.po b/lang/python/gu/LC_MESSAGES/python.po index ad844bc1d..4ad98ca7e 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Gujarati (https://www.transifex.com/calamares/teams/20061/gu/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,98 @@ msgstr "" "Language: gu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -76,74 +168,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -169,3 +245,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "" msgstr[1] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/he/LC_MESSAGES/python.mo b/lang/python/he/LC_MESSAGES/python.mo index 13f671231..a6082cbe0 100644 Binary files a/lang/python/he/LC_MESSAGES/python.mo and b/lang/python/he/LC_MESSAGES/python.mo differ diff --git a/lang/python/he/LC_MESSAGES/python.po b/lang/python/he/LC_MESSAGES/python.po index 14d6ed915..262a4786a 100644 --- a/lang/python/he/LC_MESSAGES/python.po +++ b/lang/python/he/LC_MESSAGES/python.po @@ -5,16 +5,16 @@ # # Translators: # Eli Shleifer , 2017 -# Yaron Shahrabani , 2018 +# Yaron Shahrabani , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" -"Last-Translator: Yaron Shahrabani , 2018\n" +"Last-Translator: Yaron Shahrabani , 2019\n" "Language-Team: Hebrew (https://www.transifex.com/calamares/teams/20061/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,6 +22,99 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "הגדרת שירותי systemd" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "לא ניתן לשנות את השירות" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"systemctl {arg!s} הקריאה ב־chroot החזירה את קוד השגיאה {num!s}." + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "לא ניתן להפעיל את השירות הבא של systemd:‏ {name!s}." + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "ניתוק עיגון מערכות קבצים." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -81,74 +174,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "ניתוק עיגון מערכות קבצים." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "משימת דמה של Python." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "צעד דמה של Python {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "לייצר מספר סידורי של המכונה." @@ -178,3 +255,15 @@ msgstr[0] "מתבצעת הסרה של חבילה אחת." msgstr[1] "מתבצעת הסרה של %(num)d חבילות." msgstr[2] "מתבצעת הסרה של %(num)d חבילות." msgstr[3] "מתבצעת הסרה של %(num)d חבילות." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "משימת דמה של Python." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "צעד דמה של Python {}" diff --git a/lang/python/hi/LC_MESSAGES/python.mo b/lang/python/hi/LC_MESSAGES/python.mo index 8e421ec8f..91f4c0932 100644 Binary files a/lang/python/hi/LC_MESSAGES/python.mo and b/lang/python/hi/LC_MESSAGES/python.mo differ diff --git a/lang/python/hi/LC_MESSAGES/python.po b/lang/python/hi/LC_MESSAGES/python.po index a952b0f09..61fce1340 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Panwar108 , 2018\n" "Language-Team: Hindi (https://www.transifex.com/calamares/teams/20061/hi/)\n" @@ -21,6 +21,98 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "फ़ाइल सिस्टम माउंट से हटाएँ।" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -80,74 +172,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "फ़ाइल सिस्टम माउंट से हटाएँ।" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "डमी पाइथन प्रक्रिया ।" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "डमी पाइथन प्रक्रिया की चरण संख्या {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "मशीन-आईडी उत्पन्न करें।" @@ -173,3 +249,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "एक पैकेज हटाया जा रहा है।" msgstr[1] "%(num)d पैकेज हटाए जा रहे हैं।" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "डमी पाइथन प्रक्रिया ।" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "डमी पाइथन प्रक्रिया की चरण संख्या {}" diff --git a/lang/python/hr/LC_MESSAGES/python.mo b/lang/python/hr/LC_MESSAGES/python.mo index a55aa6a57..778f5ca8f 100644 Binary files a/lang/python/hr/LC_MESSAGES/python.mo and b/lang/python/hr/LC_MESSAGES/python.mo differ diff --git a/lang/python/hr/LC_MESSAGES/python.po b/lang/python/hr/LC_MESSAGES/python.po index 5dabc9e9b..7762dfa49 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Lovro Kudelić , 2019\n" "Language-Team: Croatian (https://www.transifex.com/calamares/teams/20061/hr/)\n" @@ -21,6 +21,104 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "Konfiguriraj systemd servise" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "Ne mogu modificirati servis" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"systemctl {arg!s} poziv u chroot-u vratio je kod pogreške " +"{num!s}." + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "Ne mogu omogućiti systemd servis {name!s}." + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "Ne mogu omogućiti systemd cilj {name!s}." + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "Ne mogu onemogućiti systemd cilj {name!s}." + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "Ne mogu maskirati systemd jedinicu {name!s}." + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" +"Nepoznata systemd naredba {command!s} i {suffix!s}" +" za jedinicu {name!s}." + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Odmontiraj datotečne sustave." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "Instaliranje datotečnih sustava." + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "rsync nije uspio s kodom pogreške {}." + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "Otpakiravnje slike nije uspjelo \"{}\"" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" +"Neuspješno pronalaženje unsquashfs, provjerite imate li instaliran paket " +"squashfs-tools" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "Nema točke montiranja za root particiju" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "globalstorage ne sadrži ključ \"rootMountPoint\", ne radi ništa" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "Neispravna točka montiranja za root particiju" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "rootMountPoint je \"{}\", što ne postoji, ne radi ništa" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "Neispravna unsquash konfiguracija" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "Datotečni sustav za \"{}\" ({}) nije podržan" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "Izvorni datotečni sustav \"{}\" ne postoji" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "Odredište \"{}\" u ciljnom sustavu nije direktorij" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "Ne mogu zapisati KDM konfiguracijsku datoteku" @@ -82,76 +180,65 @@ msgstr "Popis je prazan nakon provjere za instaliranim upraviteljima zaslona." msgid "Display manager configuration was incomplete" msgstr "Konfiguracija upravitelja zaslona nije bila potpuna" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "Instaliranje datotečnih sustava." - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "rsync nije uspio s kodom pogreške {}." - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "Otpakiravnje slike nije uspjelo \"{}\"" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" -"Neuspješno pronalaženje unsquashfs, provjerite imate li instaliran paket " -"squashfs-tools" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "Nema točke montiranja za root particiju" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "globalstorage ne sadrži ključ \"rootMountPoint\", ne radi ništa" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "Neispravna točka montiranja za root particiju" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "rootMountPoint je \"{}\", što ne postoji, ne radi ništa" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "Neispravna unsquash konfiguracija" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "Datotečni sustav za \"{}\" ({}) nije podržan" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "Izvorni datotečni sustav \"{}\" ne postoji" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "Odredište \"{}\" u ciljnom sustavu nije direktorij" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Odmontiraj datotečne sustave." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Testni python posao." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Testni python korak {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "Instaliranje podataka." -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "Konfigurirajte OpneRC servise" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "Ne mogu dodati servis {name!s} u run-level {level!s}." + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "Ne mogu ukloniti servis {name!s} iz run-level-a {level!s}." + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Nepoznat service-action {arg!s} za servis {name!s} u run-level " +"{level!s}." + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"rc-update {arg!s} poziv u chroot-u vratio je kod pogreške " +"{num!s}." + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "Ciljni runlevel ne postoji" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"Putanja za runlevel {level!s} je {path!s}, međutim ona ne " +"postoji." + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "Ciljni servis ne postoji" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"Putanja servisa {name!s} je {path!s}, međutim ona ne postoji." + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "Konfigurirajte Plymouth temu" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Generiraj ID računala." @@ -179,3 +266,15 @@ msgid_plural "Removing %(num)d packages." msgstr[0] "Uklanjam paket." msgstr[1] "Uklanjam %(num)d pakete." msgstr[2] "Uklanjam %(num)d pakete." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "Uklonite live korisnika iz ciljnog sustava" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Testni python posao." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Testni python korak {}" diff --git a/lang/python/hu/LC_MESSAGES/python.mo b/lang/python/hu/LC_MESSAGES/python.mo index 79f9cfc2f..a6e0ed213 100644 Binary files a/lang/python/hu/LC_MESSAGES/python.mo and b/lang/python/hu/LC_MESSAGES/python.mo differ diff --git a/lang/python/hu/LC_MESSAGES/python.po b/lang/python/hu/LC_MESSAGES/python.po index a9a707c25..f172d1ee7 100644 --- a/lang/python/hu/LC_MESSAGES/python.po +++ b/lang/python/hu/LC_MESSAGES/python.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Balázs Meskó , 2018\n" "Language-Team: Hungarian (https://www.transifex.com/calamares/teams/20061/hu/)\n" @@ -23,6 +23,98 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Fájlrendszerek leválasztása." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "A KDM konfigurációs fájl nem írható" @@ -84,74 +176,58 @@ msgstr "A lista üres a telepített kijelzőkezelők ellenőrzése után." msgid "Display manager configuration was incomplete" msgstr "A kijelzőkezelő konfigurációja hiányos volt" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Fájlrendszerek leválasztása." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Hamis Python feladat." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Hamis {}. Python lépés" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Gépazonosító előállítása." @@ -177,3 +253,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "Egy csomag eltávolítása." msgstr[1] "%(num)d csomag eltávolítása." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Hamis Python feladat." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Hamis {}. Python lépés" diff --git a/lang/python/id/LC_MESSAGES/python.mo b/lang/python/id/LC_MESSAGES/python.mo index 94c95fa1f..4618cedb0 100644 Binary files a/lang/python/id/LC_MESSAGES/python.mo and b/lang/python/id/LC_MESSAGES/python.mo differ diff --git a/lang/python/id/LC_MESSAGES/python.po b/lang/python/id/LC_MESSAGES/python.po index 3502dd055..c9c4e9209 100644 --- a/lang/python/id/LC_MESSAGES/python.po +++ b/lang/python/id/LC_MESSAGES/python.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Wantoyo , 2018\n" "Language-Team: Indonesian (https://www.transifex.com/calamares/teams/20061/id/)\n" @@ -23,6 +23,98 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Lepaskan sistem berkas." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "Gak bisa menulis file konfigurasi KDM" @@ -86,74 +178,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "Konfigurasi display manager belum rampung" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Lepaskan sistem berkas." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Tugas dumi python." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Langkah {} dumi python" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Menghasilkan machine-id." @@ -177,3 +253,15 @@ msgstr[0] "Menginstal paket %(num)d" msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "mencopot %(num)d paket" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Tugas dumi python." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Langkah {} dumi python" diff --git a/lang/python/is/LC_MESSAGES/python.mo b/lang/python/is/LC_MESSAGES/python.mo index 241a13208..b56cd6fbc 100644 Binary files a/lang/python/is/LC_MESSAGES/python.mo and b/lang/python/is/LC_MESSAGES/python.mo differ diff --git a/lang/python/is/LC_MESSAGES/python.po b/lang/python/is/LC_MESSAGES/python.po index 0a6d38546..a6239ac22 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Kristján Magnússon, 2018\n" "Language-Team: Icelandic (https://www.transifex.com/calamares/teams/20061/is/)\n" @@ -21,6 +21,98 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Aftengja skráarkerfi." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -80,74 +172,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Aftengja skráarkerfi." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -173,3 +249,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "Fjarlægi einn pakka." msgstr[1] "Fjarlægi %(num)d pakka." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/it_IT/LC_MESSAGES/python.mo b/lang/python/it_IT/LC_MESSAGES/python.mo index 5197e65f4..7ee0ae9e8 100644 Binary files a/lang/python/it_IT/LC_MESSAGES/python.mo and b/lang/python/it_IT/LC_MESSAGES/python.mo differ diff --git a/lang/python/it_IT/LC_MESSAGES/python.po b/lang/python/it_IT/LC_MESSAGES/python.po index 2bbd3783c..90bc38cab 100644 --- a/lang/python/it_IT/LC_MESSAGES/python.po +++ b/lang/python/it_IT/LC_MESSAGES/python.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Pietro Francesco Fontana, 2018\n" "Language-Team: Italian (Italy) (https://www.transifex.com/calamares/teams/20061/it_IT/)\n" @@ -22,6 +22,98 @@ msgstr "" "Language: it_IT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Smonta i file system." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "Impossibile scrivere il file di configurazione di KDM" @@ -84,74 +176,58 @@ msgstr "La lista è vuota dopo aver controllato i display manager installati." msgid "Display manager configuration was incomplete" msgstr "La configurazione del display manager è incompleta" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Smonta i file system." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Job python fittizio." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Python step {} fittizio" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Genera machine-id." @@ -177,3 +253,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "Rimuovendo un pacchetto." msgstr[1] "Rimozione di %(num)d pacchetti." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Job python fittizio." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Python step {} fittizio" diff --git a/lang/python/ja/LC_MESSAGES/python.mo b/lang/python/ja/LC_MESSAGES/python.mo index c729a699e..7b75411d7 100644 Binary files a/lang/python/ja/LC_MESSAGES/python.mo and b/lang/python/ja/LC_MESSAGES/python.mo differ diff --git a/lang/python/ja/LC_MESSAGES/python.po b/lang/python/ja/LC_MESSAGES/python.po index 639c6c4f2..cf4890759 100644 --- a/lang/python/ja/LC_MESSAGES/python.po +++ b/lang/python/ja/LC_MESSAGES/python.po @@ -4,7 +4,8 @@ # FIRST AUTHOR , YEAR. # # Translators: -# 諏訪子 洩矢, 2018 +# UTUMI Hirosi , 2019 +# ブラシックデービッド, 2019 # Takefumi Nagata, 2019 # #, fuzzy @@ -12,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Takefumi Nagata, 2019\n" "Language-Team: Japanese (https://www.transifex.com/calamares/teams/20061/ja/)\n" @@ -22,6 +23,98 @@ msgstr "" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "systemdサービスを設定" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "サービスが変更できません" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "{name!s}というsystemdサービスが可能にすることができません" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "systemd でターゲット {name!s}が開始できません。" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "systemd でターゲット {name!s}が停止できません。" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "ファイルシステムをアンマウントする。" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "ファイルシステムをインストール。" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "エラーコード {} によりrsyncを失敗。" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "イメージ \"{}\" の展開に失敗" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "unsquashfs が見つかりませんでした。 squashfs-toolsがインストールされているか、確認してください。" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "ルートパーティションのためのマウントポイントがありません" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "globalstorage に \"rootMountPoint\" キーが含まれていません。何もしません。" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "ルートパーティションのためのマウントポイントが不正です" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "ルートマウントポイントは \"{}\" ですが、存在しません。何もできません。" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "unsquash の設定が不正です" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "ファイルシステム \"{}\" ({}) はサポートされていません" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "ソースファイルシステム \"{}\" は存在しません" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "ターゲットシステムの宛先 \"{}\" はディレクトリではありません" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "KDMの設定ファイルに書き込みができません" @@ -48,7 +141,7 @@ msgstr "LightDM 設定ファイル {!s} が存在しません" #: src/modules/displaymanager/main.py:592 msgid "Cannot configure LightDM" -msgstr "LightDM の設定ができません" +msgstr "LightDMの設定ができません" #: src/modules/displaymanager/main.py:593 msgid "No LightDM greeter installed." @@ -71,85 +164,68 @@ msgstr "ディスプレイマネージャが選択されていません。" msgid "" "The displaymanagers list is empty or undefined in bothglobalstorage and " "displaymanager.conf." -msgstr "" -"ディスプレイマネージャのリストが空白あるいは bothglobalstorage 及び displaymanager.conf 内で定義されていません。" +msgstr "ディスプレイマネージャのリストが bothglobalstorage 及び displaymanager.conf 内で空白か未定義です。" #: src/modules/displaymanager/main.py:773 msgid "The list is empty after checking for installed display managers." -msgstr "インストールされたディスプレイマネージャーに検索しましたと、リストが空です。" +msgstr "インストールされているディスプレイマネージャを確認したところ、リストは空です。" #: src/modules/displaymanager/main.py:821 msgid "Display manager configuration was incomplete" msgstr "ディスプレイマネージャの設定が不完全です" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "ファイルシステムをインストール。" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "エラーコード {} によりrsyncを失敗。" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "イメージ \"{}\" の展開に失敗" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "unsquashfs が見つかりませんでした。 squashfs-toolsがインストールされているか、確認してください。" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "ルートパーティションのためのマウントポイントがありません" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "ルートパーティションのためのマウントポイントが不正です" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "ルートマウントポイントは \"{}\" ですが、存在しません。何もできません。" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "unsquash の設定が不正です" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "ファイルシステム \"{}\" ({}) はサポートされていません" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "ソースファイルシステム \"{}\" は存在しません" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "ファイルシステムをアンマウントする。" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Dummy python job." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Dummy python step {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "データのインストール。" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "OpenRCサービスを設定" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "ランレベル {level!s} にサービス {name!s} が追加できません。" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "ランレベル {level!s} からサービス {name!s} が削除できません。" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "ターゲットとするランレベルは存在しません" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "ターゲットとするサービスは存在しません" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "Plymouthテーマを設定" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "machine-id の生成" @@ -173,3 +249,15 @@ msgstr[0] " %(num)d パッケージのインストール中。" msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] " %(num)d パッケージの削除中。" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Dummy python job." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Dummy python step {}" diff --git a/lang/python/kk/LC_MESSAGES/python.mo b/lang/python/kk/LC_MESSAGES/python.mo index 1830e8618..0678172ea 100644 Binary files a/lang/python/kk/LC_MESSAGES/python.mo and b/lang/python/kk/LC_MESSAGES/python.mo differ diff --git a/lang/python/kk/LC_MESSAGES/python.po b/lang/python/kk/LC_MESSAGES/python.po index 2e22d1f7b..feeb51549 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Kazakh (https://www.transifex.com/calamares/teams/20061/kk/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,98 @@ msgstr "" "Language: kk\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -76,74 +168,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -169,3 +245,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "" msgstr[1] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/kn/LC_MESSAGES/python.mo b/lang/python/kn/LC_MESSAGES/python.mo index 3a50585d9..457bfa792 100644 Binary files a/lang/python/kn/LC_MESSAGES/python.mo and b/lang/python/kn/LC_MESSAGES/python.mo differ diff --git a/lang/python/kn/LC_MESSAGES/python.po b/lang/python/kn/LC_MESSAGES/python.po index 0506c8ef0..757fe5dc6 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Kannada (https://www.transifex.com/calamares/teams/20061/kn/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,98 @@ msgstr "" "Language: kn\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -76,74 +168,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -169,3 +245,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "" msgstr[1] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/ko/LC_MESSAGES/python.mo b/lang/python/ko/LC_MESSAGES/python.mo index bd2208a0c..b1bc1a0e6 100644 Binary files a/lang/python/ko/LC_MESSAGES/python.mo and b/lang/python/ko/LC_MESSAGES/python.mo differ diff --git a/lang/python/ko/LC_MESSAGES/python.po b/lang/python/ko/LC_MESSAGES/python.po index 90bfbd298..262dca031 100644 --- a/lang/python/ko/LC_MESSAGES/python.po +++ b/lang/python/ko/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Ji-Hyeon Gim , 2018\n" "Language-Team: Korean (https://www.transifex.com/calamares/teams/20061/ko/)\n" @@ -21,6 +21,98 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "파일 시스템 마운트를 해제합니다." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -80,74 +172,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "파일 시스템 마운트를 해제합니다." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "더미 파이썬 작업." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "더미 파이썬 단계 {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "장치 식별자를 생성합니다." @@ -171,3 +247,15 @@ msgstr[0] "%(num)d개의 패키지들을 설치하는 중입니다." msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "%(num)d개의 패키지들을 제거하는 중입니다." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "더미 파이썬 작업." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "더미 파이썬 단계 {}" diff --git a/lang/python/lo/LC_MESSAGES/python.mo b/lang/python/lo/LC_MESSAGES/python.mo index 537403017..0236d8e18 100644 Binary files a/lang/python/lo/LC_MESSAGES/python.mo and b/lang/python/lo/LC_MESSAGES/python.mo differ diff --git a/lang/python/lo/LC_MESSAGES/python.po b/lang/python/lo/LC_MESSAGES/python.po index 4726fac78..d17815e70 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Lao (https://www.transifex.com/calamares/teams/20061/lo/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,98 @@ msgstr "" "Language: lo\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -76,74 +168,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -167,3 +243,15 @@ msgstr[0] "" msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/lt/LC_MESSAGES/python.mo b/lang/python/lt/LC_MESSAGES/python.mo index 3ba2e90d5..312817a54 100644 Binary files a/lang/python/lt/LC_MESSAGES/python.mo and b/lang/python/lt/LC_MESSAGES/python.mo differ diff --git a/lang/python/lt/LC_MESSAGES/python.po b/lang/python/lt/LC_MESSAGES/python.po index e45f09e30..91a8c0d6d 100644 --- a/lang/python/lt/LC_MESSAGES/python.po +++ b/lang/python/lt/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Moo, 2019\n" "Language-Team: Lithuanian (https://www.transifex.com/calamares/teams/20061/lt/)\n" @@ -21,6 +21,104 @@ msgstr "" "Language: lt\n" "Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "Konfigūruoti systemd tarnybas" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "Nepavyksta modifikuoti tarnybos" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"systemctl {arg!s} iškvieta, esanti chroot, grąžino klaidos kodą" +" {num!s}." + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "Nepavyksta įjungti systemd tarnybos {name!s}." + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "Nepavyksta įjungti systemd paskirties {name!s}." + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "Nepavyksta išjungti systemd paskirties {name!s}." + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "Nepavyksta maskuoti systemd įtaiso {name!s}." + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" +"Nežinomos systemd komandos {command!s} ir " +"{suffix!s} įtaisui {name!s}." + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Atjungti failų sistemas." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "Įdiegiamos failų sistemos." + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "rsync patyrė nesėkmę su klaidos kodu {}." + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "Nepavyko išpakuoti atvaizdį \"{}\"" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" +"Nepavyko rasti unsquashfs, įsitikinkite, kad esate įdiegę squashfs-tools " +"paketą" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "Nėra prijungimo taško šaknies skaidiniui" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "globalstorage viduje nėra \"rootMountPoint\" rakto, nieko nedaroma" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "Blogas šaknies skaidinio prijungimo taškas" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "rootMountPoint yra \"{}\", kurio nėra, nieko nedaroma" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "Bloga unsquash konfigūracija" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "\"{}\" ({}) failų sistema yra nepalaikoma" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "Šaltinio failų sistemos \"{}\" nėra" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "Paskirties vieta \"{}\", esanti paskirties sistemoje, nėra katalogas" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "Nepavyksta įrašyti KDM konfigūracijos failą" @@ -82,76 +180,65 @@ msgstr "Patikrinus įdiegtas ekranų tvarkytuves, sąrašas yra tuščias." msgid "Display manager configuration was incomplete" msgstr "Ekranų tvarkytuvės konfigūracija yra nepilna" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "Įdiegiamos failų sistemos." - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "rsync patyrė nesėkmę su klaidos kodu {}." - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "Nepavyko išpakuoti atvaizdį \"{}\"" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" -"Nepavyko rasti unsquashfs, įsitikinkite, kad esate įdiegę squashfs-tools " -"paketą" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "Nėra prijungimo taško šaknies skaidiniui" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "globalstorage viduje nėra \"rootMountPoint\" rakto, nieko nedaroma" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "Blogas šaknies skaidinio prijungimo taškas" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "rootMountPoint yra \"{}\", kurio nėra, nieko nedaroma" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "Bloga unsquash konfigūracija" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "\"{}\" ({}) failų sistema yra nepalaikoma" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "Šaltinio failų sistemos \"{}\" nėra" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "Paskirties vieta \"{}\", esanti paskirties sistemoje, nėra katalogas" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Atjungti failų sistemas." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Fiktyvi python užduotis." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Fiktyvus python žingsnis {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "Įdiegiami duomenys." -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "Konfigūruoti OpenRC tarnybas" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "Nepavyksta pridėti tarnybą {name!s} į vykdymo lygmenį {level!s}." + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "Nepavyksta pašalinti tarnybą {name!s} iš vykdymo lygmens {level!s}." + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Nežinomas tarnybos veiksmas {arg!s}, skirtas tarnybai {name!s} " +"vykdymo lygmenyje {level!s}." + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"rc-update {arg!s} iškvieta, esanti chroot, grąžino klaidos kodą" +" {num!s}." + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "Paskirties vykdymo lygmens nėra" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"Vykdymo lygmens {level!s} kelias yra {path!s}, kurio savo " +"ruožtu nėra." + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "Paskirties tarnybos nėra" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"Tarnybos {name!s} kelias yra {path!s}, kurio savo ruožtu nėra." + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "Konfigūruoti Plymouth temą" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Generuoti machine-id." @@ -181,3 +268,15 @@ msgstr[0] "Šalinamas %(num)d paketas." msgstr[1] "Šalinami %(num)d paketai." msgstr[2] "Šalinama %(num)d paketų." msgstr[3] "Šalinama %(num)d paketų." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "Šalinti demonstracinį naudotoją iš paskirties sistemos" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Fiktyvi python užduotis." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Fiktyvus python žingsnis {}" diff --git a/lang/python/mk/LC_MESSAGES/python.mo b/lang/python/mk/LC_MESSAGES/python.mo index cbe7dea69..1680c8dc1 100644 Binary files a/lang/python/mk/LC_MESSAGES/python.mo and b/lang/python/mk/LC_MESSAGES/python.mo differ diff --git a/lang/python/mk/LC_MESSAGES/python.po b/lang/python/mk/LC_MESSAGES/python.po index ae5ec52be..02419b9b2 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Martin Ristovski , 2018\n" "Language-Team: Macedonian (https://www.transifex.com/calamares/teams/20061/mk/)\n" @@ -21,6 +21,98 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "KDM конфигурациониот фајл не може да се создаде" @@ -80,74 +172,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -173,3 +249,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "" msgstr[1] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/mr/LC_MESSAGES/python.mo b/lang/python/mr/LC_MESSAGES/python.mo index 35718e647..99e564ec4 100644 Binary files a/lang/python/mr/LC_MESSAGES/python.mo and b/lang/python/mr/LC_MESSAGES/python.mo differ diff --git a/lang/python/mr/LC_MESSAGES/python.po b/lang/python/mr/LC_MESSAGES/python.po index 687c4bf01..100d72639 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Marathi (https://www.transifex.com/calamares/teams/20061/mr/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,98 @@ msgstr "" "Language: mr\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -76,74 +168,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -169,3 +245,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "" msgstr[1] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/nb/LC_MESSAGES/python.mo b/lang/python/nb/LC_MESSAGES/python.mo index ffe775759..8278ac7cb 100644 Binary files a/lang/python/nb/LC_MESSAGES/python.mo and b/lang/python/nb/LC_MESSAGES/python.mo differ diff --git a/lang/python/nb/LC_MESSAGES/python.po b/lang/python/nb/LC_MESSAGES/python.po index fe04973fc..7de962910 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Tyler Moss , 2017\n" "Language-Team: Norwegian Bokmål (https://www.transifex.com/calamares/teams/20061/nb/)\n" @@ -21,6 +21,98 @@ msgstr "" "Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -80,74 +172,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Generer maskin-ID." @@ -173,3 +249,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "" msgstr[1] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/ne_NP/LC_MESSAGES/python.mo b/lang/python/ne_NP/LC_MESSAGES/python.mo index 3331fcac9..1d91bbddd 100644 Binary files a/lang/python/ne_NP/LC_MESSAGES/python.mo and b/lang/python/ne_NP/LC_MESSAGES/python.mo differ diff --git a/lang/python/ne_NP/LC_MESSAGES/python.po b/lang/python/ne_NP/LC_MESSAGES/python.po index ccc918fa4..7b0da2959 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Nepali (Nepal) (https://www.transifex.com/calamares/teams/20061/ne_NP/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,98 @@ msgstr "" "Language: ne_NP\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -76,74 +168,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -169,3 +245,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "" msgstr[1] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/nl/LC_MESSAGES/python.mo b/lang/python/nl/LC_MESSAGES/python.mo index 7faf4faf1..9dcdd072e 100644 Binary files a/lang/python/nl/LC_MESSAGES/python.mo and b/lang/python/nl/LC_MESSAGES/python.mo differ diff --git a/lang/python/nl/LC_MESSAGES/python.po b/lang/python/nl/LC_MESSAGES/python.po index 04b6d7a9d..f424fb4c7 100644 --- a/lang/python/nl/LC_MESSAGES/python.po +++ b/lang/python/nl/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Adriaan de Groot , 2019\n" "Language-Team: Dutch (https://www.transifex.com/calamares/teams/20061/nl/)\n" @@ -21,6 +21,100 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "Bestandssystemen installeren." + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "Geen mount-punt voor de root-partitie" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "globalstorage bevat geen sleutel \"rootMountPoint\", er wordt niks gedaan" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "Onjuist mount-punt voor de root-partitie" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" +"rootMountPoint is ingesteld op \"{}\", welke niet bestaat, er wordt niks " +"gedaan" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -80,76 +174,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "Bestandssystemen installeren." - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "Geen mount-punt voor de root-partitie" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "globalstorage bevat geen sleutel \"rootMountPoint\", er wordt niks gedaan" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "Onjuist mount-punt voor de root-partitie" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" -"rootMountPoint is ingesteld op \"{}\", welke niet bestaat, er wordt niks " -"gedaan" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Voorbeeld Python-taak" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Voorbeeld Python-stap {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Genereer machine-id" @@ -175,3 +251,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "" msgstr[1] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Voorbeeld Python-taak" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Voorbeeld Python-stap {}" diff --git a/lang/python/pl/LC_MESSAGES/python.mo b/lang/python/pl/LC_MESSAGES/python.mo index a99814501..1f6a3770a 100644 Binary files a/lang/python/pl/LC_MESSAGES/python.mo and b/lang/python/pl/LC_MESSAGES/python.mo differ diff --git a/lang/python/pl/LC_MESSAGES/python.po b/lang/python/pl/LC_MESSAGES/python.po index 15ad6f289..d63e2c49a 100644 --- a/lang/python/pl/LC_MESSAGES/python.po +++ b/lang/python/pl/LC_MESSAGES/python.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Piotr Strębski , 2019\n" "Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n" @@ -23,6 +23,104 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Odmontuj systemy plików." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "Instalowanie systemów plików." + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "rsync zakończyło działanie kodem błędu {}." + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "Błąd rozpakowywania obrazu \"{}\"" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" +"Nie można odnaleźć unsquashfs, upewnij się, że masz zainstalowany pakiet " +"squashfs-tools" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "Brak punktu montowania partycji root" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" +"globalstorage nie zawiera klucza \"rootMountPoint\", nic nie zostanie " +"zrobione" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "Błędny punkt montowania partycji root" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" +"Punkt montowania partycji root (rootMountPoint) jest \"{}\", które nie " +"istnieje; nic nie zostanie zrobione" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "Błędna konfiguracja unsquash" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "System plików dla \"{}\" ({}) nie jest obsługiwany" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "Źródłowy system plików \"{}\" nie istnieje" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "Miejsce docelowe \"{}\" w docelowym systemie nie jest katalogiem" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "Nie można zapisać pliku konfiguracji KDM" @@ -85,80 +183,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "Konfiguracja menedzera wyświetlania była niekompletna" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "Instalowanie systemów plików." - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "rsync zakończyło działanie kodem błędu {}." - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "Błąd rozpakowywania obrazu \"{}\"" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" -"Nie można odnaleźć unsquashfs, upewnij się, że masz zainstalowany pakiet " -"squashfs-tools" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "Brak punktu montowania partycji root" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" -"globalstorage nie zawiera klucza \"rootMountPoint\", nic nie zostanie " -"zrobione" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "Błędny punkt montowania partycji root" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" -"Punkt montowania partycji root (rootMountPoint) jest \"{}\", które nie " -"istnieje; nic nie zostanie zrobione" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "Błędna konfiguracja unsquash" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "System plików dla \"{}\" ({}) nie jest obsługiwany" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "Źródłowy system plików \"{}\" nie istnieje" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "Miejsce docelowe \"{}\" w docelowym systemie nie jest katalogiem" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Odmontuj systemy plików." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Zadanie fikcyjne Python." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Krok fikcyjny Python {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "Instalowanie danych." -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Generuj machine-id." @@ -188,3 +264,15 @@ msgstr[0] "Usuwanie jednego pakietu." msgstr[1] "Usuwanie %(num)d pakietów." msgstr[2] "Usuwanie %(num)d pakietów." msgstr[3] "Usuwanie %(num)d pakietów." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Zadanie fikcyjne Python." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Krok fikcyjny Python {}" diff --git a/lang/python/pt_BR/LC_MESSAGES/python.mo b/lang/python/pt_BR/LC_MESSAGES/python.mo index 2ebd05893..45712ac3f 100644 Binary files a/lang/python/pt_BR/LC_MESSAGES/python.mo and b/lang/python/pt_BR/LC_MESSAGES/python.mo differ diff --git a/lang/python/pt_BR/LC_MESSAGES/python.po b/lang/python/pt_BR/LC_MESSAGES/python.po index cf92206fa..8cfb269ba 100644 --- a/lang/python/pt_BR/LC_MESSAGES/python.po +++ b/lang/python/pt_BR/LC_MESSAGES/python.po @@ -4,18 +4,17 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Caio Jordão Carvalho , 2018 -# Guilherme , 2018 # André Marcelo Alvarenga , 2019 +# Guilherme , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" -"Last-Translator: André Marcelo Alvarenga , 2019\n" +"Last-Translator: Guilherme , 2019\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,6 +22,104 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "Configurar serviços do systemd" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "Não é possível modificar o serviço" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"A chamada systemctl {arg!s} no chroot retornou o código de erro" +" {num!s}." + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "Não é possível habilitar o serviço {name!s} do systemd." + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "Não é possível habilitar o alvo {name!s} do systemd." + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "Não é possível desabilitar o alvo {name!s} do systemd." + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "Não é possível mascarar a unidade {name!s} do systemd." + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" +"Comandos desconhecidos do systemd {command!s} e " +"{suffix!s} para a unidade {name!s}." + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Desmontar os sistemas de arquivos." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "Instalando sistemas de arquivos." + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "O rsync falhou com o código de erro {}." + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "Ocorreu uma falha ao descompactar a imagem \"{}\"" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" +"Ocorreu uma falha ao localizar o unsquashfs, certifique-se de que o pacote " +"squashfs-tools esteja instalado" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "Nenhum ponto de montagem para a partição root" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "O globalstorage não contém uma chave \"rootMountPoint\". Nada foi feito." + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "Ponto de montagem incorreto para a partição root" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "O rootMountPoint é \"{}\", mas ele não existe. Nada foi feito." + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "Configuração incorreta do unsquash" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "O sistema de arquivos para \"{}\" ({}) não é suportado" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "O sistema de arquivos de origem \"{}\" não existe" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "A destinação \"{}\" no sistema de destino não é um diretório" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "Não foi possível gravar o arquivo de configuração do KDM" @@ -87,76 +184,68 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "A configuração do gerenciador de exibição está incompleta" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "Instalando sistemas de arquivos." - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "O rsync falhou com o código de erro {}." - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "Ocorreu uma falha ao descompactar a imagem \"{}\"" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" -"Ocorreu uma falha ao localizar o unsquashfs, certifique-se de que o pacote " -"squashfs-tools esteja instalado" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "Nenhum ponto de montagem para a partição root" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "O globalstorage não contém a chave \"rootMountPoint\". Nada foi feito." - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "Ponto de montagem incorreto para a partição root" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "O rootMountPoint é \"{}\", mas ele não existe. Nada foi feito." - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "Configuração incorreta do unsquash" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "O sistema de arquivos para \"{}\" ({}) não é suportado" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "O sistema de arquivos de origem \"{}\" não existe" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "A destinação \"{}\" no sistema de destino não é um diretório" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Desmontar os sistemas de arquivo." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Tarefa modelo python." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Etapa modelo python {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "Instalando os dados." -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "Configurar serviços do OpenRC" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" +"Não é possível adicionar serviço {name!s} ao nível de execução {level!s}." + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" +"Não é possível remover serviço {name!s} do nível de execução {level!s}." + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Serviço de ação {arg!s} desconhecido para o serviço {name!s} no" +" nível de execução {level!s}." + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"Chamada rc-update {arg!s} no chroot retornou o código de erro " +"{num!s}." + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "O nível de execução de destino não existe" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"O caminho para o nível de execução {level!s} é {path!s}, o qual" +" não existe." + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "O serviço de destino não existe" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"O caminho para o serviço {name!s} é {path!s}, o qual não " +"existe." + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "Configurar tema do Plymouth" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Gerar machine-id." @@ -182,3 +271,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "Removendo um pacote." msgstr[1] "Removendo %(num)d pacotes." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "Remover usuário live do sistema de destino" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Tarefa modelo python." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Etapa modelo python {}" diff --git a/lang/python/pt_PT/LC_MESSAGES/python.mo b/lang/python/pt_PT/LC_MESSAGES/python.mo index 1c0fbca52..c4528d21f 100644 Binary files a/lang/python/pt_PT/LC_MESSAGES/python.mo and b/lang/python/pt_PT/LC_MESSAGES/python.mo differ diff --git a/lang/python/pt_PT/LC_MESSAGES/python.po b/lang/python/pt_PT/LC_MESSAGES/python.po index facf7c3a3..a6b7ae932 100644 --- a/lang/python/pt_PT/LC_MESSAGES/python.po +++ b/lang/python/pt_PT/LC_MESSAGES/python.po @@ -5,17 +5,17 @@ # # Translators: # Nuno Amorim , 2018 -# Hugo Carvalho , 2018 # Ricardo Simões , 2019 +# Hugo Carvalho , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" -"Last-Translator: Ricardo Simões , 2019\n" +"Last-Translator: Hugo Carvalho , 2019\n" "Language-Team: Portuguese (Portugal) (https://www.transifex.com/calamares/teams/20061/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,6 +23,104 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "Configurar serviços systemd" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "Não é possível modificar serviço" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"systemctl {arg!s} chamar pelo chroot retornou com código de " +"erro {num!s}." + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "Não é possível ativar o serviço systemd {name!s}." + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "Não é possível ativar o destino do systemd {name!s}." + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "Não é possível desativar o destino do systemd {name!s}." + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "Não é possível mascarar a unidade do systemd {name!s}." + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" +"Comandos do systemd desconhecidos {command!s} e " +"{suffix!s} por unidade {name!s}." + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Desmontar sistemas de ficheiro." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "A instalar sistemas de ficheiros." + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "rsync falhou com código de erro {}." + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "Falha ao descompactar imagem \"{}\"" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" +"Falha ao procurar unsquashfs, certifique-se que tem o pacote squashfs-tools " +"instalado" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "Nenhum ponto de montagem para a partição root" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "globalstorage não contém um \"rootMountPoint\" chave, nada a fazer" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "Ponto de montagem mau para partição root" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "rootMountPoint é \"{}\", que não existe, nada a fazer" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "Má configuração unsquash" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "O sistema de ficheiros \"{}\" ({}) não é suportado" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "O sistema de ficheiros fonte \"{}\" não existe" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "O destino \"{}\" no sistema alvo não é uma diretoria" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "Não é possível gravar o ficheiro de configuração KDM" @@ -86,76 +184,67 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "A configuração do gestor de exibição estava incompleta" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "A instalar sistemas de ficheiros." - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "rsync falhou com código de erro {}." - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "Falha ao descompactar imagem \"{}\"" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" -"Falha ao procurar unsquashfs, certifique-se que tem o pacote squashfs-tools " -"instalado" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "Nenhum ponto de montagem para a partição root" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "globalstorage não contém um \"rootMountPoint\" chave, nada a fazer" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "Ponto de montagem mau para partição root" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "rootMountPoint é \"{}\", que não existe, nada a fazer" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "Má configuração unsquash" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "O sistema de ficheiros \"{}\" ({}) não é suportado" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "O sistema de ficheiros fonte \"{}\" não existe" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "O destino \"{}\" no sistema alvo não é uma diretoria" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Desmontar sistemas de ficheiro." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Tarefa Dummy python." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Passo Dummy python {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "A instalar dados." -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "Configurar serviços OpenRC" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" +"Não é possível adicionar o serviço {name!s} ao nível de execução {level!s}." + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" +"Não é possível remover o serviço {name!s} do nível de execução {level!s}." + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Serviço de ação desconhecido {arg!s} para serviço {name!s} em " +"nível de execução {level!s}." + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"rc-update {arg!s} chamar pelo chroot retornou com código de " +"erro {num!s}." + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "O nível de execução do destino não existe" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"O caminho para o nível de execução {level!s} é {path!s}, que " +"não existe." + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "O serviço do destino não existe" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"O caminho para o serviço {name!s} é {path!s}, que não existe." + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "Configurar tema do Plymouth" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Gerar id-máquina" @@ -181,3 +270,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "A remover um pacote." msgstr[1] "A remover %(num)d pacotes." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "Remover utilizador ativo do sistema de destino" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Tarefa Dummy python." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Passo Dummy python {}" diff --git a/lang/python/ro/LC_MESSAGES/python.mo b/lang/python/ro/LC_MESSAGES/python.mo index 9f4b611ff..444b8c38a 100644 Binary files a/lang/python/ro/LC_MESSAGES/python.mo and b/lang/python/ro/LC_MESSAGES/python.mo differ diff --git a/lang/python/ro/LC_MESSAGES/python.po b/lang/python/ro/LC_MESSAGES/python.po index e6196be86..eb5174621 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Sebastian Brici , 2018\n" "Language-Team: Romanian (https://www.transifex.com/calamares/teams/20061/ro/)\n" @@ -22,6 +22,98 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Demonteaza sistemul de fisiere" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -81,74 +173,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Demonteaza sistemul de fisiere" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Job python fictiv." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Dummy python step {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Generează machine-id." @@ -176,3 +252,15 @@ msgid_plural "Removing %(num)d packages." msgstr[0] "Se elimină un pachet." msgstr[1] "Se elimină %(num)d pachet." msgstr[2] "Se elimină %(num)d de pachete." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Job python fictiv." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Dummy python step {}" diff --git a/lang/python/ru/LC_MESSAGES/python.mo b/lang/python/ru/LC_MESSAGES/python.mo index c584f122a..d492218d4 100644 Binary files a/lang/python/ru/LC_MESSAGES/python.mo and b/lang/python/ru/LC_MESSAGES/python.mo differ diff --git a/lang/python/ru/LC_MESSAGES/python.po b/lang/python/ru/LC_MESSAGES/python.po index 142942669..ae2799b80 100644 --- a/lang/python/ru/LC_MESSAGES/python.po +++ b/lang/python/ru/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Aleksey Kabanov , 2018\n" "Language-Team: Russian (https://www.transifex.com/calamares/teams/20061/ru/)\n" @@ -21,6 +21,98 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -80,74 +172,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -177,3 +253,15 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/sk/LC_MESSAGES/python.mo b/lang/python/sk/LC_MESSAGES/python.mo index b8234ebf8..c9a6f84c1 100644 Binary files a/lang/python/sk/LC_MESSAGES/python.mo and b/lang/python/sk/LC_MESSAGES/python.mo differ diff --git a/lang/python/sk/LC_MESSAGES/python.po b/lang/python/sk/LC_MESSAGES/python.po index 97cb8d0d7..9696c52d0 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Dušan Kazik , 2018\n" "Language-Team: Slovak (https://www.transifex.com/calamares/teams/20061/sk/)\n" @@ -21,6 +21,98 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Odpojenie súborových systémov." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "Nedá sa zapísať konfiguračný súbor správcu KDM" @@ -80,74 +172,58 @@ msgstr "Zoznam je prázdny po kontrole nainštalovaných správcov zobrazenia." msgid "Display manager configuration was incomplete" msgstr "Konfigurácia správcu zobrazenia nebola úplná" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Odpojenie súborových systémov." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Fiktívna úloha jazyka python." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Fiktívny krok {} jazyka python" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Generovanie identifikátora počítača." @@ -177,3 +253,15 @@ msgstr[0] "Odstraňuje sa jeden balík." msgstr[1] "Odstraňujú sa %(num)d balíky." msgstr[2] "Odstraňuje sa %(num)d balíkov." msgstr[3] "Odstraňuje sa %(num)d balíkov." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Fiktívna úloha jazyka python." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Fiktívny krok {} jazyka python" diff --git a/lang/python/sl/LC_MESSAGES/python.mo b/lang/python/sl/LC_MESSAGES/python.mo index bde6d8fb9..1943947b8 100644 Binary files a/lang/python/sl/LC_MESSAGES/python.mo and b/lang/python/sl/LC_MESSAGES/python.mo differ diff --git a/lang/python/sl/LC_MESSAGES/python.po b/lang/python/sl/LC_MESSAGES/python.po index ed125bd90..49917593c 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Slovenian (https://www.transifex.com/calamares/teams/20061/sl/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,98 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -76,74 +168,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -173,3 +249,15 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/sq/LC_MESSAGES/python.mo b/lang/python/sq/LC_MESSAGES/python.mo index 0be5e6434..5c584ac6b 100644 Binary files a/lang/python/sq/LC_MESSAGES/python.mo and b/lang/python/sq/LC_MESSAGES/python.mo differ diff --git a/lang/python/sq/LC_MESSAGES/python.po b/lang/python/sq/LC_MESSAGES/python.po index 2082ddf79..f548ffb41 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Besnik , 2019\n" "Language-Team: Albanian (https://www.transifex.com/calamares/teams/20061/sq/)\n" @@ -21,6 +21,104 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "Formësoni shërbime systemd" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "S’modifikohet dot shërbimi" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"Thirrja systemctl {arg!s} në chroot u përgjigj me kod gabimi " +"{num!s}." + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "S’aktivizohet dot shërbimi systemd {name!s}." + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "S’aktivizohet dot objektivi systemd {name!s}." + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "S’çaktivizohet dot objektivi systemd {name!s}." + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "S’maskohet dot njësia systemd {name!s}." + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" +"Urdhra të panjohur systemd {command!s} dhe " +"{suffix!s} për njësi {name!s}." + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Çmontoni sisteme kartelash." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "Po instalohen sisteme kartelash." + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "rsync dështoi me kod gabimi {}." + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "Dështoi shpaketimi i figurës \"{}\"" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" +"S’u arrit të gjendej unsquashfs, sigurohuni se e keni të instaluar paketën " +"squashfs-tools" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "S’ka pikë montimi për ndarjen rrënjë" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "globalstorage nuk përmban një vlerë \"rootMountPoint\", s’po bëhet gjë" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "Pikë e gabuar montimi për ndarjen rrënjë" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "rootMountPoint është \"{}\", që s’ekziston, s’po bëhet gjë" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "Formësim i keq i unsquash-it" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "Sistemi i kartelave për \"{}\" ({}) nuk mbulohet" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "Sistemi i kartelave \"{}\" ({}) s’ekziston" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "Destinacioni \"{}\" te sistemi i synuar s’është drejtori" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "S’shkruhet dot kartelë formësimi KDM" @@ -83,76 +181,66 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "Formësimi i përgjegjësit të ekranit s’qe i plotë" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "Po instalohen sisteme kartelash." - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "rsync dështoi me kod gabimi {}." - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "Dështoi shpaketimi i figurës \"{}\"" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" -"S’u arrit të gjendej unsquashfs, sigurohuni se e keni të instaluar paketën " -"squashfs-tools" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "S’ka pikë montimi për ndarjen rrënjë" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "globalstorage nuk përmban një vlerë \"rootMountPoint\", s’po bëhet gjë" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "Pikë e gabuar montimi për ndarjen rrënjë" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "rootMountPoint është \"{}\", që s’ekziston, s’po bëhet gjë" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "Formësim i keq i unsquash-it" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "Sistemi i kartelave për \"{}\" ({}) nuk mbulohet" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "Sistemi i kartelave \"{}\" ({}) s’ekziston" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "Destinacioni \"{}\" te sistemi i synuar s’është drejtori" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Çmontoni sisteme kartelash." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Akt python dummy." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Hap python {} dummy" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "Po instalohen të dhëna." -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "Formësoni shërbime OpenRC" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "S’shtohet dot shërbimi {name!s} te run-level {level!s}." + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "S’hiqet dot shërbimi {name!s} nga run-level {level!s}." + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Service-action {arg!s} i panjohur për shërbimin {name!s} te " +"run-level {level!s}." + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"Thirrje rc-update {arg!s} në chroot u përgjigj me kod gabimi " +"{num!s}." + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "Runlevel-i i synuar nuk ekziston" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" +"Shtegu për runlevel {level!s} është {path!s}, i cili nuk " +"ekziston." + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "Shërbimi i synuar nuk ekziston" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" +"Shtegu për shërbimin {name!s} është {path!s}, i cili nuk " +"ekziston." + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "Formësoni temën Plimuth" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Prodho machine-id." @@ -178,3 +266,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "Po hiqet një paketë." msgstr[1] "Po hiqen %(num)d paketa." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "Hiq përdoruesin live nga sistemi i synuar" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Akt python dummy." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Hap python {} dummy" diff --git a/lang/python/sr/LC_MESSAGES/python.mo b/lang/python/sr/LC_MESSAGES/python.mo index 3b4712c97..e99bccee0 100644 Binary files a/lang/python/sr/LC_MESSAGES/python.mo and b/lang/python/sr/LC_MESSAGES/python.mo differ diff --git a/lang/python/sr/LC_MESSAGES/python.po b/lang/python/sr/LC_MESSAGES/python.po index 737417e36..ac42802b8 100644 --- a/lang/python/sr/LC_MESSAGES/python.po +++ b/lang/python/sr/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Serbian (https://www.transifex.com/calamares/teams/20061/sr/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,98 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -76,74 +168,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -171,3 +247,15 @@ msgid_plural "Removing %(num)d packages." msgstr[0] "" msgstr[1] "" msgstr[2] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/sr@latin/LC_MESSAGES/python.mo b/lang/python/sr@latin/LC_MESSAGES/python.mo index bd363a9bf..b9ce140b0 100644 Binary files a/lang/python/sr@latin/LC_MESSAGES/python.mo and b/lang/python/sr@latin/LC_MESSAGES/python.mo differ diff --git a/lang/python/sr@latin/LC_MESSAGES/python.po b/lang/python/sr@latin/LC_MESSAGES/python.po index e767393d8..9aabd4ff5 100644 --- a/lang/python/sr@latin/LC_MESSAGES/python.po +++ b/lang/python/sr@latin/LC_MESSAGES/python.po @@ -8,15 +8,107 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/calamares/teams/20061/sr%40latin/)\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/calamares/teams/20061/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -76,74 +168,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -171,3 +247,15 @@ msgid_plural "Removing %(num)d packages." msgstr[0] "" msgstr[1] "" msgstr[2] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/sv/LC_MESSAGES/python.mo b/lang/python/sv/LC_MESSAGES/python.mo index 044255cf9..6af85532a 100644 Binary files a/lang/python/sv/LC_MESSAGES/python.mo and b/lang/python/sv/LC_MESSAGES/python.mo differ diff --git a/lang/python/sv/LC_MESSAGES/python.po b/lang/python/sv/LC_MESSAGES/python.po index 37c5a1fec..9cd96cf3d 100644 --- a/lang/python/sv/LC_MESSAGES/python.po +++ b/lang/python/sv/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Swedish (https://www.transifex.com/calamares/teams/20061/sv/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,98 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -76,74 +168,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -169,3 +245,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "" msgstr[1] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/th/LC_MESSAGES/python.mo b/lang/python/th/LC_MESSAGES/python.mo index 6049e9823..3b427fbbf 100644 Binary files a/lang/python/th/LC_MESSAGES/python.mo and b/lang/python/th/LC_MESSAGES/python.mo differ diff --git a/lang/python/th/LC_MESSAGES/python.po b/lang/python/th/LC_MESSAGES/python.po index 40a02fc83..a4d87ca6f 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Thai (https://www.transifex.com/calamares/teams/20061/th/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,98 @@ msgstr "" "Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -76,74 +168,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -167,3 +243,15 @@ msgstr[0] "" msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/tr_TR/LC_MESSAGES/python.mo b/lang/python/tr_TR/LC_MESSAGES/python.mo index 1e78c7af8..3950d00da 100644 Binary files a/lang/python/tr_TR/LC_MESSAGES/python.mo and b/lang/python/tr_TR/LC_MESSAGES/python.mo differ diff --git a/lang/python/tr_TR/LC_MESSAGES/python.po b/lang/python/tr_TR/LC_MESSAGES/python.po index 7877092b7..c446c473c 100644 --- a/lang/python/tr_TR/LC_MESSAGES/python.po +++ b/lang/python/tr_TR/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Demiray Muhterem , 2019\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/calamares/teams/20061/tr_TR/)\n" @@ -21,6 +21,104 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "Systemd hizmetlerini yapılandır" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "Hizmet değiştirilemiyor" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" +"systemctl {arg!s} chroot çağrısında hata kodu döndürüldü " +"{num!s}." + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "Systemd hizmeti etkinleştirilemiyor {name!s}." + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "Systemd hedefi etkinleştirilemiyor {name!s}." + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "Systemd hedefi devre dışı bırakılamıyor {name!s}." + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "Systemd birimi maskeleyemiyor {name!s}." + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" +"Bilinmeyen sistem komutları {command!s} ve " +"{suffix!s} {name!s} birimi için." + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Dosya sistemlerini ayırın." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "Dosya sistemi yükleniyor." + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "rsync {} hata koduyla başarısız oldu." + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "\"{}\" kurulum medyası aktarılamadı" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" +"Unsquashfs bulunamadı, squashfs-tools paketinin kurulu olduğundan emin olun." + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "kök disk bölümü için bağlama noktası yok" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" +"globalstorage bir \"rootMountPoint\" anahtarı içermiyor, hiçbirşey yapılmadı" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "Kök disk bölümü için hatalı bağlama noktası" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "rootMountPoint \"{}\", mevcut değil, hiçbirşey yapılmadı" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "Unsquash yapılandırma sorunlu" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "\"{}\" ({}) Dosya sistemi desteklenmiyor" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "\"{}\" Kaynak dosya sistemi mevcut değil" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "Hedef sistemdeki \"{}\" hedefi bir dizin değil" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "KDM yapılandırma dosyası yazılamıyor" @@ -82,76 +180,62 @@ msgstr "Kurulu ekran yöneticilerini kontrol ettikten sonra liste boş." msgid "Display manager configuration was incomplete" msgstr "Ekran yöneticisi yapılandırma işi tamamlanamadı" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "Dosya sistemi yükleniyor." - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "rsync {} hata koduyla başarısız oldu." - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "\"{}\" kurulum medyası aktarılamadı" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" -"Unsquashfs bulunamadı, squashfs-tools paketinin kurulu olduğundan emin olun." - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "kök disk bölümü için bağlama noktası yok" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" -"globalstorage bir \"rootMountPoint\" anahtarı içermiyor, hiçbirşey yapılmadı" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "Kök disk bölümü için hatalı bağlama noktası" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "rootMountPoint \"{}\", mevcut değil, hiçbirşey yapılmadı" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "Unsquash yapılandırma sorunlu" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "\"{}\" ({}) Dosya sistemi desteklenmiyor" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "\"{}\" Kaynak dosya sistemi mevcut değil" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "Hedef sistemdeki \"{}\" hedefi bir dizin değil" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "Dosya sistemlerini ayırın." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Dummy python job." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Dummy python step {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "Veri yükleniyor." -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr " OpenRC hizmetlerini yapılandır" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "{name!s} hizmeti, {level!s} çalışma düzeyine ekleyemiyor." + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "{name!s} hizmeti {level!s} çalışma düzeyinden kaldırılamıyor." + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" +"Çalışma düzeyinde {level!s} hizmetinde {name!s} servisi için bilinmeyen " +"hizmet eylemi {arg!s}." + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" +" rc-update {arg!s} çağrısında chroot, {num!s} hata kodunu " +"döndürdü." + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "Hedef çalışma seviyesi mevcut değil" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "Runlevel {level!s} yolu, mevcut olmayan {path!s} 'dir." + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "Hedef servisi mevcut değil" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "{name!s} hizmetinin yolu, bulunmayan {path!s}." + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "Plymouth temasını yapılandır" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "Makine kimliği oluştur." @@ -177,3 +261,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "%(num)d paket kaldırılıyor." msgstr[1] "%(num)d paket kaldırılıyor." + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "Liveuser kullanıcısını hedef sistemden kaldırın" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Dummy python job." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Dummy python step {}" diff --git a/lang/python/uk/LC_MESSAGES/python.mo b/lang/python/uk/LC_MESSAGES/python.mo index f822db7fa..201eebc0b 100644 Binary files a/lang/python/uk/LC_MESSAGES/python.mo and b/lang/python/uk/LC_MESSAGES/python.mo differ diff --git a/lang/python/uk/LC_MESSAGES/python.po b/lang/python/uk/LC_MESSAGES/python.po index 9d4154b2a..3424d0d6f 100644 --- a/lang/python/uk/LC_MESSAGES/python.po +++ b/lang/python/uk/LC_MESSAGES/python.po @@ -5,15 +5,16 @@ # # Translators: # Володимир Братко , 2018 +# Paul S , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" -"Last-Translator: Володимир Братко , 2018\n" +"Last-Translator: Paul S , 2019\n" "Language-Team: Ukrainian (https://www.transifex.com/calamares/teams/20061/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,33 +22,131 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "Налаштуйте служби systemd" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "Не вдається змінити службу" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" +" systemctl {arg!s} виклик у chroot повернув код помилки {num! " +"s}." + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "Неможливо ввімкнути службу systemd {name!s}." + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "Неможливо ввімкнути завдання systemd {name!s}." + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "Неможливо вимкнути завдання systemd {name!s}." + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "Неможливо маскувати вузол systemd {name!s}." + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" +"Невідомі команди systemd {command!s} та {suffix!s}" +" для пристрою {name!s}." + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "Відключити файлові системи." + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "Встановлення файлових систем." + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "rsync зазнав невдачі з кодом помилки {}." + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "Не вдалося розпакувати образ \"{}\"" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" +"Не вдалося знайти unsquashfs, переконайтеся, що встановлено пакет squashfs-" +"tools" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "Немає точки монтування для кореневого розділу" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "Помилка точки монтування для кореневого розділу" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "Неправильна конфігурація unsquash" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "Файлова система для \"{}\" ({}) не підтримується" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "Вихідна файлова система \"{}\" не існує" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "Призначення \"{}\" у цільовій системі не є каталогом" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" -msgstr "" +msgstr "Неможливо записати файл налаштування KDM" #: src/modules/displaymanager/main.py:381 msgid "KDM config file {!s} does not exist" -msgstr "" +msgstr "Файл налаштування KDM {!s} не існує" #: src/modules/displaymanager/main.py:442 msgid "Cannot write LXDM configuration file" -msgstr "" +msgstr "Неможливо записати файл конфігурації LXDM" #: src/modules/displaymanager/main.py:443 msgid "LXDM config file {!s} does not exist" -msgstr "" +msgstr "Файл налаштування LXDM {!s} не існує" #: src/modules/displaymanager/main.py:517 msgid "Cannot write LightDM configuration file" -msgstr "" +msgstr "Неможливо записати файл налаштування LightDM" #: src/modules/displaymanager/main.py:518 msgid "LightDM config file {!s} does not exist" -msgstr "" +msgstr "Файл налаштування LightDM {!s} не існує" #: src/modules/displaymanager/main.py:592 msgid "Cannot configure LightDM" -msgstr "" +msgstr "Неможливо налаштувати LightDM" #: src/modules/displaymanager/main.py:593 msgid "No LightDM greeter installed." @@ -55,11 +154,11 @@ msgstr "" #: src/modules/displaymanager/main.py:624 msgid "Cannot write SLIM configuration file" -msgstr "" +msgstr "Неможливо записати файл налаштування SLIM" #: src/modules/displaymanager/main.py:625 msgid "SLIM config file {!s} does not exist" -msgstr "" +msgstr "Файл налаштування SLIM {!s} не існує" #: src/modules/displaymanager/main.py:740 #: src/modules/displaymanager/main.py:772 @@ -80,74 +179,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -177,3 +260,15 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/ur/LC_MESSAGES/python.mo b/lang/python/ur/LC_MESSAGES/python.mo index 44f98c336..31761ef92 100644 Binary files a/lang/python/ur/LC_MESSAGES/python.mo and b/lang/python/ur/LC_MESSAGES/python.mo differ diff --git a/lang/python/ur/LC_MESSAGES/python.po b/lang/python/ur/LC_MESSAGES/python.po index b079cded6..f52967303 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Urdu (https://www.transifex.com/calamares/teams/20061/ur/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,98 @@ msgstr "" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -76,74 +168,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -169,3 +245,15 @@ msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "" msgstr[1] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/uz/LC_MESSAGES/python.mo b/lang/python/uz/LC_MESSAGES/python.mo index e736b2973..3c75289ee 100644 Binary files a/lang/python/uz/LC_MESSAGES/python.mo and b/lang/python/uz/LC_MESSAGES/python.mo differ diff --git a/lang/python/uz/LC_MESSAGES/python.po b/lang/python/uz/LC_MESSAGES/python.po index 6cd0764a2..55cc32a3c 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: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Uzbek (https://www.transifex.com/calamares/teams/20061/uz/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,98 @@ msgstr "" "Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -76,74 +168,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "" @@ -167,3 +243,15 @@ msgstr[0] "" msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" diff --git a/lang/python/zh_CN/LC_MESSAGES/python.mo b/lang/python/zh_CN/LC_MESSAGES/python.mo index e0754d34b..e20166ae4 100644 Binary files a/lang/python/zh_CN/LC_MESSAGES/python.mo and b/lang/python/zh_CN/LC_MESSAGES/python.mo differ diff --git a/lang/python/zh_CN/LC_MESSAGES/python.po b/lang/python/zh_CN/LC_MESSAGES/python.po index 19d5bbea6..79cddcec3 100644 --- a/lang/python/zh_CN/LC_MESSAGES/python.po +++ b/lang/python/zh_CN/LC_MESSAGES/python.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: leonfeng , 2018\n" "Language-Team: Chinese (China) (https://www.transifex.com/calamares/teams/20061/zh_CN/)\n" @@ -23,6 +23,98 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "卸载文件系统。" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "" @@ -82,74 +174,58 @@ msgstr "" msgid "Display manager configuration was incomplete" msgstr "" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "卸载文件系统。" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "占位 Python 任务。" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "占位 Python 步骤 {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "生成 machine-id。" @@ -173,3 +249,15 @@ msgstr[0] "安装%(num)d软件包。" msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "移除%(num)d软件包。" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "占位 Python 任务。" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "占位 Python 步骤 {}" diff --git a/lang/python/zh_TW/LC_MESSAGES/python.mo b/lang/python/zh_TW/LC_MESSAGES/python.mo index 9d4b69710..a00180044 100644 Binary files a/lang/python/zh_TW/LC_MESSAGES/python.mo and b/lang/python/zh_TW/LC_MESSAGES/python.mo differ diff --git a/lang/python/zh_TW/LC_MESSAGES/python.po b/lang/python/zh_TW/LC_MESSAGES/python.po index d2739c105..573ed2427 100644 --- a/lang/python/zh_TW/LC_MESSAGES/python.po +++ b/lang/python/zh_TW/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-25 08:04-0500\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Jeff Huang , 2019\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/calamares/teams/20061/zh_TW/)\n" @@ -21,6 +21,100 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: src/modules/services-systemd/main.py:35 +msgid "Configure systemd services" +msgstr "設定 systemd 服務" + +#: src/modules/services-systemd/main.py:68 +#: src/modules/services-openrc/main.py:102 +msgid "Cannot modify service" +msgstr "無法修改服務" + +#: src/modules/services-systemd/main.py:69 +msgid "" +"systemctl {arg!s} call in chroot returned error code {num!s}." +msgstr "在 chroot 中呼叫的 systemctl {arg!s} 回傳了錯誤代碼 {num!s}。" + +#: src/modules/services-systemd/main.py:72 +#: src/modules/services-systemd/main.py:76 +msgid "Cannot enable systemd service {name!s}." +msgstr "無法啟用 systemd 服務 {name!s}。" + +#: src/modules/services-systemd/main.py:74 +msgid "Cannot enable systemd target {name!s}." +msgstr "無法啟用 systemd 目標 {name!s}。" + +#: src/modules/services-systemd/main.py:78 +msgid "Cannot disable systemd target {name!s}." +msgstr "無法停用 systemd 目標 {name!s}。" + +#: src/modules/services-systemd/main.py:80 +msgid "Cannot mask systemd unit {name!s}." +msgstr "無法 mask systemd 單位 {name!s}。" + +#: src/modules/services-systemd/main.py:82 +msgid "" +"Unknown systemd commands {command!s} and " +"{suffix!s} for unit {name!s}." +msgstr "" +"未知的 systemd 指令 {command!s}{suffix!s} 給單位 " +"{name!s}。" + +#: src/modules/umount/main.py:40 +msgid "Unmount file systems." +msgstr "解除掛載檔案系統。" + +#: src/modules/unpackfs/main.py:40 +msgid "Installing filesystems." +msgstr "正在安裝檔案系統。" + +#: src/modules/unpackfs/main.py:153 +msgid "rsync failed with error code {}." +msgstr "rsync 失敗,錯誤碼 {} 。" + +#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 +msgid "Failed to unpack image \"{}\"" +msgstr "無法解開映像檔 \"{}\"" + +#: src/modules/unpackfs/main.py:210 +msgid "" +"Failed to find unsquashfs, make sure you have the squashfs-tools package " +"installed" +msgstr "找不到 unsquashfs,請確定您已安裝 squashfs-tools 軟體包" + +#: src/modules/unpackfs/main.py:301 +msgid "No mount point for root partition" +msgstr "沒有 root 分割區的掛載點" + +#: src/modules/unpackfs/main.py:302 +msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" +msgstr "globalstorage 不包含 \"rootMountPoint\" 鍵,不做任何事" + +#: src/modules/unpackfs/main.py:307 +msgid "Bad mount point for root partition" +msgstr "root 分割區掛載點錯誤" + +#: src/modules/unpackfs/main.py:308 +msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" +msgstr "rootMountPoint 為 \"{}\",其不存在,不做任何事" + +#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 +#: src/modules/unpackfs/main.py:333 +msgid "Bad unsquash configuration" +msgstr "錯誤的 unsquash 設定" + +#: src/modules/unpackfs/main.py:322 +msgid "The filesystem for \"{}\" ({}) is not supported" +msgstr "不支援 \"{}\" ({}) 的檔案系統" + +#: src/modules/unpackfs/main.py:329 +msgid "The source filesystem \"{}\" does not exist" +msgstr "來源檔案系統 \"{}\" 不存在" + +#: src/modules/unpackfs/main.py:334 +msgid "The destination \"{}\" in the target system is not a directory" +msgstr "目標系統中的目的地 \"{}\" 不是目錄" + #: src/modules/displaymanager/main.py:380 msgid "Cannot write KDM configuration file" msgstr "無法寫入 KDM 設定檔" @@ -80,74 +174,58 @@ msgstr "在檢查已安裝的顯示管理器後,清單為空。" msgid "Display manager configuration was incomplete" msgstr "顯示管理器設定不完整" -#: src/modules/unpackfs/main.py:40 -msgid "Installing filesystems." -msgstr "正在安裝檔案系統。" - -#: src/modules/unpackfs/main.py:153 -msgid "rsync failed with error code {}." -msgstr "rsync 失敗,錯誤碼 {} 。" - -#: src/modules/unpackfs/main.py:209 src/modules/unpackfs/main.py:227 -msgid "Failed to unpack image \"{}\"" -msgstr "無法解開映像檔 \"{}\"" - -#: src/modules/unpackfs/main.py:210 -msgid "" -"Failed to find unsquashfs, make sure you have the squashfs-tools package " -"installed" -msgstr "找不到 unsquashfs,請確定您已安裝 squashfs-tools 軟體包" - -#: src/modules/unpackfs/main.py:301 -msgid "No mount point for root partition" -msgstr "沒有 root 分割區的掛載點" - -#: src/modules/unpackfs/main.py:302 -msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -msgstr "globalstorage 不包含 \"rootMountPoint\" 鍵,不做任何事" - -#: src/modules/unpackfs/main.py:307 -msgid "Bad mount point for root partition" -msgstr "root 分割區掛載點錯誤" - -#: src/modules/unpackfs/main.py:308 -msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" -msgstr "rootMountPoint 為 \"{}\",其不存在,不做任何事" - -#: src/modules/unpackfs/main.py:321 src/modules/unpackfs/main.py:328 -#: src/modules/unpackfs/main.py:333 -msgid "Bad unsquash configuration" -msgstr "錯誤的 unsquash 設定" - -#: src/modules/unpackfs/main.py:322 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "不支援 \"{}\" ({}) 的檔案系統" - -#: src/modules/unpackfs/main.py:329 -msgid "The source filesystem \"{}\" does not exist" -msgstr "來源檔案系統 \"{}\" 不存在" - -#: src/modules/unpackfs/main.py:334 -msgid "The destination \"{}\" in the target system is not a directory" -msgstr "目標系統中的目的地 \"{}\" 不是目錄" - -#: src/modules/umount/main.py:40 -msgid "Unmount file systems." -msgstr "解除掛載檔案系統。" - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "假的 python 工作。" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "假的 python step {}" - #: src/modules/rawfs/main.py:35 msgid "Installing data." msgstr "正在安裝資料。" -#: src/modules/machineid/main.py:35 +#: src/modules/services-openrc/main.py:38 +msgid "Configure OpenRC services" +msgstr "設定 OpenRC 服務" + +#: src/modules/services-openrc/main.py:66 +msgid "Cannot add service {name!s} to run-level {level!s}." +msgstr "無法新增服務 {name!s} 到執行層級 {level!s}。" + +#: src/modules/services-openrc/main.py:68 +msgid "Cannot remove service {name!s} from run-level {level!s}." +msgstr "無法移除服務 {name!s} 從執行層級 {level!s}。" + +#: src/modules/services-openrc/main.py:70 +msgid "" +"Unknown service-action {arg!s} for service {name!s} in run-" +"level {level!s}." +msgstr "未知的服務動作 {arg!s} 給服務 {name!s} 在執行層級 {level!s}。" + +#: src/modules/services-openrc/main.py:103 +msgid "" +"rc-update {arg!s} call in chroot returned error code {num!s}." +msgstr "在 chroot 中呼叫的 rc-update {arg!s} 回傳了錯誤代碼 {num!s}。" + +#: src/modules/services-openrc/main.py:110 +msgid "Target runlevel does not exist" +msgstr "目標執行層級不存在" + +#: src/modules/services-openrc/main.py:111 +msgid "" +"The path for runlevel {level!s} is {path!s}, which does not " +"exist." +msgstr "執行層級 {level!s} 的路徑為 {path!s},不存在。" + +#: src/modules/services-openrc/main.py:119 +msgid "Target service does not exist" +msgstr "目標服務不存在" + +#: src/modules/services-openrc/main.py:120 +msgid "" +"The path for service {name!s} is {path!s}, which does not " +"exist." +msgstr "服務 {name!s} 的路徑為 {path!s},不存在。" + +#: src/modules/plymouthcfg/main.py:36 +msgid "Configure Plymouth theme" +msgstr "設定 Plymouth 主題" + +#: src/modules/machineid/main.py:36 msgid "Generate machine-id." msgstr "生成 machine-id。" @@ -171,3 +249,15 @@ msgstr[0] "正在安裝 %(num)d 軟體包。" msgid "Removing one package." msgid_plural "Removing %(num)d packages." msgstr[0] "正在移除 %(num)d 軟體包。" + +#: src/modules/removeuser/main.py:34 +msgid "Remove live user from target system" +msgstr "從目標系統移除 live 使用者" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "假的 python 工作。" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "假的 python step {}" diff --git a/src/calamares/CalamaresApplication.cpp b/src/calamares/CalamaresApplication.cpp index c9a171fd2..989290567 100644 --- a/src/calamares/CalamaresApplication.cpp +++ b/src/calamares/CalamaresApplication.cpp @@ -263,7 +263,12 @@ CalamaresApplication::initSettings() ::exit( EXIT_FAILURE ); } - new Calamares::Settings( settingsFile.absoluteFilePath(), isDebug(), this ); + auto* settings = new Calamares::Settings( settingsFile.absoluteFilePath(), isDebug(), this ); // Creates singleton + if ( settings->modulesSequence().count() < 1 ) + { + cError() << "FATAL: no sequence set."; + ::exit( EXIT_FAILURE ); + } } diff --git a/src/calamares/main.cpp b/src/calamares/main.cpp index b84d4f4db..e2b5da8bf 100644 --- a/src/calamares/main.cpp +++ b/src/calamares/main.cpp @@ -114,6 +114,7 @@ main( int argc, char* argv[] ) } else { + // Here we have not yet set-up the logger system, so qDebug() is ok auto instancelist = guard.instances(); qDebug() << "Calamares is already running, shutting down."; if ( instancelist.count() > 0 ) diff --git a/src/libcalamares/CMakeLists.txt b/src/libcalamares/CMakeLists.txt index 4bf78176e..aeea34470 100644 --- a/src/libcalamares/CMakeLists.txt +++ b/src/libcalamares/CMakeLists.txt @@ -16,6 +16,7 @@ set( libSources CppJob.cpp GlobalStorage.cpp Job.cpp + JobExample.cpp JobQueue.cpp ProcessJob.cpp Settings.cpp diff --git a/src/libcalamares/JobExample.cpp b/src/libcalamares/JobExample.cpp new file mode 100644 index 000000000..83259ae6d --- /dev/null +++ b/src/libcalamares/JobExample.cpp @@ -0,0 +1,42 @@ +/* === This file is part of Calamares - === + * + * Copyright 2019, Adriaan de Groot + * + * Calamares is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * Calamares is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Calamares. If not, see . + */ + +#include "JobExample.h" + +namespace Calamares +{ + +QString +NamedJob::prettyName() const +{ + return tr( "Example job (%1)" ).arg( m_name ); +} + +JobResult +GoodJob::exec() +{ + return JobResult::ok(); +} + +JobResult +FailJob::exec() +{ + return JobResult::error( tr( "Job failed (%1)" ).arg( m_name ), tr( "Programmed job failure was explicitly requested." ) ); +} + +} // namespace diff --git a/src/libcalamares/JobExample.h b/src/libcalamares/JobExample.h new file mode 100644 index 000000000..fd5eea109 --- /dev/null +++ b/src/libcalamares/JobExample.h @@ -0,0 +1,73 @@ +/* === This file is part of Calamares - === + * + * Copyright 2019, Adriaan de Groot + * + * Calamares is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * Calamares is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Calamares. If not, see . + */ + +#ifndef CALAMARES_JOB_EXAMPLE_H +#define CALAMARES_JOB_EXAMPLE_H + +#include "Job.h" + +namespace Calamares { + +/** @brief A Job with a name + * + * This includes a default implementation of prettyName(), + * but is only used as a base for FailJob and GoodJob, + * which are support / bogus classes. + */ +class DLLEXPORT NamedJob : public Job +{ +public: + explicit NamedJob( const QString& name, QObject* parent = nullptr ) + : Job( parent ) + , m_name( name ) + { + } + + virtual QString prettyName() const override; +protected: + const QString m_name; +} ; + +/// @brief Job does nothing, always succeeds +class DLLEXPORT GoodJob : public NamedJob +{ +public: + explicit GoodJob( const QString& name, QObject* parent = nullptr ) + : NamedJob( name, parent ) + { + } + + virtual JobResult exec() override; +} ; + + +/// @brief Job does nothing, always fails +class DLLEXPORT FailJob : public NamedJob +{ +public: + explicit FailJob( const QString& name, QObject* parent = nullptr ) + : NamedJob( name, parent ) + { + } + + virtual JobResult exec() override; +} ; + +} // namespace Calamares + +#endif // CALAMARES_JOB_EXAMPLE_H diff --git a/src/libcalamares/Settings.cpp b/src/libcalamares/Settings.cpp index 3a00399f4..9bedbbe41 100644 --- a/src/libcalamares/Settings.cpp +++ b/src/libcalamares/Settings.cpp @@ -74,6 +74,112 @@ Settings::instance() return s_instance; } +static void +interpretModulesSearch( const bool debugMode, const QStringList& rawPaths, QStringList& output ) +{ + for ( const auto& path : rawPaths ) + { + if ( path == "local" ) + { + cDebug() << "module-search local"; + + // If we're running in debug mode, we assume we might also be + // running from the build dir, so we add a maximum priority + // module search path in the build dir. + if ( debugMode ) + { + QString buildDirModules = QDir::current().absolutePath() + + QDir::separator() + "src" + + QDir::separator() + "modules"; + if ( QDir( buildDirModules ).exists() ) + output.append( buildDirModules ); + } + + // Install path is set in CalamaresAddPlugin.cmake + output.append( CalamaresUtils::systemLibDir().absolutePath() + + QDir::separator() + "calamares" + + QDir::separator() + "modules" ); + } + else + { + QDir d( path ); + if ( d.exists() && d.isReadable() ) + { + cDebug() << "module-search exists" << d.absolutePath(); + output.append( d.absolutePath() ); + } + else + cDebug() << "module-search non-existent" << path; + } + } +} + +static void +interpretInstances( const YAML::Node& node, Settings::InstanceDescriptionList& customInstances ) +{ + // Parse the custom instances section + if ( node ) + { + QVariant instancesV = CalamaresUtils::yamlToVariant( node ).toList(); + if ( instancesV.type() == QVariant::List ) + { + const auto instances = instancesV.toList(); + for ( const QVariant& instancesVListItem : instances ) + { + if ( instancesVListItem.type() != QVariant::Map ) + continue; + QVariantMap instancesVListItemMap = + instancesVListItem.toMap(); + Settings::InstanceDescription instanceMap; + for ( auto it = instancesVListItemMap.constBegin(); + it != instancesVListItemMap.constEnd(); ++it ) + { + if ( it.value().type() != QVariant::String ) + continue; + instanceMap.insert( it.key(), it.value().toString() ); + } + customInstances.append( instanceMap ); + } + } + } +} + +static void +interpretSequence( const YAML::Node& node, Settings::ModuleSequence& moduleSequence ) +{ + // Parse the modules sequence section + if ( node ) + { + QVariant sequenceV = CalamaresUtils::yamlToVariant( node ); + if ( !( sequenceV.type() == QVariant::List ) ) + throw YAML::Exception( YAML::Mark(), "sequence key does not have a list-value" ); + + const auto sequence = sequenceV.toList(); + for ( const QVariant& sequenceVListItem : sequence ) + { + if ( sequenceVListItem.type() != QVariant::Map ) + continue; + QString thisActionS = sequenceVListItem.toMap().firstKey(); + ModuleAction thisAction; + if ( thisActionS == "show" ) + thisAction = ModuleAction::Show; + else if ( thisActionS == "exec" ) + thisAction = ModuleAction::Exec; + else + continue; + + QStringList thisActionRoster = sequenceVListItem + .toMap() + .value( thisActionS ) + .toStringList(); + moduleSequence.append( qMakePair( thisAction, + thisActionRoster ) ); + } + } + else + throw YAML::Exception( YAML::Mark(), "sequence key is missing" ); +} + Settings::Settings( const QString& settingsFilePath, bool debugMode, QObject* parent ) @@ -94,92 +200,9 @@ Settings::Settings( const QString& settingsFilePath, YAML::Node config = YAML::Load( ba.constData() ); Q_ASSERT( config.IsMap() ); - QStringList rawPaths; - config[ "modules-search" ] >> rawPaths; - for ( int i = 0; i < rawPaths.length(); ++i ) - { - if ( rawPaths[ i ] == "local" ) - { - // If we're running in debug mode, we assume we might also be - // running from the build dir, so we add a maximum priority - // module search path in the build dir. - if ( debugMode ) - { - QString buildDirModules = QDir::current().absolutePath() + - QDir::separator() + "src" + - QDir::separator() + "modules"; - if ( QDir( buildDirModules ).exists() ) - m_modulesSearchPaths.append( buildDirModules ); - } - - // Install path is set in CalamaresAddPlugin.cmake - m_modulesSearchPaths.append( CalamaresUtils::systemLibDir().absolutePath() + - QDir::separator() + "calamares" + - QDir::separator() + "modules" ); - } - else - { - QDir path( rawPaths[ i ] ); - if ( path.exists() && path.isReadable() ) - m_modulesSearchPaths.append( path.absolutePath() ); - } - } - - // Parse the custom instances section - if ( config[ "instances" ] ) - { - QVariant instancesV - = CalamaresUtils::yamlToVariant( config[ "instances" ] ).toList(); - if ( instancesV.type() == QVariant::List ) - { - const auto instances = instancesV.toList(); - for ( const QVariant& instancesVListItem : instances ) - { - if ( instancesVListItem.type() != QVariant::Map ) - continue; - QVariantMap instancesVListItemMap = - instancesVListItem.toMap(); - QMap< QString, QString > instanceMap; - for ( auto it = instancesVListItemMap.constBegin(); - it != instancesVListItemMap.constEnd(); ++it ) - { - if ( it.value().type() != QVariant::String ) - continue; - instanceMap.insert( it.key(), it.value().toString() ); - } - m_customModuleInstances.append( instanceMap ); - } - } - } - - // Parse the modules sequence section - Q_ASSERT( config[ "sequence" ] ); // It better exist! - { - QVariant sequenceV - = CalamaresUtils::yamlToVariant( config[ "sequence" ] ); - Q_ASSERT( sequenceV.type() == QVariant::List ); - const auto sequence = sequenceV.toList(); - for ( const QVariant& sequenceVListItem : sequence ) - { - if ( sequenceVListItem.type() != QVariant::Map ) - continue; - QString thisActionS = sequenceVListItem.toMap().firstKey(); - ModuleAction thisAction; - if ( thisActionS == "show" ) - thisAction = ModuleAction::Show; - else if ( thisActionS == "exec" ) - thisAction = ModuleAction::Exec; - else - continue; - - QStringList thisActionRoster = sequenceVListItem - .toMap() - .value( thisActionS ) - .toStringList(); - m_modulesSequence.append( qMakePair( thisAction, - thisActionRoster ) ); - } - } + interpretModulesSearch( debugMode, CalamaresUtils::yamlToStringList( config[ "modules-search" ] ), m_modulesSearchPaths ); + interpretInstances( config[ "instances" ], m_customModuleInstances ); + interpretSequence( config[ "sequence" ], m_modulesSequence ); m_brandingComponentName = requireString( config, "branding" ); m_promptInstall = requireBool( config, "prompt-install", false ); diff --git a/src/libcalamares/utils/YamlUtils.cpp b/src/libcalamares/utils/YamlUtils.cpp index e7eb8fd46..b9b3425e6 100644 --- a/src/libcalamares/utils/YamlUtils.cpp +++ b/src/libcalamares/utils/YamlUtils.cpp @@ -109,6 +109,14 @@ yamlMapToVariant( const YAML::Node& mapNode ) return vm; } +QStringList +yamlToStringList(const YAML::Node& listNode) +{ + QStringList l; + listNode >> l; + return l; +} + void explainYamlException( const YAML::Exception& e, const QByteArray& yamlData, const char *label ) diff --git a/src/libcalamares/utils/YamlUtils.h b/src/libcalamares/utils/YamlUtils.h index 49c8d6613..0fa48e270 100644 --- a/src/libcalamares/utils/YamlUtils.h +++ b/src/libcalamares/utils/YamlUtils.h @@ -32,6 +32,7 @@ class Node; class Exception; } +/// @brief Appends all te elements of @p node to the string list @p v void operator>>( const YAML::Node& node, QStringList& v ); namespace CalamaresUtils @@ -51,6 +52,9 @@ QVariant yamlScalarToVariant( const YAML::Node& scalarNode ); QVariant yamlSequenceToVariant( const YAML::Node& sequenceNode ); QVariant yamlMapToVariant( const YAML::Node& mapNode ); +/// @brief Returns all the elements of @p listNode in a StringList +QStringList yamlToStringList( const YAML::Node& listNode ); + /// @brief Save a @p map to @p filename as YAML bool saveYaml( const QString& filename, const QVariantMap& map ); diff --git a/src/libcalamaresui/modulesystem/Module.cpp b/src/libcalamaresui/modulesystem/Module.cpp index 20e0517ea..73a026fb9 100644 --- a/src/libcalamaresui/modulesystem/Module.cpp +++ b/src/libcalamaresui/modulesystem/Module.cpp @@ -169,7 +169,8 @@ moduleConfigurationCandidates( bool assumeBuildDir, const QString& moduleName, c void Module::loadConfigurationFile( const QString& configFileName ) //throws YAML::Exception { - foreach ( const QString& path, moduleConfigurationCandidates( Settings::instance()->debugMode(), m_name, configFileName ) ) + QStringList configCandidates = moduleConfigurationCandidates( Settings::instance()->debugMode(), m_name, configFileName ); + for ( const QString& path : configCandidates ) { QFile configFile( path ); if ( configFile.exists() && configFile.open( QFile::ReadOnly | QFile::Text ) ) @@ -198,6 +199,7 @@ Module::loadConfigurationFile( const QString& configFileName ) //throws YAML::Ex return; } } + cDebug() << "No config file found in" << Logger::DebugList( configCandidates ); } diff --git a/src/libcalamaresui/modulesystem/ModuleManager.cpp b/src/libcalamaresui/modulesystem/ModuleManager.cpp index d3705729c..b8dbc4ded 100644 --- a/src/libcalamaresui/modulesystem/ModuleManager.cpp +++ b/src/libcalamaresui/modulesystem/ModuleManager.cpp @@ -325,36 +325,47 @@ ModuleManager::checkRequirements() QTimer::singleShot( 0, rq, &RequirementsChecker::run ); } +static QStringList +missingRequiredModules( const QStringList& required, const QMap< QString, QVariantMap >& available ) +{ + QStringList l; + for( const QString& depName : required ) + { + if ( !available.contains( depName ) ) + l.append( depName ); + } + + return l; +} + QStringList ModuleManager::checkDependencies() { QStringList failed; + bool somethingWasRemovedBecauseOfUnmetDependencies = false; // This goes through the map of available modules, and deletes those whose // dependencies are not met, if any. - forever + do { - bool somethingWasRemovedBecauseOfUnmetDependencies = false; + somethingWasRemovedBecauseOfUnmetDependencies = false; for ( auto it = m_availableDescriptorsByModuleName.begin(); it != m_availableDescriptorsByModuleName.end(); ++it ) { - foreach ( const QString& depName, - it->value( "requiredModules" ).toStringList() ) + QStringList unmet = missingRequiredModules( it->value( "requiredModules" ).toStringList(), m_availableDescriptorsByModuleName ); + + if ( unmet.count() > 0 ) { - if ( !m_availableDescriptorsByModuleName.contains( depName ) ) - { - QString moduleName = it->value( "name" ).toString(); - somethingWasRemovedBecauseOfUnmetDependencies = true; - m_availableDescriptorsByModuleName.erase( it ); - failed << moduleName; - cWarning() << "Module" << moduleName << "has unknown requirement" << depName; - break; - } + QString moduleName = it->value( "name" ).toString(); + somethingWasRemovedBecauseOfUnmetDependencies = true; + m_availableDescriptorsByModuleName.erase( it ); + failed << moduleName; + cWarning() << "Module" << moduleName << "has unknown requirements" << Logger::DebugList( unmet ); + break; } } - if ( !somethingWasRemovedBecauseOfUnmetDependencies ) - break; } + while( somethingWasRemovedBecauseOfUnmetDependencies ); return failed; } diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo index 9ccb135d0..96b7a6c53 100644 Binary files a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.mo index 5124611ad..bbe53ce95 100644 Binary files a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po index 302c02138..1807e45d6 100644 --- a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-05 11:34-0400\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2016-12-16 12:18+0000\n" "Last-Translator: enolp , 2019\n" "Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n" @@ -23,7 +23,7 @@ msgstr "" #: src/modules/dummypythonqt/main.py:84 msgid "Click me!" -msgstr "¡Fai clic en min!" +msgstr "¡Cálcame!" #: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." @@ -31,7 +31,7 @@ msgstr "Una QLabel nueva." #: src/modules/dummypythonqt/main.py:97 msgid "Dummy PythonQt ViewStep" -msgstr "ViewStep maniquín en PythonQT" +msgstr "ViewStep maniquín en PythonQt" #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" diff --git a/src/modules/dummypythonqt/lang/be/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/be/LC_MESSAGES/dummypythonqt.mo index ddc1a847d..42cb16abd 100644 Binary files a/src/modules/dummypythonqt/lang/be/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/be/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo index 873438017..cbd832bc7 100644 Binary files a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.mo index f9596b35b..11a10df01 100644 Binary files a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.mo index d2ca436f9..c83734ac0 100644 Binary files a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po index e924c1a19..44cd1e2d4 100644 --- a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po @@ -4,17 +4,17 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Pavel Borecki , 2016 # pavelrz, 2017 +# Pavel Borecki , 2017 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-05 11:34-0400\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2016-12-16 12:18+0000\n" -"Last-Translator: pavelrz, 2017\n" +"Last-Translator: Pavel Borecki , 2017\n" "Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.mo index 94bb4dae2..1e836027f 100644 Binary files a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.mo index 556e64148..9af7a6614 100644 Binary files a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo index cdabf4845..6f98c92cc 100644 Binary files a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo index 40a82aef9..283b865e9 100644 Binary files a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/eo/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/eo/LC_MESSAGES/dummypythonqt.mo index e71aee738..ad243b6ea 100644 Binary files a/src/modules/dummypythonqt/lang/eo/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/eo/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.mo index f7cb16927..5fcc8a7de 100644 Binary files a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo index c889150e9..54ca84802 100644 Binary files a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo index e76441bc0..db7159023 100644 Binary files a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo index c9ea836f1..23c604896 100644 Binary files a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo index d508e3fac..43448bf58 100644 Binary files a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo index e6c1e3190..248498cd7 100644 Binary files a/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/fi_FI/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fi_FI/LC_MESSAGES/dummypythonqt.mo index 1c7d5ad90..0abcc094b 100644 Binary files a/src/modules/dummypythonqt/lang/fi_FI/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/fi_FI/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.mo index c309c24d6..b8d951621 100644 Binary files a/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.mo index c3782e3f4..17561fc31 100644 Binary files a/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.mo index 4c0dd67a1..33cbe602c 100644 Binary files a/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.mo index aba86e2de..bd8794f5a 100644 Binary files a/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.mo index cdfdba9ba..e6061d7c4 100644 Binary files a/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.mo index 61657cb93..9c22e2c82 100644 Binary files a/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.mo index ef5e42a4b..6d12c7ddc 100644 Binary files a/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.mo index 1933ef067..afc284949 100644 Binary files a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo index 0edd3cef9..75365c3b7 100644 Binary files a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.mo index 3c7bc94ed..b2f98c8d3 100644 Binary files a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.mo index 8fe24cb46..c1989cc8f 100644 Binary files a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po index 6571d9600..211f9d9c2 100644 --- a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po @@ -5,16 +5,16 @@ # # Translators: # Teo Mrnjavac , 2016 -# Saverio , 2017 +# Saverio , 2018 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-05 11:34-0400\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2016-12-16 12:18+0000\n" -"Last-Translator: Saverio , 2017\n" +"Last-Translator: Saverio , 2018\n" "Language-Team: Italian (Italy) (https://www.transifex.com/calamares/teams/20061/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.mo index cb00c43e1..4d131a0f8 100644 Binary files a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo index 00ba46d57..bd70c8130 100644 Binary files a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/kn/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/kn/LC_MESSAGES/dummypythonqt.mo index 41f40a27f..fa0c9819a 100644 Binary files a/src/modules/dummypythonqt/lang/kn/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/kn/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/ko/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ko/LC_MESSAGES/dummypythonqt.mo index 35e93945c..7be7f0dbe 100644 Binary files a/src/modules/dummypythonqt/lang/ko/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/ko/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo index be4ede841..61b880bb7 100644 Binary files a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.mo index 29a53e88f..c42841514 100644 Binary files a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/mk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/mk/LC_MESSAGES/dummypythonqt.mo index aae5bd9b4..bad77684e 100644 Binary files a/src/modules/dummypythonqt/lang/mk/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/mk/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo index 4d9a9a465..48aca7e96 100644 Binary files a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo index 6acbaa8e7..549cfa6b5 100644 Binary files a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/ne_NP/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ne_NP/LC_MESSAGES/dummypythonqt.mo index 4cb50b709..020b2e549 100644 Binary files a/src/modules/dummypythonqt/lang/ne_NP/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/ne_NP/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo index da35d2a8f..95b99b007 100644 Binary files a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.mo index 86110030f..a0bf42817 100644 Binary files a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.mo index ceeae4a47..dad5673f1 100644 Binary files a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po index d9e48307e..53a05e9ec 100644 --- a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po @@ -5,16 +5,16 @@ # # Translators: # Rodrigo de Almeida Sottomaior Macedo , 2017 -# Guilherme , 2017 +# Guilherme , 2018 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-05 11:34-0400\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2016-12-16 12:18+0000\n" -"Last-Translator: Guilherme , 2017\n" +"Last-Translator: Guilherme , 2018\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.mo index 6d2427599..3845d3070 100644 Binary files a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo index b5e4e08c9..b07421664 100644 Binary files a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.mo index 0d66aff97..931086b0d 100644 Binary files a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.mo index 883535298..db7fccbbf 100644 Binary files a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo index 3e9821ff9..763803202 100644 Binary files a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/sq/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sq/LC_MESSAGES/dummypythonqt.mo index 8aaa74869..8234ab079 100644 Binary files a/src/modules/dummypythonqt/lang/sq/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/sq/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.mo index a673ba66a..225f823ef 100644 Binary files a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo index 6a98ee26c..9f59500bd 100644 Binary files a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po index 40910a601..b3e4fe47b 100644 --- a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-05 11:34-0400\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2016-12-16 12:18+0000\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/calamares/teams/20061/sr%40latin/)\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/calamares/teams/20061/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo index eba7d1ec3..e22988320 100644 Binary files a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo index f9559ce2a..502e4d130 100644 Binary files a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.mo index c1132dd92..9e62f7154 100644 Binary files a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo index 910904b35..ca6b6c8da 100644 Binary files a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po index c87f3d6ab..0c7aa3d85 100644 --- a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po @@ -3,13 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # +# Translators: +# Paul S , 2019 +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-05 11:34-0400\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2016-12-16 12:18+0000\n" +"Last-Translator: Paul S , 2019\n" "Language-Team: Ukrainian (https://www.transifex.com/calamares/teams/20061/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,11 +23,11 @@ msgstr "" #: src/modules/dummypythonqt/main.py:84 msgid "Click me!" -msgstr "" +msgstr "Тицьни в мене!" #: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." -msgstr "" +msgstr "Новий QLabel" #: src/modules/dummypythonqt/main.py:97 msgid "Dummy PythonQt ViewStep" diff --git a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo index 2c766300c..e7588670d 100644 Binary files a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.mo index f0a2236b7..4e1a2c34a 100644 Binary files a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.mo index df5b3c79d..61ec39334 100644 Binary files a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po index 4e2ae2087..d7baa50f2 100644 --- a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po @@ -4,17 +4,17 @@ # FIRST AUTHOR , YEAR. # # Translators: -# soenggam , 2017 # Mingcong Bai , 2017 +# soenggam , 2018 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-05 11:34-0400\n" +"POT-Creation-Date: 2019-02-22 07:09-0500\n" "PO-Revision-Date: 2016-12-16 12:18+0000\n" -"Last-Translator: Mingcong Bai , 2017\n" +"Last-Translator: soenggam , 2018\n" "Language-Team: Chinese (China) (https://www.transifex.com/calamares/teams/20061/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.mo index 02789a1ed..43817982d 100644 Binary files a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/fsresizer/CMakeLists.txt b/src/modules/fsresizer/CMakeLists.txt index e339b2799..12349c835 100644 --- a/src/modules/fsresizer/CMakeLists.txt +++ b/src/modules/fsresizer/CMakeLists.txt @@ -6,6 +6,10 @@ if ( KPMcore_FOUND ) include_directories( ${KPMCORE_INCLUDE_DIR} ) include_directories( ${PROJECT_BINARY_DIR}/src/libcalamares ) + if ( KPMcore_VERSION VERSION_GREATER "3.3.0") + add_definitions(-DWITH_KPMCOREGT33) # kpmcore greater than 3.3 + endif() + # The PartitionIterator is a small class, and it's easiest -- but also a # gross hack -- to just compile it again from the partition module tree. calamares_add_plugin( fsresizer diff --git a/src/modules/fsresizer/ResizeFSJob.cpp b/src/modules/fsresizer/ResizeFSJob.cpp index 2ce9eba70..fa197e476 100644 --- a/src/modules/fsresizer/ResizeFSJob.cpp +++ b/src/modules/fsresizer/ResizeFSJob.cpp @@ -120,7 +120,12 @@ ResizeFSJob::PartitionMatch ResizeFSJob::findPartition( CoreBackend* backend ) { using DeviceList = QList< Device* >; - DeviceList devices = backend->scanDevices( false ); +#ifdef WITH_KPMCOREGT33 + DeviceList devices = backend->scanDevices( /* not includeReadOnly, not includeLoopback */ ScanFlag(0) ); +#else + DeviceList devices = backend->scanDevices( /* excludeReadOnly */ true ); +#endif + cDebug() << "ResizeFSJob found" << devices.count() << "devices."; for ( DeviceList::iterator dev_it = devices.begin(); dev_it != devices.end(); ++dev_it ) { diff --git a/src/modules/keyboard/keyboardwidget/keyboardglobal.cpp b/src/modules/keyboard/keyboardwidget/keyboardglobal.cpp index 55132826e..8b6cac4be 100644 --- a/src/modules/keyboard/keyboardwidget/keyboardglobal.cpp +++ b/src/modules/keyboard/keyboardwidget/keyboardglobal.cpp @@ -22,6 +22,8 @@ #include "keyboardglobal.h" +#include "utils/Logger.h" + //### //### Public methods //### @@ -52,7 +54,7 @@ QMap KeyboardGlobal::parseKeyboardModels(QString filepath) fh.open(QIODevice::ReadOnly); if (!fh.isOpen()) { - qDebug() << "X11 Keyboard model definitions not found!"; + cDebug() << "X11 Keyboard model definitions not found!"; return models; } @@ -100,7 +102,7 @@ QMap< QString, KeyboardGlobal::KeyboardInfo > KeyboardGlobal::parseKeyboardLayou fh.open(QIODevice::ReadOnly); if (!fh.isOpen()) { - qDebug() << "X11 Keyboard layout definitions not found!"; + cDebug() << "X11 Keyboard layout definitions not found!"; return layouts; } diff --git a/src/modules/locale/CMakeLists.txt b/src/modules/locale/CMakeLists.txt index b70c6d1ab..8faf8468c 100644 --- a/src/modules/locale/CMakeLists.txt +++ b/src/modules/locale/CMakeLists.txt @@ -1,8 +1,10 @@ # When debugging the timezone widget, add this debugging definition # to have a debugging-friendly timezone widget, debug logging, # and no intrusive timezone-setting while clicking around. -# -# add_definitions( -DDEBUG_TIMEZONES ) +option( DEBUG_TIMEZONES "Debug-friendly timezone widget." OFF ) +if( DEBUG_TIMEZONES ) + add_definitions( -DDEBUG_TIMEZONES ) +endif() include_directories( ${PROJECT_BINARY_DIR}/src/libcalamaresui ) diff --git a/src/modules/partition/CMakeLists.txt b/src/modules/partition/CMakeLists.txt index b9b2109a3..56520845e 100644 --- a/src/modules/partition/CMakeLists.txt +++ b/src/modules/partition/CMakeLists.txt @@ -1,3 +1,18 @@ +# When debugging the partitioning widget, or experimenting, you may +# want to allow unsafe partitioning choices (e.g. doing things to the +# current disk). Set DEBUG_PARTITION_UNSAFE to allow that (it turns off +# some filtering of devices). +option( DEBUG_PARTITION_UNSAFE "Allow unsafe partitioning choices." OFF ) +option( DEBUG_PARTITION_LAME "Unsafe partitioning will error out on exec." ON ) + +set( _partition_defs ) +if( DEBUG_PARTITION_UNSAFE ) + if( DEBUG_PARTITION_LAME ) + list( APPEND _partition_defs DEBUG_PARTITION_LAME ) + endif() + list( APPEND _partition_defs DEBUG_PARTITION_UNSAFE ) +endif() + find_package(ECM ${ECM_VERSION} REQUIRED NO_MODULE) include(KDEInstallDirs) @@ -84,6 +99,7 @@ if ( KPMcore_FOUND ) kpmcore calamaresui KF5::CoreAddons + COMPILE_DEFINITIONS ${_partition_defs} SHARED_LIB ) else() diff --git a/src/modules/partition/core/BootLoaderModel.cpp b/src/modules/partition/core/BootLoaderModel.cpp index e10a7c930..f0661d8b0 100644 --- a/src/modules/partition/core/BootLoaderModel.cpp +++ b/src/modules/partition/core/BootLoaderModel.cpp @@ -67,6 +67,8 @@ BootLoaderModel::createMbrItems() void BootLoaderModel::update() { + beginResetModel(); + blockSignals( true ); clear(); createMbrItems(); @@ -111,6 +113,8 @@ BootLoaderModel::update() createBootLoaderItem( tr( "Do not install a boot loader" ), QString(), false ) ); } + blockSignals( false ); + endResetModel(); } @@ -119,12 +123,12 @@ BootLoaderModel::data( const QModelIndex& index, int role ) const { if ( role == Qt::DisplayRole ) { - if ( QStandardItemModel::data( index, BootLoaderModel::BootLoaderPathRole ).toString().isEmpty() ) - return QStandardItemModel::data( index, Qt::DisplayRole ).toString(); + QString displayRole = QStandardItemModel::data( index, Qt::DisplayRole ).toString(); + QString pathRole = QStandardItemModel::data( index, BootLoaderModel::BootLoaderPathRole ).toString(); + if ( pathRole.isEmpty() ) + return displayRole; - return tr( "%1 (%2)" ) - .arg( QStandardItemModel::data( index, Qt::DisplayRole ).toString() ) - .arg( QStandardItemModel::data( index, BootLoaderModel::BootLoaderPathRole ).toString() ); + return tr( "%1 (%2)" ).arg( displayRole, pathRole ); } return QStandardItemModel::data( index, role ); } diff --git a/src/modules/partition/core/DeviceList.cpp b/src/modules/partition/core/DeviceList.cpp index f51eec047..858bb5c73 100644 --- a/src/modules/partition/core/DeviceList.cpp +++ b/src/modules/partition/core/DeviceList.cpp @@ -107,8 +107,18 @@ QList< Device* > getDevices( DeviceType which, qint64 minimumSize ) bool writableOnly = (which == DeviceType::WritableOnly); CoreBackend* backend = CoreBackendManager::self()->backend(); - DeviceList devices = backend->scanDevices( true ); +#ifdef WITH_KPMCOREGT33 + DeviceList devices = backend->scanDevices( /* not includeReadOnly, not includeLoopback */ ScanFlag(0) ); +#else + DeviceList devices = backend->scanDevices( /* excludeReadOnly */ true ); +#endif +#ifdef DEBUG_PARTITION_UNSAFE + cWarning() << "Allowing unsafe partitioning choices." << devices.count() << "candidates."; +#ifdef DEBUG_PARTITION_LAME + cDebug() << ".. it has been lamed, and will fail."; +#endif +#else cDebug() << "Removing unsuitable devices:" << devices.count() << "candidates."; // Remove the device which contains / from the list @@ -142,6 +152,7 @@ QList< Device* > getDevices( DeviceType which, qint64 minimumSize ) } else ++it; +#endif return devices; } diff --git a/src/modules/partition/core/KPMHelpers.cpp b/src/modules/partition/core/KPMHelpers.cpp index f8be44345..3c0a55987 100644 --- a/src/modules/partition/core/KPMHelpers.cpp +++ b/src/modules/partition/core/KPMHelpers.cpp @@ -67,7 +67,7 @@ isPartitionFreeSpace( Partition* partition ) bool isPartitionNew( Partition* partition ) { - return partition->state() == Partition::StateNew; + return partition->state() == KPM_PARTITION_STATE(New); } @@ -127,11 +127,11 @@ createNewPartition( PartitionNode* parent, role, fs, fs->firstSector(), fs->lastSector(), QString() /* path */, - PartitionTable::FlagNone /* availableFlags */, + KPM_PARTITION_FLAG(None) /* availableFlags */, QString() /* mountPoint */, false /* mounted */, flags /* activeFlags */, - Partition::StateNew + KPM_PARTITION_STATE(New) ); } @@ -169,11 +169,11 @@ createNewEncryptedPartition( PartitionNode* parent, PartitionRole( newRoles ), fs, fs->firstSector(), fs->lastSector(), QString() /* path */, - PartitionTable::FlagNone /* availableFlags */, + KPM_PARTITION_FLAG(None) /* availableFlags */, QString() /* mountPoint */, false /* mounted */, flags /* activeFlags */, - Partition::StateNew ); + KPM_PARTITION_STATE(New) ); return p; } diff --git a/src/modules/partition/core/KPMHelpers.h b/src/modules/partition/core/KPMHelpers.h index 0bcc533fb..f1b8bd8a9 100644 --- a/src/modules/partition/core/KPMHelpers.h +++ b/src/modules/partition/core/KPMHelpers.h @@ -33,6 +33,16 @@ class Partition; class PartitionNode; class PartitionRole; +#ifdef WITH_KPMCOREGT33 +#define KPM_PARTITION_FLAG(x) PartitionTable::Flag::x +#define KPM_PARTITION_STATE(x) Partition::State::x +#define KPM_PARTITION_FLAG_ESP PartitionTable::Flag::Boot +#else +#define KPM_PARTITION_FLAG(x) PartitionTable::Flag##x +#define KPM_PARTITION_STATE(x) Partition::State##x +#define KPM_PARTITION_FLAG_ESP PartitionTable::FlagEsp +#endif + /** * Helper functions to manipulate partitions */ diff --git a/src/modules/partition/core/PartUtils.cpp b/src/modules/partition/core/PartUtils.cpp index 5cf8101f9..a4738aa8c 100644 --- a/src/modules/partition/core/PartUtils.cpp +++ b/src/modules/partition/core/PartUtils.cpp @@ -43,7 +43,7 @@ namespace PartUtils { -static QString +QString convenienceName( const Partition* const candidate ) { if ( !candidate->mountPoint().isEmpty() ) @@ -407,7 +407,7 @@ isEfiBootable( const Partition* candidate ) auto flags = PartitionInfo::flags( candidate ); /* If bit 17 is set, old-style Esp flag, it's OK */ - if ( flags.testFlag( PartitionTable::FlagEsp ) ) + if ( flags.testFlag( KPM_PARTITION_FLAG_ESP ) ) return true; /* Otherwise, if it's a GPT table, Boot (bit 0) is the same as Esp */ @@ -425,7 +425,7 @@ isEfiBootable( const Partition* candidate ) const PartitionTable* table = dynamic_cast( root ); cDebug() << " .. partition table" << (void *)table << "type" << ( table ? table->type() : PartitionTable::TableType::unknownTableType ); return table && ( table->type() == PartitionTable::TableType::gpt ) && - flags.testFlag( PartitionTable::FlagBoot ); + flags.testFlag( KPM_PARTITION_FLAG(Boot) ); } QString diff --git a/src/modules/partition/core/PartUtils.h b/src/modules/partition/core/PartUtils.h index 0ad559a60..9b4efeec9 100644 --- a/src/modules/partition/core/PartUtils.h +++ b/src/modules/partition/core/PartUtils.h @@ -46,6 +46,15 @@ enum SizeUnit GiB }; +/** + * @brief Provides a nice human-readable name for @p candidate + * + * The most-specific human-readable name for the partition @p candidate + * is returned (e.g. device name, or partition path). In the worst + * case, a string representation of (void *)candidate is returned. + */ +QString convenienceName( const Partition* const candidate ); + /** * @brief canBeReplaced checks whether the given Partition satisfies the criteria * for replacing it with the new OS. diff --git a/src/modules/partition/core/PartitionActions.cpp b/src/modules/partition/core/PartitionActions.cpp index 4172002fa..074783186 100644 --- a/src/modules/partition/core/PartitionActions.cpp +++ b/src/modules/partition/core/PartitionActions.cpp @@ -129,11 +129,11 @@ doAutopartition( PartitionCoreModule* core, Device* dev, Choices::AutoPartitionO FileSystem::Fat32, firstFreeSector, lastSector, - PartitionTable::FlagNone + KPM_PARTITION_FLAG(None) ); PartitionInfo::setFormat( efiPartition, true ); PartitionInfo::setMountPoint( efiPartition, o.efiPartitionMountPoint ); - core->createPartition( dev, efiPartition, PartitionTable::FlagEsp ); + core->createPartition( dev, efiPartition, KPM_PARTITION_FLAG_ESP ); firstFreeSector = lastSector + 1; } else @@ -178,7 +178,7 @@ doAutopartition( PartitionCoreModule* core, Device* dev, Choices::AutoPartitionO FileSystem::LinuxSwap, lastSectorForRoot + 1, dev->totalLogical() - 1, - PartitionTable::FlagNone + KPM_PARTITION_FLAG(None) ); } else @@ -191,7 +191,7 @@ doAutopartition( PartitionCoreModule* core, Device* dev, Choices::AutoPartitionO lastSectorForRoot + 1, dev->totalLogical() - 1, o.luksPassphrase, - PartitionTable::FlagNone + KPM_PARTITION_FLAG(None) ); } PartitionInfo::setFormat( swapPartition, true ); diff --git a/src/modules/partition/core/PartitionCoreModule.cpp b/src/modules/partition/core/PartitionCoreModule.cpp index 07cb0fcfd..5d9b21bb0 100644 --- a/src/modules/partition/core/PartitionCoreModule.cpp +++ b/src/modules/partition/core/PartitionCoreModule.cpp @@ -45,6 +45,9 @@ #include "jobs/SetPartitionFlagsJob.h" #include "utils/CalamaresUtils.h" +#ifdef DEBUG_PARTITION_LAME +#include "JobExample.h" +#endif #include "Typedefs.h" #include "utils/Logger.h" @@ -296,7 +299,7 @@ PartitionCoreModule::createPartition( Device* device, deviceInfo->jobs << Calamares::job_ptr( job ); - if ( flags != PartitionTable::FlagNone ) + if ( flags != KPM_PARTITION_FLAG(None) ) { SetPartFlagsJob* fJob = new SetPartFlagsJob( device, partition, flags ); deviceInfo->jobs << Calamares::job_ptr( fJob ); @@ -398,7 +401,7 @@ PartitionCoreModule::deletePartition( Device* device, Partition* partition ) } QList< Calamares::job_ptr >& jobs = deviceInfo->jobs; - if ( partition->state() == Partition::StateNew ) + if ( partition->state() == KPM_PARTITION_STATE(New) ) { // First remove matching SetPartFlagsJobs for ( auto it = jobs.begin(); it != jobs.end(); ) @@ -497,6 +500,17 @@ PartitionCoreModule::jobs() const QList< Calamares::job_ptr > lst; QList< Device* > devices; +#ifdef DEBUG_PARTITION_UNSAFE +#ifdef DEBUG_PARTITION_LAME + cDebug() << "Unsafe partitioning is enabled."; + cDebug() << ".. it has been lamed, and will fail."; + lst << Calamares::job_ptr( new Calamares::FailJob( QStringLiteral( "Partition" ) ) ); +#else + cWarning() << "Unsafe partitioning is enabled."; + cWarning() << ".. the unsafe actions will be executed."; +#endif +#endif + lst << Calamares::job_ptr( new ClearTempMountsJob() ); for ( auto info : m_deviceInfos ) @@ -818,7 +832,7 @@ PartitionCoreModule::layoutApply( Device *dev, if ( part->mountPoint() == "/" ) { createPartition( dev, part, - part->activeFlags() | ( isEfi ? PartitionTable::FlagNone : PartitionTable::FlagBoot ) + part->activeFlags() | ( isEfi ? KPM_PARTITION_FLAG(None) : KPM_PARTITION_FLAG(Boot) ) ); } else diff --git a/src/modules/partition/core/PartitionCoreModule.h b/src/modules/partition/core/PartitionCoreModule.h index 743f9c178..dc0c5eff5 100644 --- a/src/modules/partition/core/PartitionCoreModule.h +++ b/src/modules/partition/core/PartitionCoreModule.h @@ -20,6 +20,7 @@ #ifndef PARTITIONCOREMODULE_H #define PARTITIONCOREMODULE_H +#include "core/KPMHelpers.h" #include "core/PartitionLayout.h" #include "core/PartitionModel.h" #include "Typedefs.h" @@ -136,7 +137,7 @@ public: * applied to the newly-created partition. */ void createPartition( Device* device, Partition* partition, - PartitionTable::Flags flags = PartitionTable::FlagNone ); + PartitionTable::Flags flags = KPM_PARTITION_FLAG(None) ); void createVolumeGroup( QString &vgName, QVector< const Partition* > pvList, qint32 peSize ); diff --git a/src/modules/partition/core/PartitionLayout.cpp b/src/modules/partition/core/PartitionLayout.cpp index 4f62db7d6..98095b9ed 100644 --- a/src/modules/partition/core/PartitionLayout.cpp +++ b/src/modules/partition/core/PartitionLayout.cpp @@ -143,7 +143,7 @@ PartitionLayout::execute( Device *dev, qint64 firstSector, part.partFileSystem, firstSector, end, - PartitionTable::FlagNone + KPM_PARTITION_FLAG(None) ); } else @@ -156,7 +156,7 @@ PartitionLayout::execute( Device *dev, qint64 firstSector, firstSector, end, luksPassphrase, - PartitionTable::FlagNone + KPM_PARTITION_FLAG(None) ); } PartitionInfo::setFormat( currentPartition, true ); diff --git a/src/modules/partition/gui/ChoicePage.cpp b/src/modules/partition/gui/ChoicePage.cpp index 9d86a32a1..446d26a89 100644 --- a/src/modules/partition/gui/ChoicePage.cpp +++ b/src/modules/partition/gui/ChoicePage.cpp @@ -1359,6 +1359,16 @@ ChoicePage::setupActions() ) } +#ifdef DEBUG_PARTITION_UNSAFE +#ifdef DEBUG_PARTITION_LAME + // If things can't be broken, allow all the buttons + atLeastOneCanBeReplaced = true; + atLeastOneCanBeResized = true; + atLeastOneIsMounted = false; + isInactiveRAID = false; +#endif +#endif + if ( atLeastOneCanBeReplaced ) m_replaceButton->show(); else diff --git a/src/modules/partition/gui/PartitionPage.cpp b/src/modules/partition/gui/PartitionPage.cpp index ba6845020..5f16e9dc1 100644 --- a/src/modules/partition/gui/PartitionPage.cpp +++ b/src/modules/partition/gui/PartitionPage.cpp @@ -79,6 +79,7 @@ PartitionPage::PartitionPage( PartitionCoreModule* core, QWidget* parent ) value( "alwaysShowPartitionLabels" ).toBool() ); m_ui->deviceComboBox->setModel( m_core->deviceModel() ); m_ui->bootLoaderComboBox->setModel( m_core->bootLoaderModel() ); + connect( m_core->bootLoaderModel(), &QAbstractItemModel::modelReset, this, &PartitionPage::restoreSelectedBootLoader ); PartitionBarsView::NestedPartitionsMode mode = Calamares::JobQueue::instance()->globalStorage()-> value( "drawNestedPartitions" ).toBool() ? PartitionBarsView::DrawNestedPartitions : @@ -505,6 +506,47 @@ PartitionPage::updateSelectedBootLoaderIndex() cDebug() << "Selected bootloader index" << m_lastSelectedBootLoaderIndex; } +int +findBootloader( const QAbstractItemModel* model, const QString& path ) +{ + for ( int i = 0; i < model->rowCount(); ++i) + { + const auto index = model->index( i, 0, QModelIndex() ); + cDebug() << i << model->itemData( index ); + QVariant var = model->data( index, BootLoaderModel::BootLoaderPathRole ); + if ( var.isValid() && var.toString() == path ) + return i; + } + + return -1; +} + +void +PartitionPage::restoreSelectedBootLoader() +{ + const auto* model = m_ui->bootLoaderComboBox->model(); + if ( model->rowCount() < 1 ) + { + cDebug() << "No items in BootLoaderModel"; + return; + } + + int r = -1; + if ( m_core->bootLoaderInstallPath().isEmpty() ) + { + m_ui->bootLoaderComboBox->setCurrentIndex( 0 ); + } + else if ( (r = findBootloader( model, m_core->bootLoaderInstallPath() )) >= 0 ) + { + m_ui->bootLoaderComboBox->setCurrentIndex( r ); + } + else + { + m_ui->bootLoaderComboBox->setCurrentIndex( 0 ); + } +} + + void PartitionPage::updateFromCurrentDevice() { diff --git a/src/modules/partition/gui/PartitionPage.h b/src/modules/partition/gui/PartitionPage.h index 75d39c9dc..9999c334d 100644 --- a/src/modules/partition/gui/PartitionPage.h +++ b/src/modules/partition/gui/PartitionPage.h @@ -57,6 +57,8 @@ private slots: void updateBootLoaderInstallPath(); /// @brief Explicitly selected boot loader path void updateSelectedBootLoaderIndex(); + /// @brief After boot loader model changes, try to preserve previously set value + void restoreSelectedBootLoader(); private: QScopedPointer< Ui_PartitionPage > m_ui; diff --git a/src/modules/partition/gui/ReplaceWidget.cpp b/src/modules/partition/gui/ReplaceWidget.cpp index faedc03d4..9c7a199be 100644 --- a/src/modules/partition/gui/ReplaceWidget.cpp +++ b/src/modules/partition/gui/ReplaceWidget.cpp @@ -154,7 +154,7 @@ ReplaceWidget::onPartitionSelected() Partition* partition = model->partitionForIndex( m_ui->partitionTreeView->currentIndex() ); if ( !partition || - partition->state() != Partition::StateNone ) + partition->state() != KPM_PARTITION_STATE(None) ) { updateStatus( CalamaresUtils::Fail, tr( "The selected item does not appear to be a valid partition." ) ); diff --git a/src/modules/partition/jobs/FillGlobalStorageJob.cpp b/src/modules/partition/jobs/FillGlobalStorageJob.cpp index 1f4026dec..72146e2a0 100644 --- a/src/modules/partition/jobs/FillGlobalStorageJob.cpp +++ b/src/modules/partition/jobs/FillGlobalStorageJob.cpp @@ -45,7 +45,6 @@ typedef QHash UuidForPartitionHash; static UuidForPartitionHash findPartitionUuids( QList < Device* > devices ) { - cDebug() << "Gathering UUIDs for partitions that exist now."; UuidForPartitionHash hash; foreach ( Device* device, devices ) { @@ -56,12 +55,11 @@ findPartitionUuids( QList < Device* > devices ) QString path = p->partitionPath(); QString uuid = p->fileSystem().readUUID( p->partitionPath() ); hash.insert( path, uuid ); - cDebug() << ".. added path=" << path << "UUID=" << uuid; } } if ( hash.isEmpty() ) - cDebug() << ".. no UUIDs found."; + cDebug() << "No UUIDs found for existing partitions."; return hash; } @@ -147,7 +145,6 @@ FillGlobalStorageJob::prettyDescription() const QString path = partitionMap.value( "device" ).toString(); QString mountPoint = partitionMap.value( "mountPoint" ).toString(); QString fsType = partitionMap.value( "fs" ).toString(); - qDebug() << partitionMap.value( "uuid" ) << path << mountPoint << fsType; if ( mountPoint.isEmpty() || fsType.isEmpty() ) continue; if ( path.isEmpty() ) diff --git a/src/modules/partition/tests/PartitionJobTests.cpp b/src/modules/partition/tests/PartitionJobTests.cpp index 51aaf311b..928520498 100644 --- a/src/modules/partition/tests/PartitionJobTests.cpp +++ b/src/modules/partition/tests/PartitionJobTests.cpp @@ -229,11 +229,11 @@ PartitionJobTests::newCreatePartitionJob( Partition* freeSpacePartition, Partiti role, fs, firstSector, lastSector, QString() /* path */, - PartitionTable::FlagNone /* availableFlags */, + KPM_PARTITION_FLAG(None) /* availableFlags */, QString() /* mountPoint */, false /* mounted */, - PartitionTable::FlagNone /* activeFlags */, - Partition::StateNew + KPM_PARTITION_FLAG(None) /* activeFlags */, + KPM_PARTITION_STATE(New) ); return new CreatePartitionJob( m_device.data(), partition ); } @@ -367,7 +367,7 @@ PartitionJobTests::testResizePartition() FileSystem::Ext4, oldFirst, oldLast, - PartitionTable::FlagNone + KPM_PARTITION_FLAG(None) ); CreatePartitionJob* job = new CreatePartitionJob( m_device.data(), partition ); job->updatePreview(); diff --git a/src/modules/welcome/WelcomePage.cpp b/src/modules/welcome/WelcomePage.cpp index d4ae6c47a..9260f27a3 100644 --- a/src/modules/welcome/WelcomePage.cpp +++ b/src/modules/welcome/WelcomePage.cpp @@ -82,10 +82,9 @@ WelcomePage::WelcomePage( QWidget* parent ) "%2
" "for %3


" "Copyright 2014-2017 Teo Mrnjavac <teo@kde.org>
" - "Copyright 2017 Adriaan de Groot <groot@kde.org>
" - "Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo," - " Philip Müller, Pier Luigi Fiorini, Rohan Garg and the Calamares " + "Copyright 2017-2019 Adriaan de Groot <groot@kde.org>
" + "Thanks to
the Calamares team " + "and the Calamares " "translators team.

" "Calamares " "development is sponsored by
"