diff --git a/.gitignore b/.gitignore index 26e8ff869..d67fee190 100644 --- a/.gitignore +++ b/.gitignore @@ -46,3 +46,6 @@ CMakeLists.txt.user # Backup files *~ + +# Kate +*.kate-swp diff --git a/.travis.yml b/.travis.yml index 0b18d927d..0885dcd81 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,4 @@ -language: - - cpp - - python +language: cpp python: - 3.5 @@ -18,5 +16,5 @@ install: - docker build -t calamares . script: - - docker run -v $PWD:/src --tmpfs /build:rw,size=65536k calamares bash -lc "cd /build && cmake -DWEBVIEW_FORCE_WEBKIT=1 -DKDE_INSTALL_USE_QT_SYS_PATHS=ON /src && make -j2 && make install DESTDIR=/build/INSTALL_ROOT" + - docker run -v $PWD:/src --tmpfs /build:rw,size=65536k -e SRCDIR=/src -e BUILDDIR=/build calamares "/src/ci/travis.sh" diff --git a/CMakeLists.txt b/CMakeLists.txt index 80d925b15..aa0d9016b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -50,7 +50,7 @@ if( CMAKE_CXX_COMPILER_ID MATCHES "Clang" ) # Clang warnings: doing *everything* is counter-productive, since it warns # about things which we can't fix (e.g. C++98 incompatibilities, but - # Calaares is C++14). + # Calamares is C++14). foreach( CLANG_WARNINGS -Weverything -Wno-c++98-compat @@ -88,6 +88,8 @@ else() set( SUPPRESS_BOOST_WARNINGS "" ) endif() +# Use mark_thirdparty_code() to reduce warnings from the compiler +# on code that we're not going to fix. Call this with a list of files. macro(mark_thirdparty_code) set_source_files_properties( ${ARGV} PROPERTIES @@ -159,13 +161,13 @@ set( CALAMARES_ORGANIZATION_NAME "Calamares" ) set( CALAMARES_ORGANIZATION_DOMAIN "github.com/calamares" ) set( CALAMARES_APPLICATION_NAME "Calamares" ) set( CALAMARES_DESCRIPTION_SUMMARY "The distribution-independent installer framework" ) -set( CALAMARES_TRANSLATION_LANGUAGES ar ast bg ca cs_CZ da de el en en_GB es_MX es eu fr he hr hu id is it_IT ja lt nl pl pt_BR pt_PT ro ru sk sv th tr_TR zh_CN zh_TW ) +set( CALAMARES_TRANSLATION_LANGUAGES ar ast bg ca cs_CZ da de el en en_GB es_MX es eu fr he hi hr hu id is it_IT ja lt mr nl pl pt_BR pt_PT ro ru sk sv th tr_TR zh_CN zh_TW ) ### Bump version here set( CALAMARES_VERSION_MAJOR 3 ) set( CALAMARES_VERSION_MINOR 1 ) -set( CALAMARES_VERSION_PATCH 5 ) -set( CALAMARES_VERSION_RC 0 ) +set( CALAMARES_VERSION_PATCH 8 ) +set( CALAMARES_VERSION_RC 1 ) set( CALAMARES_VERSION ${CALAMARES_VERSION_MAJOR}.${CALAMARES_VERSION_MINOR}.${CALAMARES_VERSION_PATCH} ) set( CALAMARES_VERSION_SHORT "${CALAMARES_VERSION}" ) @@ -265,12 +267,9 @@ else() endif() # Doesn't list mksquashfs as an optional dep, though, because it # hasn't been sent through the find_package() scheme. -set_package_properties( mksquashfs PROPERTIES - DESCRIPTION "Create squashed filesystems" - URL "http://tldp.org/HOWTO/SquashFS-HOWTO/creatingandusing.html" - PURPOSE "Create example distro" - TYPE OPTIONAL -) +# +# "http://tldp.org/HOWTO/SquashFS-HOWTO/creatingandusing.html" +add_feature_info( ExampleDistro ${mksquashfs_FOUND} "Create example-distro target.") # add_subdirectory( thirdparty ) add_subdirectory( src ) diff --git a/CMakeModules/CalamaresAddModuleSubdirectory.cmake b/CMakeModules/CalamaresAddModuleSubdirectory.cmake index 1b60c59a7..caf1b707e 100644 --- a/CMakeModules/CalamaresAddModuleSubdirectory.cmake +++ b/CMakeModules/CalamaresAddModuleSubdirectory.cmake @@ -6,9 +6,12 @@ set( MODULE_DATA_DESTINATION share/calamares/modules ) function( calamares_add_module_subdirectory ) set( SUBDIRECTORY ${ARGV0} ) + set( MODULE_CONFIG_FILES "" ) + # If this subdirectory has a CMakeLists.txt, we add_subdirectory it... if( EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIRECTORY}/CMakeLists.txt" ) add_subdirectory( ${SUBDIRECTORY} ) + file( GLOB MODULE_CONFIG_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIRECTORY} "${SUBDIRECTORY}/*.conf" ) # ...otherwise, we look for a module.desc. elseif( EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIRECTORY}/module.desc" ) set( MODULES_DIR ${CMAKE_INSTALL_LIBDIR}/calamares/modules ) @@ -39,7 +42,7 @@ function( calamares_add_module_subdirectory ) # message( " ${Green}FILES:${ColorReset} ${MODULE_FILES}" ) message( " ${Green}MODULE_DESTINATION:${ColorReset} ${MODULE_DESTINATION}" ) if( MODULE_CONFIG_FILES ) - if (INSTALL_CONFIG) + if ( INSTALL_CONFIG ) message( " ${Green}CONFIGURATION_FILES:${ColorReset} ${MODULE_CONFIG_FILES} => ${MODULE_DATA_DESTINATION}" ) else() message( " ${Green}CONFIGURATION_FILES:${ColorReset} ${MODULE_CONFIG_FILES} => [Skipping installation]" ) @@ -56,9 +59,23 @@ function( calamares_add_module_subdirectory ) RENAME calamares-${SUBDIRECTORY}.mo ) endif() - else() message( "-- ${BoldYellow}Warning:${ColorReset} tried to add module subdirectory ${BoldRed}${SUBDIRECTORY}${ColorReset} which has no CMakeLists.txt or module.desc." ) message( "" ) endif() + + # Check any config files for basic correctness + if ( BUILD_TESTING AND MODULE_CONFIG_FILES ) + set( _count 0 ) + foreach( _config_file ${MODULE_CONFIG_FILES} ) + set( _count_str "-${_count}" ) + if ( _count EQUAL 0 ) + set( _count_str "" ) + endif() + add_test( + NAME config-${SUBDIRECTORY}${_count_str} + COMMAND test_conf ${CMAKE_CURRENT_BINARY_DIR}/${SUBDIRECTORY}/${_config_file} ) + math( EXPR _count "${_count} + 1" ) + endforeach() + endif() endfunction() diff --git a/CMakeModules/IncludeKPMCore.cmake b/CMakeModules/IncludeKPMCore.cmake deleted file mode 100644 index b06299d91..000000000 --- a/CMakeModules/IncludeKPMCore.cmake +++ /dev/null @@ -1,17 +0,0 @@ -# Shared CMake core for finding KPMCore -# -# This is wrapped into a CMake include file because there's a bunch of -# pre-requisites that need searching for before looking for KPMCore. -# If you just do find_package( KPMCore ) without finding the things -# it links against first, you get CMake errors. -# -# -find_package(ECM 5.10.0 REQUIRED NO_MODULE) -set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${CMAKE_MODULE_PATH}) - -include(KDEInstallDirs) -include(GenerateExportHeader) -find_package( KF5 REQUIRED CoreAddons ) -find_package( KF5 REQUIRED Config I18n IconThemes KIO Service ) - -find_package( KPMcore 3.0.3 REQUIRED ) diff --git a/calamares.desktop b/calamares.desktop index 2dcc78fd2..c4346f679 100644 --- a/calamares.desktop +++ b/calamares.desktop @@ -13,6 +13,8 @@ StartupNotify=true Categories=Qt;System; + + Name[ca]=Calamares Icon[ca]=calamares GenericName[ca]=Instal·lador de sistema @@ -64,7 +66,11 @@ Comment[ja]=Calamares — システムインストーラー Name[lt]=Calamares Icon[lt]=calamares GenericName[lt]=Sistemos diegimas į kompiuterį -Comment[lt]=Calamares — sistemos diegyklė +Comment[lt]=Calamares — Sistemos diegimo programa +Name[nb]=Calamares +Icon[nb]=calamares +GenericName[nb]=Systeminstallatør +Comment[nb]=Calamares-systeminstallatør Name[nl]=Calamares Icon[nl]=calamares GenericName[nl]=Installatieprogramma @@ -79,8 +85,8 @@ GenericName[pt_BR]=Instalador de Sistema Comment[pt_BR]=Calamares — Instalador de Sistema Name[cs_CZ]=Calamares Icon[cs_CZ]=calamares -GenericName[cs_CZ]=Instalační program systému -Comment[cs_CZ]=Calamares - instalační program systému +GenericName[cs_CZ]=Instalátor systému +Comment[cs_CZ]=Calamares – instalátor operačních systémů Name[ru]=Calamares Icon[ru]=calamares GenericName[ru]=Установщик системы diff --git a/ci/RELEASE.md b/ci/RELEASE.md index 640a91156..ecd9cd354 100644 --- a/ci/RELEASE.md +++ b/ci/RELEASE.md @@ -2,7 +2,9 @@ The Calamares release process ============================= #### (0) A week in advance -* Run [Coverity scan][coverity], fix what's relevant. The Coverity scan runs + +* (Only releases from master) + Run [Coverity scan][coverity], fix what's relevant. The Coverity scan runs automatically once a week on master. * Build with clang -Weverything, fix what's relevant. ``` @@ -16,8 +18,10 @@ The Calamares release process ``` Note that *all* means all-that-make-sense. The partition-manager tests need an additional environment variable to be set for some tests, which will - destroy an attached disk. This is not always desirable. -* Notify [translators][transifex]. In the dashboard there is an *Announcements* + destroy an attached disk. This is not always desirable. There are some + sample config-files that are empty and which fail the config-tests. +* (Only releases from master) + Notify [translators][transifex]. In the dashboard there is an *Announcements* link that you can use to send a translation announcement. [coverity]: https://scan.coverity.com/projects/calamares-calamares?tab=overview @@ -27,17 +31,24 @@ The Calamares release process * Bump version in `CMakeLists.txt`, *CALAMARES_VERSION* variables, and set RC to a non-zero value (e.g. doing -rc1, -rc2, ...). Push that. -* Check `README.md` and everything in `hacking`, make sure it's all still - relevant. Run `hacking/calamaresstyle` to check the C++ code style. - Python code is checked as part of the Travis CI builds. +* Check `README.md` and everything `ci/HACKING.md`, make sure it's all still + relevant. Run `ci/calamaresstyle` to check the C++ code style. + Run pycodestyle on recently-modified Python modules, fix what makes sense. * Check defaults in `settings.conf` and other configuration files. -* Pull latest translations from Transifex. This is done nightly on Jenkins, - so a manual pull is rarely necessary. -* Update the list of enabled translation languages in `CMakeLists.txt`. +* (Only releases from master) + Pull latest translations from Transifex. We only push / pull translations + from master, so longer-lived branches (e.g. 3.1.x) don't get translation + updates. This is to keep the translation workflow simple. + ``` + sh ci/txpull.sh + ``` +* (Only releases from master) + Update the list of enabled translation languages in `CMakeLists.txt`. Check the [translation site][transifex] for the list of languages with fairly complete translations. #### (2) Tarball + * Create tarball: `git-archive-all -v calamares-1.1-rc1.tar.gz` or without the helper script, ``` @@ -45,9 +56,10 @@ The Calamares release process git archive -o $V.tar.gz --prefix $V/ master ``` Double check that the tarball matches the version number. -* Test tarball. +* Test tarball (e.g. unpack somewhere else and run the tests from step 0). #### (3) Tag + * Set RC to zero in `CMakeLists.txt` if this is the actual release. * `git tag -s v1.1.0` Make sure the signing key is known in GitHub, so that the tag is shown as a verified tag. Do not sign -rc tags. @@ -57,6 +69,7 @@ The Calamares release process * Write release article. #### (4) Release day + * Publish tarball. * Update download page. * Publish release article on `calamares.io`. diff --git a/ci/calamares-coverity.sh b/ci/calamares-coverity.sh deleted file mode 100755 index c7a6351c5..000000000 --- a/ci/calamares-coverity.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/bash - -# Make sure we can make git operations from the Calamares Docker+Jenkins environment. -cp ~/jenkins-master/.gitconfig ~ -cp -R ~/jenkins-master/.ssh ~ - -cd "$WORKSPACE" -git config --global http.sslVerify false - -rm -Rf "$WORKSPACE/prefix" -mkdir "$WORKSPACE/prefix" - -git clone git://anongit.kde.org/kpmcore "$WORKSPACE/kpmcore" -cd "$WORKSPACE/kpmcore" -mkdir "$WORKSPACE/kpmcore/build" -cd "$WORKSPACE/kpmcore/build" -cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/usr .. -nice -n 18 make -j2 -make DESTDIR="$WORKSPACE/prefix" install - -cd "$WORKSPACE" - -wget https://scan.coverity.com/download/cxx/linux64 --no-check-certificate \ - --post-data "token=ll90T04noQ4cORJx_zczKA&project=calamares%2Fcalamares" \ - -O coverity_tool.tar.gz -mkdir "$WORKSPACE/coveritytool" -tar xvf coverity_tool.tar.gz -C "$WORKSPACE/coveritytool" --strip-components 2 -export PATH="$WORKSPACE/coveritytool/bin:$PATH" - -rm -Rf "$WORKSPACE/build" -mkdir "$WORKSPACE/build" -cd "$WORKSPACE/build" - -CMAKE_PREFIX_PATH="$WORKSPACE/prefix/usr" cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/usr -DWEBVIEW_FORCE_WEBKIT=1 .. -nice -n 18 cov-build --dir cov-int make -j2 - -tar caf calamares-ci.tar.xz cov-int - -curl -k --form token=ll90T04noQ4cORJx_zczKA \ - --form email=teo@kde.org \ - --form file=@calamares-ci.tar.xz \ - --form version="master-`date -u +%Y%m%d`" \ - --form description="master on `date -u`" \ - https://scan.coverity.com/builds?project=calamares%2Fcalamares diff --git a/ci/kpmcore-coverity.sh b/ci/kpmcore-coverity.sh deleted file mode 100755 index 9507fc438..000000000 --- a/ci/kpmcore-coverity.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash - -#Hack for Coverity build, so the compiler doesn't complain about InheritanceChecker -sudo cp ~/jenkins-master/kpluginfactory.h /usr/include/KF5/KCoreAddons - -cd "$WORKSPACE" -wget https://scan.coverity.com/download/cxx/linux64 --no-check-certificate \ - --post-data "token=cyOjQZx5EOFLdhfo7ZDa4Q&project=KDE+Partition+Manager+Core+Library+-+KPMcore" \ - -O coverity_tool.tar.gz -mkdir "$WORKSPACE/coveritytool" -tar xvf coverity_tool.tar.gz -C "$WORKSPACE/coveritytool" --strip-components 2 -export PATH="$WORKSPACE/coveritytool/bin:$PATH" - -rm -Rf "$WORKSPACE/build" -mkdir "$WORKSPACE/build" -cd "$WORKSPACE/build" - -cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/usr .. -nice -n 18 cov-build --dir cov-int make -j2 - -tar cavf kpmcore-ci.tar.xz cov-int - -cat cov-int/build-log.txt - -curl -k --form token=cyOjQZx5EOFLdhfo7ZDa4Q \ - --form email=teo@kde.org \ - --form file=@kpmcore-ci.tar.xz \ - --form version="master-`date -u +%Y%m%d`" \ - --form description="master on `date -u`" \ - https://scan.coverity.com/builds?project=KDE+Partition+Manager+Core+Library+-+KPMcore diff --git a/ci/travis-continuous.sh b/ci/travis-continuous.sh new file mode 100755 index 000000000..02994be74 --- /dev/null +++ b/ci/travis-continuous.sh @@ -0,0 +1,15 @@ +#! /bin/sh +# +# Travis CI script for use on every-commit: +# - build and install Calamares +# +test -n "$BUILDDIR" || exit 1 +test -n "$SRCDIR" || exit 1 + +test -d $BUILDDIR || exit 1 +test -d $SRCDIR || exit 1 +test -f $SRCDIR/CMakeLists.txt || exit 1 + +cd $BUILDDIR || exit 1 + +cmake -DWEBVIEW_FORCE_WEBKIT=1 -DKDE_INSTALL_USE_QT_SYS_PATHS=ON $SRCDIR && make -j2 && make install DESTDIR=/build/INSTALL_ROOT diff --git a/ci/travis-coverity.sh b/ci/travis-coverity.sh new file mode 100755 index 000000000..07da4ce1a --- /dev/null +++ b/ci/travis-coverity.sh @@ -0,0 +1,34 @@ +#! /bin/sh +# +# Travis CI script for weekly (cron) use: +# - use the coverity tool to build and and upload results +# +test -n "$COVERITY_SCAN_TOKEN" || exit 1 +test -n "$BUILDDIR" || exit 1 +test -n "$SRCDIR" || exit 1 + +test -d $BUILDDIR || exit 1 +test -d $SRCDIR || exit 1 +test -f $SRCDIR/CMakeLists.txt || exit 1 + +cd $BUILDDIR || exit 1 + +curl -k -o coverity_tool.tar.gz \ + -d "token=$COVERITY_SCAN_TOKEN&project=calamares%2Fcalamares" \ + https://scan.coverity.com/download/cxx/linux64 || exit 1 +mkdir "$BUILDDIR/coveritytool" +tar xvf coverity_tool.tar.gz -C "$BUILDDIR/coveritytool" --strip-components 2 +export PATH="$BUILDDIR/coveritytool/bin:$PATH" + + +cmake -DCMAKE_BUILD_TYPE=Debug -DWEBVIEW_FORCE_WEBKIT=1 -DKDE_INSTALL_USE_QT_SYS_PATHS=ON $SRCDIR || exit 1 +cov-build --dir cov-int make -j2 + +tar caf calamares-ci.tar.xz cov-int + +curl -k --form token=$COVERITY_SCAN_TOKEN \ + --form email=groot@kde.org \ + --form file=@calamares-ci.tar.xz \ + --form version="master-`date -u +%Y%m%d`" \ + --form description="master on `date -u`" \ + https://scan.coverity.com/builds?project=calamares%2Fcalamares diff --git a/ci/travis.sh b/ci/travis.sh new file mode 100755 index 000000000..c8ac49f5d --- /dev/null +++ b/ci/travis.sh @@ -0,0 +1,19 @@ +#! /bin/sh +# +# Travis build driver script: +# - the regular CI runs, triggered by commits, run a script that builds +# and installs calamares, and then runs the tests. +# - the cronjob CI runs, triggered weekly, run a script that uses the +# coverity tools to submit a build. This is slightly more resource- +# intensive than the coverity add-on, but works on master. +# +D=`dirname "$0"` +test -d "$D" || exit 1 +test -x "$D/travis-continuous.sh" || exit 1 +test -x "$D/travis-coverity.sh" || exit 1 + +if test "$TRAVIS_EVENT_TYPE" = "cron" ; then + exec "$D/travis-coverity.sh" +else + exec "$D/travis-continuous.sh" +fi diff --git a/lang/calamares_ar.ts b/lang/calamares_ar.ts index e9d4a7a12..67fd714a7 100644 --- a/lang/calamares_ar.ts +++ b/lang/calamares_ar.ts @@ -232,13 +232,13 @@ Output: - + &Cancel &إلغاء - + Cancel installation without changing the system. الغاء الـ تثبيت من دون احداث تغيير في النظام @@ -265,47 +265,47 @@ The installer will quit and all changes will be lost. &لا - + &Close &اغلاق - + Continue with setup? الإستمرار في التثبيت؟ - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> مثبّت %1 على وشك بإجراء تعديلات على قرصك لتثبيت %2.<br/><strong>لن تستطيع التّراجع عن هذا.</strong> - + &Install now &ثبت الأن - + Go &back &إرجع - + &Done - + The installation is complete. Close the installer. - + Error خطأ - + Installation Failed فشل التثبيت @@ -405,12 +405,12 @@ The installer will quit and all changes will be lost. <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. @@ -421,83 +421,83 @@ 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/>يمكنك مراجعة الاختيارات وتأكيدها قبل تطبيقها على جهاز التّخزين. - - - - + + + + <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/>يمكنك مراجعة الاختيارات وتأكيدها قبل تطبيقها على جهاز التّخزين. @@ -619,42 +619,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. أنشئ قسم %2م.بايت جديد على %4 (%3) بنظام الملفّات %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. أنشئ قسم <strong>%2م.بايت</strong> جديد على <strong>%4</strong> (%3) بنظام الملفّات <strong>%1</strong>. - + Creating new %1 partition on %2. ينشئ قسم %1 جديد على %2. - + The installer failed to create partition on disk '%1'. فشل المثبّت في إنشاء قسم على القرص '%1'. - + Could not open device '%1'. تعذّر فتح الجهاز '%1': - + Could not open partition table. تعذّر فتح جدول التّقسيم. - + The installer failed to create file system on partition %1. فشل المثبّت في إنشاء نظام ملفّات على القسم %1. - + The installer failed to update partition table on disk '%1'. فشل المثبّت في تحديث جدول التّقسيم على القرص '%1'. @@ -690,27 +690,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. أنشئ جدول تقسيم %1 جديد على %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). أنشئ جدول تقسيم <strong>%1</strong> جديد على <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. ينشئ جدول التّقسيم %1 الجديد على %2. - + The installer failed to create a partition table on %1. فشل المثبّت في إنشاء جدول تقسيم على %1. - + Could not open device %1. تعذّر فتح الجهاز %1. @@ -753,32 +753,32 @@ The installer will quit and all changes will be lost. تعذّر فتح ملفّ groups للقراءة. - + Cannot create user %1. تعذّر إنشاء المستخدم %1. - + useradd terminated with error code %1. أُنهي useradd برمز الخطأ %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. تعذّر تعيين مالك دليل المستخدم ليكون %1. - + chown terminated with error code %1. أُنهي chown برمز الخطأ %1. @@ -786,37 +786,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. احذف القسم %1 - + Delete partition <strong>%1</strong>. احذف القسم <strong>%1</strong>. - + Deleting partition %1. يحذف القسم %1 . - + The installer failed to delete partition %1. فشل المثبّت في حذف القسم %1. - + Partition (%1) and device (%2) do not match. لا يتوافق القسم (%1) مع الجهاز (%2). - + Could not open device %1. تعذّر فتح الجهاز %1. - + Could not open partition table. تعذّر فتح جدول التّقسيم. @@ -977,37 +977,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information اضبط معلومات القسم - + Install %1 on <strong>new</strong> %2 system partition. ثبّت %1 على قسم نظام %2 <strong>جديد</strong>. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. اضطب قسم %2 <strong>جديد</strong> بنقطة الضّمّ <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. ثبّت %2 على قسم النّظام %3 ‏<strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. اضبط القسم %3 <strong>%1</strong> بنقطة الضّمّ <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. ثبّت محمّل الإقلاع على <strong>%1</strong>. - + Setting up mount points. يضبط نقاط الضّمّ. @@ -1038,17 +1038,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish أنهِ - + Installation Complete - + The installation of %1 is complete. @@ -1129,12 +1129,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> اضبط طراز لوحة المفتاتيح ليكون %1.<br/> - + Set keyboard layout to %1/%2. اضبط تخطيط لوحة المفاتيح إلى %1/%2. @@ -1296,7 +1296,7 @@ The installer will quit and all changes will be lost. يحمّل بيانات المواقع... - + Location الموقع @@ -1339,13 +1339,13 @@ The installer will quit and all changes will be lost. أحجام القطاعات المنطقيّة في المصدر والهدف ليسا متطابقين. هذا ليس مدعومًا حاليًّا. - + Source and target for copying do not overlap: Rollback is not required. لا يتداخل مصدر النّسخ وهدفه. الاستعادة غير ضروريّة. - - + + Could not open device %1 to rollback copying. @@ -1353,17 +1353,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name الاسم - + Description الوصف - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1467,42 +1468,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root الجذر - + Home المنزل - + Boot الإقلاع - + EFI system نظام EFI - + Swap التّبديل - + New partition for %1 قسم جديد ل‍ %1 - + New partition قسم جديد - + %1 %2 %1 %2 @@ -1702,22 +1703,22 @@ The installer will quit and all changes will be lost. الافتراضي - + unknown مجهول - + extended ممتدّ - + unformatted غير مهيّأ - + swap @@ -1805,57 +1806,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... يجمع معلومات النّظام... - + has at least %1 GB available drive space فيه على الأقل مساحة بحجم %1 غ.بايت حرّة - + There is not enough drive space. At least %1 GB is required. ليست في القرص مساحة كافية. المطلوب هو %1 غ.بايت على الأقلّ. - + has at least %1 GB working memory فيه ذاكرة شاغرة بحجم %1 غ.بايت على الأقلّ - + The system does not have enough working memory. At least %1 GB is required. ليس في النّظام ذاكرة شاغرة كافية. المطلوب هو %1 غ.بايت على الأقلّ. - + is plugged in to a power source موصول بمصدر للطّاقة - + The system is not plugged in to a power source. النّظام ليس متّصلًا بمصدر للطّاقة. - + is connected to the Internet موصول بالإنترنت - + The system is not connected to the Internet. النّظام ليس موصولًا بالإنترنت - + The installer is not running with administrator rights. المثبّت لا يعمل بصلاحيّات المدير. - + The screen is too small to display the installer. @@ -1910,12 +1911,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... يفحص أجهزة التّخزين... - + Partitioning يقسّم @@ -2094,42 +2095,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 اضبط كلمة مرور للمستخدم %1 - + Setting password for user %1. يضبط كلمة مرور للمستخدم %1. - + Bad destination system path. مسار النّظام المقصد سيّء. - + rootMountPoint is %1 rootMountPoint هو %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. تعذّر ضبط كلمة مرور للمستخدم %1. - + usermod terminated with error code %1. أُنهي usermod برمز الخطأ %1. @@ -2175,7 +2176,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. هذه نظرة عامّة عمّا سيحصل ما إن تبدأ عمليّة التّثبيت. @@ -2191,41 +2192,51 @@ The installer will quit and all changes will be lost. 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! لا يوجد تطابق في كلمات السر! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users المستخدمين diff --git a/lang/calamares_ast.ts b/lang/calamares_ast.ts index be9f765a0..1a1bc5a7b 100644 --- a/lang/calamares_ast.ts +++ b/lang/calamares_ast.ts @@ -232,13 +232,13 @@ Salida: - + &Cancel &Encaboxar - + Cancel installation without changing the system. @@ -265,47 +265,47 @@ L'instalador colará y perderánse toles camudancies. &Non - + &Close &Zarrar - + Continue with setup? ¿Siguir cola configuración? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> L'instalador %1 ta a piques de facer camudancies al to discu pa instalar %2.<br/><strong>Nun sedrás capaz a desfacer estes camudancies.</strong> - + &Install now &Instalar agora - + Go &back &Dir p'atrás - + &Done &Fecho - + The installation is complete. Close the installer. Completóse la operación. Zarra l'instalador. - + Error Fallu - + Installation Failed Instalación fallida @@ -405,12 +405,12 @@ L'instalador colará y perderánse toles camudancies. <strong>Particionáu manual</strong><br/>Pues crear o redimensionar particiones tu mesmu. - + Boot loader location: Allugamientu del xestor d'arranque: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 redimensionaráse a %2MB y crearáse la partición nueva de %3MB pa %4. @@ -421,83 +421,83 @@ L'instalador colará y perderánse toles camudancies. - - - + + + Current: Anguaño: - + Reuse %1 as home partition for %2. Reusar %1 como partición home pa %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. Nun pue alcontrase una partición EFI nesti sistema. Torna y usa'l particionáu a mano 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 usaráse p'aniciar %2. - + EFI system partition: Partición 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. Esti preséu d'almacenamientu nun paez tener un sistema operativu nelli. ¿Qué te prestaría facer?<br/>Sedrás capaz a revisar y confirmar les tos escoyetes enantes de facer cualesquier camudancia al 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>Desaniciar discu</strong><br/>Esto <font color="red">desaniciará</font> tolos datos anguaño 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/>Sedrás capaz a revisar y confirmar les tos escoyetes enantes de facer cualesquier camudancia al preséu d'almacenamientu. - - - - + + + + <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>Tocar una partición</strong><br/>Troca 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. Esti preséu d'almacenamientu yá tien un sistema operativu nelli. ¿Qué te prestaría facer?<br/>Sedrás capaz a revisar y confirmar les tos escoyetes enantes de facer cualesquier camudancia al 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 múltiples sistemes operativos nelli. ¿Qué te prestaría facer?<br/>Sedrás capaz a revisar y confirmar les tos escoyetes enantes de facer cualesquier camudancia al preséu d'almacenamientu. @@ -619,42 +619,42 @@ L'instalador colará y perderánse toles camudancies. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Crearáse la partición nueva de %2MB en %4 (%3) col sistema de ficheros %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Crearáse la partición nueva de <strong>%2MB</strong> en <strong>%4</strong> (%3) col sistema de ficheros <strong>%1</strong>. - + Creating new %1 partition on %2. Creando la partición nueva %1 en %2. - + The installer failed to create partition on disk '%1'. L'instalador falló al crear la partición nel discu «%1». - + Could not open device '%1'. Nun pudo abrise'l preséu «%1». - + Could not open partition table. Nun pudo abrise la tabla particiones. - + The installer failed to create file system on partition %1. L'instalador falló al crear el sistema ficheros na partición «%1». - + The installer failed to update partition table on disk '%1'. L'instalador falló al anovar la tabla particiones nel discu «%1». @@ -690,27 +690,27 @@ L'instalador colará y perderánse toles camudancies. CreatePartitionTableJob - + Create new %1 partition table on %2. Crearáse la tabla de particiones nueva %1 en %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Crearáse la tabla de particiones nueva <strong>%1</strong> en <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Creando la tabla de particiones nueva %1 en %2. - + The installer failed to create a partition table on %1. L'instalador falló al crear una tabla de particiones en %1. - + Could not open device %1. Nun pudo abrise'l preséu %1. @@ -753,32 +753,32 @@ L'instalador colará y perderánse toles camudancies. Nun pue abrise'l ficheru de grupos pa escritura. - + Cannot create user %1. Nun pue crease l'usuariu %1. - + useradd terminated with error code %1. useradd finó col códigu de fallu %1. - + Cannot add user %1 to groups: %2. Nun pue amestase l'usuariu %1 a los grupos: %2 - + usermod terminated with error code %1. usermod finó col códigu de fallu %1. - + Cannot set home directory ownership for user %1. Nun pue afitase la propiedá del direutoriu Home al usuariu %1. - + chown terminated with error code %1. chown finó col códigu de fallu %1. @@ -786,37 +786,37 @@ L'instalador colará y perderánse toles camudancies. DeletePartitionJob - + Delete partition %1. Desaniciaráse la partición %1. - + Delete partition <strong>%1</strong>. Desaniciaráse la partición <strong>%1</strong>. - + Deleting partition %1. Desaniciando la partición %1. - + The installer failed to delete partition %1. L'instalador falló al desaniciar la partición %1. - + Partition (%1) and device (%2) do not match. La partición (%1) y el preséu (%2) nun concasen. - + Could not open device %1. Nun pudo abrise'l preséu %1. - + Could not open partition table. Nun pudo abrise la tabla particiones. @@ -977,37 +977,37 @@ L'instalador colará y perderánse toles camudancies. FillGlobalStorageJob - + Set partition information Afitar información de partición - + Install %1 on <strong>new</strong> %2 system partition. Instalaráse %1 na <strong>nueva</strong> partición del sistema %2. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Configuraráse la partición <strong>nueva</strong> %2 col puntu montaxe <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Instalaráse %2 na partición del sistema %3 <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Configuraráse la partición %3 de <strong>%1</strong> col puntu montaxe <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Instalaráse'l cargador d'arranque en <strong>%1</strong>. - + Setting up mount points. Configurando puntos de montaxe. @@ -1038,17 +1038,17 @@ L'instalador colará y perderánse toles camudancies. FinishedViewStep - + Finish Finar - + Installation Complete - + The installation of %1 is complete. @@ -1129,12 +1129,12 @@ L'instalador colará y perderánse toles camudancies. KeyboardPage - + Set keyboard model to %1.<br/> Afitóse'l modelu de tecláu a %1.<br/> - + Set keyboard layout to %1/%2. Afitóse la distribución de tecláu a %1/%2. @@ -1296,7 +1296,7 @@ L'instalador colará y perderánse toles camudancies. Cargando datos d'allugamientu... - + Location Allugamientu @@ -1339,13 +1339,13 @@ L'instalador colará y perderánse toles camudancies. Los sectores llóxicos na fonte y l'oxetivu pa copiar nun son los mesmos. Esto anguaño nun ta sofitao. - + Source and target for copying do not overlap: Rollback is not required. Nun puen solapase pa la copia la fuente y l'oxetivu: Nun se rique la defechura. - - + + Could not open device %1 to rollback copying. Nun pudo abrise'l preséu %1 pa desfacer la copia. @@ -1353,17 +1353,18 @@ L'instalador colará y perderánse toles camudancies. NetInstallPage - + Name Nome - + Description Descripción - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) Instalación de rede. (Deshabilitáu: Nun pue dise en cata del llistáu de paquetes, comprueba la conexón de rede) @@ -1467,42 +1468,42 @@ L'instalador colará y perderánse toles camudancies. PartitionLabelsView - + Root Raigañu - + Home Home - + Boot Arranque - + EFI system Sistema EFI: - + Swap Intercambéu - + New partition for %1 Partición nueva pa %1 - + New partition Partición nueva - + %1 %2 %1 %2 @@ -1702,22 +1703,22 @@ L'instalador colará y perderánse toles camudancies. Por defeutu - + unknown - + extended - + unformatted ensin formatiar - + swap intercambéu @@ -1805,57 +1806,57 @@ L'instalador colará y perderánse toles camudancies. RequirementsChecker - + Gathering system information... Axuntando información del sistema... - + has at least %1 GB available drive space tien polo menos %1 GB disponibles d'espaciu en discu - + There is not enough drive space. At least %1 GB is required. Nun hai espaciu abondu na unidá. Ríquense polo menos %1 GB. - + has at least %1 GB working memory polo menos %1 GB de memoria de trabayu - + The system does not have enough working memory. At least %1 GB is required. El sistema nun tien abonda memoria de trabayu. Ríquense polo menos %1 GB. - + is plugged in to a power source ta enchufáu a una fonte d'enerxía - + The system is not plugged in to a power source. El sistema nun ta enchufáu a una fonte d'enerxía. - + is connected to the Internet ta coneutáu a internet - + The system is not connected to the Internet. El sistema nun ta coneutáu a internet. - + The installer is not running with administrator rights. L'instalador nun ta executándose con drechos alministrativos. - + The screen is too small to display the installer. @@ -1910,12 +1911,12 @@ L'instalador colará y perderánse toles camudancies. ScanningDialog - + Scanning storage devices... Escaniando preseos d'almacenamientu... - + Partitioning Particionáu @@ -2094,42 +2095,42 @@ L'instalador colará y perderánse toles camudancies. SetPasswordJob - + Set password for user %1 Afitar la contraseña pal usuariu %1 - + Setting password for user %1. Afitando la contraseña pal usuariu %1. - + Bad destination system path. Camín incorreutu del destín del sistema. - + rootMountPoint is %1 rootMountPoint ye %1 - + Cannot disable root account. Nun pue deshabilitase la cuenta root. - + passwd terminated with error code %1. passwd finó col códigu de fallu %1. - + Cannot set password for user %1. Nun pue afitase la contraseña pal usuariu %1. - + usermod terminated with error code %1. usermod finó col códigu de fallu %1. @@ -2175,7 +2176,7 @@ L'instalador colará y perderánse toles camudancies. SummaryPage - + This is an overview of what will happen once you start the install procedure. Esta ye una vista previa de lo qu'asocederá namái qu'anicies el procedimientu d'instalación. @@ -2191,41 +2192,51 @@ L'instalador colará y perderánse toles camudancies. UsersPage - + Your username is too long. El to nome d'usuariu ye perllargu. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. El to nome d'usuariu contién caráuteres non válidos. Almítense namái lletres en minúscula y númberos. - + Your hostname is too short. El to nome d'agospiu ye percurtiu. - + Your hostname is too long. El to nome d'agospiu ye perllargu. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. El to nome d'agospiu contién caráuteres non válidos. Almítense namái lletres en minúscula y númberos. - + Your passwords do not match! ¡Les tos contraseñes nun concasen! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Usuarios diff --git a/lang/calamares_bg.ts b/lang/calamares_bg.ts index 388bb98a8..f66431808 100644 --- a/lang/calamares_bg.ts +++ b/lang/calamares_bg.ts @@ -232,13 +232,13 @@ Output: - + &Cancel &Отказ - + Cancel installation without changing the system. @@ -265,47 +265,47 @@ The installer will quit and all changes will be lost. - + &Close - + Continue with setup? Продължаване? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> Инсталатора на %1 ще направи промени по вашия диск за да инсталира %2. <br><strong>Промените ще бъдат окончателни.</strong> - + &Install now &Инсталирай сега - + Go &back В&ръщане - + &Done - + The installation is complete. Close the installer. - + Error Грешка - + Installation Failed Неуспешна инсталация @@ -406,12 +406,12 @@ The installer will quit and all changes will be lost. <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. @@ -422,83 +422,83 @@ 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/>Ще може да прегледате и потвърдите избора си, преди да се направят промени по устройството за съхранение. - - - - + + + + <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/>Ще може да прегледате и потвърдите избора си, преди да се направят промени по устройството за съхранение. @@ -620,42 +620,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Създай нов %2МБ дял върху %4 (%3) със файлова система %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Създай нов <strong>%2МБ</strong> дял върху <strong>%4</strong> (%3) със файлова система <strong>%1</strong>. - + Creating new %1 partition on %2. Създаване на нов %1 дял върху %2. - + The installer failed to create partition on disk '%1'. Инсталатора не успя да създаде дял върху диск '%1'. - + Could not open device '%1'. Не можа да се отвори устройство '%1'. - + Could not open partition table. Не можа да се отвори таблица на дяловете. - + The installer failed to create file system on partition %1. Инсталатора не успя да създаде файлова система върху дял %1. - + The installer failed to update partition table on disk '%1'. Инсталатора не успя да актуализира таблица на дяловете на диск '%1'. @@ -691,27 +691,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. Създай нова %1 таблица на дяловете върху %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Създай нова <strong>%1</strong> таблица на дяловете върху <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Създаване на нова %1 таблица на дяловете върху %2. - + The installer failed to create a partition table on %1. Инсталатора не можа да създаде таблица на дяловете върху %1. - + Could not open device %1. Не можа да се отвори устройство '%1'. @@ -754,32 +754,32 @@ The installer will quit and all changes will be lost. Не може да се отвори файла на групите за четене. - + Cannot create user %1. Не може да се създаде потребител %1. - + useradd terminated with error code %1. useradd прекратен с грешка, код %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. Не може да се постави притежанието на домашната директория за потребител %1. - + chown terminated with error code %1. chown прекратен с грешка, код %1. @@ -787,37 +787,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. Изтрий дял %1. - + Delete partition <strong>%1</strong>. Изтриване на дял <strong>%1</strong>. - + Deleting partition %1. Изтриване на дял %1. - + The installer failed to delete partition %1. Инсталатора не успя да изтрие дял %1. - + Partition (%1) and device (%2) do not match. Дял (%1) и устройство (%2) не съвпадат. - + Could not open device %1. Не можа да се отвори устройство %1. - + Could not open partition table. Не можа да се отвори таблица на дяловете. @@ -978,37 +978,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information Постави информация за дял - + Install %1 on <strong>new</strong> %2 system partition. Инсталирай %1 на <strong>нов</strong> %2 системен дял. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Създай <strong>нов</strong> %2 дял със точка на монтиране <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Инсталирай %2 на %3 системен дял <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Създай %3 дял <strong>%1</strong> с точка на монтиране <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Инсталиране на зареждач върху <strong>%1</strong>. - + Setting up mount points. Настройка на точките за монтиране. @@ -1039,17 +1039,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish Завърши - + Installation Complete - + The installation of %1 is complete. @@ -1130,12 +1130,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> Постави модел на клавиатурата на %1.<br/> - + Set keyboard layout to %1/%2. Постави оформлението на клавиатурата на %1/%2. @@ -1297,7 +1297,7 @@ The installer will quit and all changes will be lost. Зареждане на данните за местоположение - + Location Местоположение @@ -1340,13 +1340,13 @@ The installer will quit and all changes will be lost. Размерите на логическия сектор в източника и целта за копиране не са еднакви. Това в момента не се поддържа. - + Source and target for copying do not overlap: Rollback is not required. Източника и целта за копиране не се припокриват: Възвръщане не е необходимо. - - + + Could not open device %1 to rollback copying. Не можа да се отвори устройство %1 за обратно копиране. @@ -1354,17 +1354,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1468,42 +1469,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root Основен - + Home Домашен - + Boot Зареждане - + EFI system EFI система - + Swap Swap - + New partition for %1 Нов дял за %1 - + New partition - + %1 %2 %1 %2 @@ -1703,22 +1704,22 @@ The installer will quit and all changes will be lost. По подразбиране - + unknown неизвестна - + extended разширена - + unformatted неформатирана - + swap swap @@ -1806,57 +1807,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... Събиране на системна информация... - + has at least %1 GB available drive space има поне %1 ГБ свободено дисково пространство - + There is not enough drive space. At least %1 GB is required. Няма достатъчно дисково пространство. Необходимо е поне %1 ГБ. - + has at least %1 GB working memory има поне %1 ГБ работна памет - + The system does not have enough working memory. At least %1 GB is required. Системата не разполага с достатъчно работна памет. Необходима е поне %1 ГБ. - + is plugged in to a power source е включен към източник на захранване - + The system is not plugged in to a power source. Системата не е включена към източник на захранване. - + is connected to the Internet е свързан към интернет - + The system is not connected to the Internet. Системата не е свързана с интернет. - + The installer is not running with administrator rights. Инсталаторът не е стартиран с права на администратор. - + The screen is too small to display the installer. @@ -1911,12 +1912,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... Сканиране на устройствата за съхранение - + Partitioning Разделяне @@ -2095,42 +2096,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 Задай парола за потребител %1 - + Setting password for user %1. Задаване на парола за потребител %1 - + Bad destination system path. Лоша дестинация за системен път. - + rootMountPoint is %1 root точка на монтиране е %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. Не може да се постави парола за потребител %1. - + usermod terminated with error code %1. usermod е прекратен с грешка %1. @@ -2176,7 +2177,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. Това е преглед на промените, които ще се извършат, след като започнете процедурата по инсталиране. @@ -2192,41 +2193,51 @@ The installer will quit and all changes will be lost. 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! Паролите Ви не съвпадат! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Потребители diff --git a/lang/calamares_ca.ts b/lang/calamares_ca.ts index cae1c9e09..82c3fdf81 100644 --- a/lang/calamares_ca.ts +++ b/lang/calamares_ca.ts @@ -232,13 +232,13 @@ Sortida: - + &Cancel &Cancel·la - + Cancel installation without changing the system. Cancel·leu la instal·lació sense canviar el sistema. @@ -265,47 +265,47 @@ L'instal·lador es tancarà i tots els canvis es perdran. &No - + &Close Tan&ca - + Continue with setup? Voleu continuar la configuració? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> L'instal·lador de %1 està a punt de fer canvis al disc per tal d'instal·lar-hi %2.<br/><strong>No podreu desfer aquests canvis.</strong> - + &Install now &Instal·la ara - + Go &back Vés &enrere - + &Done &Fet - + The installation is complete. Close the installer. La instal·lació s'ha acabat. Tanqueu l'instal·lador. - + Error Error - + Installation Failed La instal·lació ha fallat @@ -405,12 +405,12 @@ L'instal·lador es tancarà i tots els canvis es perdran. <strong>Partiment manual</strong><br/>Podeu crear o redimensionar les particions vosaltres mateixos. - + Boot loader location: Ubicació del carregador d'arrencada: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. %1 s'encongirà a %2MB i es crearà una partició nova de %3MB per a %4. @@ -421,83 +421,83 @@ 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 useu el partiment manual 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">esborrarà</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. - - - - + + + + <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. @@ -619,42 +619,42 @@ L'instal·lador es tancarà i tots els canvis es perdran. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Crea una partició nova de %2MB a %4 (%3) amb el sistema de fitxers %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Crea una partició nova de <strong>%2MB</strong> a <strong>%4</strong> (%3) amb el sistema de fitxers <strong>%1</strong>. - + Creating new %1 partition on %2. Creant la partició nova %1 a %2. - + The installer failed to create partition on disk '%1'. L'instal·lador no ha pogut crear la partició al disc '%1'. - + Could not open device '%1'. No s'ha pogut obrir el dispositiu '%1'. - + Could not open partition table. No s'ha pogut obrir la taula de particions. - + The installer failed to create file system on partition %1. L'instal·lador no ha pogut crear el sistema de fitxers a la partició '%1'. - + The installer failed to update partition table on disk '%1'. L'instal·lador no ha pogut actualitzar la taula de particions del disc '%1'. @@ -690,27 +690,27 @@ L'instal·lador es tancarà i tots els canvis es perdran. CreatePartitionTableJob - + Create new %1 partition table on %2. Crea una taula de particions %1 nova a %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Crea una taula de particions <strong>%1</strong> nova a <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Creant la nova taula de particions %1 a %2. - + The installer failed to create a partition table on %1. L'instal·lador no ha pogut crear la taula de particions a %1. - + Could not open device %1. No s'ha pogut obrir el dispositiu %1. @@ -753,32 +753,32 @@ L'instal·lador es tancarà i tots els canvis es perdran. No es pot obrir el fitxer groups per ser llegit. - + Cannot create user %1. No es pot crear l'usuari %1. - + useradd terminated with error code %1. useradd ha acabat amb el codi d'error %1. - + Cannot add user %1 to groups: %2. No es pot afegir l'usuari %1 als grups: %2. - + usermod terminated with error code %1. usermod ha acabat amb el codi d'error %1. - + Cannot set home directory ownership for user %1. No es pot establir la propietat del directori personal a l'usuari %1. - + chown terminated with error code %1. chown ha acabat amb el codi d'error %1. @@ -786,37 +786,37 @@ L'instal·lador es tancarà i tots els canvis es perdran. DeletePartitionJob - + Delete partition %1. Suprimeix la partició %1. - + Delete partition <strong>%1</strong>. Suprimeix la partició <strong>%1</strong>. - + Deleting partition %1. Eliminant la partició %1. - + The installer failed to delete partition %1. L'instal·lador no ha pogut eliminar la partició %1. - + Partition (%1) and device (%2) do not match. La partició (%1) i el dispositiu (%2) no concorden. - + Could not open device %1. No s'ha pogut obrir el dispositiu %1. - + Could not open partition table. No s'ha pogut obrir la taula de particions. @@ -977,37 +977,37 @@ L'instal·lador es tancarà i tots els canvis es perdran. FillGlobalStorageJob - + Set partition information Estableix la informació de la partició - + Install %1 on <strong>new</strong> %2 system partition. Instal·la %1 a la partició de sistema <strong>nova</strong> %2. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Estableix la partició <strong>nova</strong> %2 amb el punt de muntatge <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Instal·la %2 a la partició de sistema %3 <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Estableix la partició %3 <strong>%1</strong> amb el punt de muntatge <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Instal·la el carregador d'arrencada a <strong>%1</strong>. - + Setting up mount points. Establint els punts de muntatge. @@ -1038,17 +1038,17 @@ L'instal·lador es tancarà i tots els canvis es perdran. FinishedViewStep - + Finish Acaba - + Installation Complete Instal·lació acabada - + The installation of %1 is complete. La instal·lació de %1 ha acabat. @@ -1129,12 +1129,12 @@ L'instal·lador es tancarà i tots els canvis es perdran. KeyboardPage - + Set keyboard model to %1.<br/> Assigna el model del teclat a %1.<br/> - + Set keyboard layout to %1/%2. Assigna la distribució del teclat a %1/%2. @@ -1296,7 +1296,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. Carregant les dades de la ubicació... - + Location Ubicació @@ -1339,13 +1339,13 @@ L'instal·lador es tancarà i tots els canvis es perdran. Les mides dels sectors lògics de la font i de la destinació no coincideixen. Això de moment no té suport. - + Source and target for copying do not overlap: Rollback is not required. La font i la destinació de la còpia no es superposen: no se'n requereix el restabliment. - - + + Could not open device %1 to rollback copying. No s'ha pogut obrir el dispositiu %1 per a restablir la còpia. @@ -1353,17 +1353,18 @@ L'instal·lador es tancarà i tots els canvis es perdran. NetInstallPage - + Name Nom - + Description Descripció - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) Instal·lació per xarxa. (Inhabilitada: no es poden obtenir les llistes de paquets, comproveu la connexió.) @@ -1467,42 +1468,42 @@ L'instal·lador es tancarà i tots els canvis es perdran. PartitionLabelsView - + Root Arrel - + Home Inici - + Boot Arrencada - + EFI system Sistema EFI - + Swap Intercanvi - + New partition for %1 Partició nova per a %1 - + New partition Partició nova - + %1 %2 %1 %2 @@ -1702,22 +1703,22 @@ L'instal·lador es tancarà i tots els canvis es perdran. Per defecte - + unknown desconeguda - + extended ampliada - + unformatted sense format - + swap Intercanvi @@ -1805,57 +1806,57 @@ L'instal·lador es tancarà i tots els canvis es perdran. RequirementsChecker - + Gathering system information... Recopilant informació del sistema... - + has at least %1 GB available drive space té com a mínim %1 GB d'espai de disc disponible. - + There is not enough drive space. At least %1 GB is required. No hi ha prou espai de disc disponible. Com a mínim hi ha d'haver %1 GB. - + has at least %1 GB working memory té com a mínim %1 GB de memòria de treball - + The system does not have enough working memory. At least %1 GB is required. El sistema no té prou memòria de treball. Com a mínim es necessita %1 GB. - + is plugged in to a power source està connectat a una font de corrent - + The system is not plugged in to a power source. El sistema no està connectat a una font de corrent. - + is connected to the Internet està connectat a Internet - + The system is not connected to the Internet. El sistema no està connectat a Internet. - + The installer is not running with administrator rights. L'instal·lador no s'ha executat amb privilegis d'administrador. - + The screen is too small to display the installer. La pantalla és massa petita per mostrar l'instal·lador. @@ -1910,12 +1911,12 @@ L'instal·lador es tancarà i tots els canvis es perdran. ScanningDialog - + Scanning storage devices... Escanejant els dispositius d'emmagatzematge... - + Partitioning Particions @@ -2094,42 +2095,42 @@ L'instal·lador es tancarà i tots els canvis es perdran. SetPasswordJob - + Set password for user %1 Assigneu una contrasenya per a l'usuari %1 - + Setting password for user %1. Establint la contrasenya de l'usuari %1. - + Bad destination system path. Destinació errònia de la ruta del sistema. - + rootMountPoint is %1 El punt de muntatge rootMountPoint és %1 - + Cannot disable root account. No es pot inhabilitar el compte d'arrel. - + passwd terminated with error code %1. El procés passwd ha acabat amb el codi d'error %1. - + Cannot set password for user %1. No s'ha pogut assignar la contrasenya de l'usuari %1. - + usermod terminated with error code %1. usermod ha terminat amb el codi d'error %1. @@ -2175,7 +2176,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. SummaryPage - + This is an overview of what will happen once you start the install procedure. Això és un resum del que passarà quan s'iniciï el procés d'instal·lació. @@ -2191,41 +2192,51 @@ L'instal·lador es tancarà i tots els canvis es perdran. 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'usuari é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! + + + Password is too short + La contrasenya és massa curta. + + + + Password is too long + La contrasenya és massa llarga. + UsersViewStep - + Users Usuaris diff --git a/lang/calamares_cs_CZ.ts b/lang/calamares_cs_CZ.ts index 1bf3c9ae0..a4175240f 100644 --- a/lang/calamares_cs_CZ.ts +++ b/lang/calamares_cs_CZ.ts @@ -4,17 +4,17 @@ 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>Zaváděcí prostředí</strong> tohoto systému.<br><br>Starší x86 systémy podporují pouze <strong>BIOS</strong>.<br>Moderní systémy většinou využívají <strong>EFI</strong>, někdy lze toto prostředí přepnout do módu kompatibility a může se jevit jako BIOS. + <strong>Zaváděcí prostředí</strong> tohoto systému.<br><br>Starší x86 systémy podporují pouze <strong>BIOS</strong>.<br>Moderní systémy obvykle používají <strong>EFI</strong>, ale pokud jsou spuštěné v režimu kompatibility, mohou se zobrazovat jako BIOS. This system was started with an <strong>EFI</strong> boot environment.<br><br>To configure startup from an EFI environment, this installer must deploy a boot loader application, like <strong>GRUB</strong> or <strong>systemd-boot</strong> on an <strong>EFI System Partition</strong>. This is automatic, unless you choose manual partitioning, in which case you must choose it or create it on your own. - Systém byl spuštěn se zaváděcím prostředím <strong>EFI</strong>.<br><br>Abyste zaváděli systém prostředím EFI, instalátor musí zavést aplikaci pro zavádění systému, jako <strong>GRUB</strong> nebo <strong>systemd-boot</strong> na <strong>systémovém oddílu EFI</strong>. Proběhne to automaticky, pokud si nezvolíte ruční dělení disku, v tom případě si aplikaci pro zavádění musíte sami zvolit. + Systém byl spuštěn se zaváděcím prostředím <strong>EFI</strong>.<br><br>Aby byl systém zaváděn prostředím EFI je třeba, aby instalátor nasadil na <strong> EFI systémový oddíl</strong>aplikaci pro zavádění systému, jako <strong>GRUB</strong> nebo <strong>systemd-boot</strong>. To proběhne automaticky, tedy pokud si nezvolíte ruční dělení datového úložiště – v takovém případě si EFI systémový oddíl volíte nebo vytváříte sami. This system was started with a <strong>BIOS</strong> boot environment.<br><br>To configure startup from a BIOS environment, this installer must install a boot loader, like <strong>GRUB</strong>, either at the beginning of a partition or on the <strong>Master Boot Record</strong> near the beginning of the partition table (preferred). This is automatic, unless you choose manual partitioning, in which case you must set it up on your own. - Systém byl spuštěn se zaváděcím prostředím <strong>BIOS</strong>.<br><br>Abyste zaváděli systém prostředím BIOS, instalátor musí umístit zavaděč systému, jako <strong>GRUB</strong>, buď na začátek oddílu nebo (lépe) do <strong>Master Boot Record</strong> na začátku tabulky oddílů. Proběhne to automaticky, pokud si nezvolíte ruční dělení disku, v tom případě si zavádění musíte nastavit sami. + Systém byl spuštěn se zaváděcím prostředím <strong>BIOS</strong>.<br><br>Aby byl systém zaváděn prostředím BIOS je třeba, aby instalátor vpravil zavaděč systému, jako <strong>GRUB</strong>, buď na začátek oddílu nebo (lépe) do <strong>hlavního zaváděcího záznamu (MBR)</strong> na začátku tabulky oddílů. To proběhne automaticky, tedy pokud si nezvolíte ruční dělení datového úložiště – v takovém případě si zavádění nastavujete sami. @@ -22,7 +22,7 @@ Master Boot Record of %1 - Master Boot Record %1 + Hlavní zaváděcí záznam (MBR) %1 @@ -37,7 +37,7 @@ Do not install a boot loader - Neinstalovat boot loader + Neinstalovat zavaděč systému @@ -120,31 +120,31 @@ Running command %1 %2 - Spouštím příkaz %1 %2 + Spouštění příkazu %1 %2 External command crashed - Externí příkaz selhal + Vnější příkaz zhavaroval Command %1 crashed. Output: %2 - Příkaz %1 selhal. + Příkaz %1 zhavaroval. Výstup: %2 External command failed to start - Start externího příkazu selhal + Spuštění vnějšího příkazu se nezdařilo Command %1 failed to start. - Spuštění příkazu %1 selhalo. + Spuštění příkazu %1 se nezdařilo. @@ -154,26 +154,26 @@ Výstup: Bad parameters for process job call. - Špatné parametry příkazu. + Chybné parametry volání úlohy procesu.. External command failed to finish - Dokončení externího příkazu selhalo. + Vykonávání vnějšího příkazu se nepodařilo dokončit Command %1 failed to finish in %2s. Output: %3 - Dokončení příkazu %1 selhalo v %2s. + Dokončení příkazu %1 se nezdařilo v %2s. Výstup: %3 External command finished with errors - Externí příkaz skončil s chybami. + Vnější příkaz skončil s chybami. @@ -190,32 +190,32 @@ Výstup: Running %1 operation. - Spouštím %1 operaci. + Spouštění %1 operace. Bad working directory path - Špatná cesta k pracovnímu adresáři. + Chybný popis umístění pracovní složky Working directory %1 for python job %2 is not readable. - Pracovní adresář %1 pro Python skript %2 není čitelný. + Pracovní složku %1 pro Python skript %2 se nedaří otevřít pro čtení. Bad main script file - Špatný hlavní soubor skriptu. + Nesprávný soubor s hlavním skriptem Main script file %1 for python job %2 is not readable. - Hlavní soubor %1 pro Python skript %2 není čitelný. + Hlavní soubor %1 pro Python úlohu %2 se nedaří otevřít pro čtení.. Boost.Python error in job "%1". - Boost.Python chyba ve skriptu "%1". + Boost.Python chyba ve skriptu „%1“. @@ -232,15 +232,15 @@ Výstup: - + &Cancel - &Zrušit + &Storno - + Cancel installation without changing the system. - Zrušení instalace bez změny systému. + Zrušení instalace bez provedení změn systému. @@ -265,49 +265,49 @@ Instalační program bude ukončen a všechny změny ztraceny. &Ne - + &Close &Zavřít - + Continue with setup? Pokračovat s instalací? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - Instalační program %1 provede změny na disku, aby se nainstaloval %2.<br/><strong>Změny nebude možné vrátit zpět.</strong> + Instalátor %1 provede změny na datovém úložišti, aby bylo nainstalováno %2.<br/><strong>Změny nebude možné vrátit zpět.</strong> - + &Install now &Spustit instalaci - + Go &back Jít &zpět - + &Done &Hotovo - + The installation is complete. Close the installer. - Instalace dokončena. Zavřete instalátor. + Instalace je dokončena. Ukončete instalátor. - + Error Chyba - + Installation Failed - Instalace selhala + Instalace se nezdařila @@ -320,12 +320,12 @@ Instalační program bude ukončen a všechny změny ztraceny. unparseable Python error - Chyba při parsování Python skriptu. + Chyba při zpracovávání (parse) Python skriptu. unparseable Python traceback - Chyba při parsování Python skriptu. + Chyba při zpracovávání (parse) Python záznamu volání funkcí (traceback). @@ -338,12 +338,12 @@ Instalační program bude ukončen a všechny změny ztraceny. %1 Installer - %1 Instalátor + %1 instalátor Show debug information - Ukázat ladící informace + Zobrazit ladící informace @@ -351,12 +351,12 @@ Instalační program bude ukončen a všechny změny ztraceny. Checking file system on partition %1. - Kontroluji souborový systém na oddílu %1. + Kontroluje se souborový systém na oddílu %1. The file system check on partition %1 failed. - Kontrola souborového systému na oddílu %1 selhala. + Kontrola souborového systému na oddílu %1 nedopadla dobře. @@ -364,7 +364,7 @@ Instalační program bude ukončen a všechny změny ztraceny. This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - Počítač nesplňuje minimální požadavky pro instalaci %1.<br/>Instalace nemůže pokračovat <a href="#details">Detaily...</a> + Počítač nesplňuje minimální požadavky pro instalaci %1.<br/>Instalace nemůže pokračovat <a href="#details">Podrobnosti…</a> @@ -374,12 +374,12 @@ Instalační program bude ukončen a všechny změny ztraceny. This program will ask you some questions and set up %2 on your computer. - Tento program Vám bude pokládat otázky a pomůže nainstalovat %2 na Váš počítač. + Tento program vám položí několik dotazů, aby na základě odpovědí příslušně nainstaloval %2 na váš počítač. For best results, please ensure that this computer: - Proces proběhne nejlépe, když tento počítač: + Nejlepších výsledků se dosáhne, pokud tento počítač bude: @@ -402,104 +402,104 @@ Instalační program bude ukončen a všechny změny ztraceny. <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - <strong>Ruční rozdělení disku</strong><br/>Můžete si vytvořit a upravit oddíly sami. + <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. Select storage de&vice: - Zvolte paměťové zařízení: + &Vyberte úložné zařízení: - - - + + + Current: Aktuální: - + Reuse %1 as home partition for %2. - Opakované použití %1 jako domovský oddíl pro %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, který oddíl chcete zmenšit, poté tažením spodní lišty můžete změnit jeho velikost.</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 pro provedení instalace</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ý systémový EFI oddíl. Prosím, vraťte se zpět a zkuste pro nastavení %1 použít ruční rozdělení disku. + 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 systémový oddíl EFI %1. + Pro zavedení %2 se využije EFI systémový oddíl %1. - + EFI system partition: - Systémový oddíl 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á se, že na tomto úložném zařízení není žádný operační systém. Jak chcete postupovat?<br/>Než se provedou jakékoliv změny nastavení Vašich úložných zařízení, ukáže se Vám přehled změn a budete požádáni o jejich potvrzení. + EFI systémový oddíl: - - - - <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - <strong>Vymazat disk</strong><br/>Touto volbou <font color="red">smažete</font> všechna data, která se nyní nachází na vybraném úložišti. + 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í. - - 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í jsem našel %1. Jak chcete postupovat?<br/>Než se provedou jakékoliv změny nastavení Vašich úložných zařízení, ukáže se Vám přehled změn a budete požádáni o jejich potvrzení. - - - - - - - <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - <strong>Instalovat vedle</strong><br/>Instalační program zmenší oddíl a vytvoří místo pro %1. - - - + - - + + + <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í. + + + + + + + <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 nahradí %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í již je operační systém. Jak chcete postupovat?<br/>Než se provedou jakékoliv změny nastavení Vašich úložných zařízení, ukáže se Vám přehled změn a budete požádáni o jejich potvrzení. + 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í již je několik operačních systémů. Jak chcete postupovat?<br/>Než se provedou jakékoliv změny nastavení Vašich úložných zařízení, ukáže se Vám přehled změn a budete požádáni o jejich potvrzení. + 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í. @@ -507,17 +507,17 @@ Instalační program bude ukončen a všechny změny ztraceny. Clear mounts for partitioning operations on %1 - Odpojit připojené svazky pro potřeby rozdělení oddílů na %1 + Odpojit souborové systémy před zahájením dělení %1 na oddíly Clearing mounts for partitioning operations on %1. - Odpojuji připojené svazky pro potřeby rozdělení oddílů na %1 + Odpojují se souborové systémy před zahájením dělení %1 na oddíly Cleared all mounts for %1 - Odpojeny všechny připojené svazky pro %1 + Všechny souborové systémy na %1 odpojeny @@ -530,17 +530,17 @@ Instalační program bude ukončen a všechny změny ztraceny. Clearing all temporary mounts. - Odpojuji všechny dočasné přípojné body. + Odpojují se všechny dočasné přípojné body. Cannot get list of temporary mounts. - Nelze zjistit dočasné přípojné body. + Nepodařilo se zjistit dočasné přípojné body. Cleared all temporary mounts. - Vyčištěno od všech dočasných přípojných bodů. + Všechny přípojné body odpojeny. @@ -583,7 +583,7 @@ Instalační program bude ukončen a všechny změny ztraceny. &Mount Point: - &Bod připojení: + &Přípojný bod: @@ -613,50 +613,50 @@ Instalační program bude ukončen a všechny změny ztraceny. Mountpoint already in use. Please select another one. - Bod připojení je už používán. Prosím vyberte jiný. + Tento přípojný bod už je používán – vyberte jiný. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Vytvořit nový %2MB oddíl na %4 (%3) se souborovým systémem %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Vytvořit nový <strong>%2MB</strong> oddíl na <strong>%4</strong> (%3) se souborovým systémem <strong>%1</strong>. - + Creating new %1 partition on %2. - Vytvářím nový %1 oddíl na %2. + Vytváří se nový %1 oddíl na %2. - + The installer failed to create partition on disk '%1'. - Instalátor selhal při vytváření oddílu na disku '%1'. + Instalátoru se nepodařilo vytvořit oddílu na datovém úložišti „%1“. - + Could not open device '%1'. - Nelze otevřít zařízení '%1'. + Nepodařilo se otevřít zařízení „%1“. - + Could not open partition table. - Nelze otevřít tabulku oddílů. + Nepodařilo se otevřít tabulku oddílů. - + The installer failed to create file system on partition %1. - Instalátor selhal při vytváření souborového systému na oddílu %1. + Instalátoru se nepodařilo vytvořit souborový systém na oddílu %1. - + The installer failed to update partition table on disk '%1'. - Instalátor selhal při aktualizaci tabulky oddílů na disku '%1'. + Instalátoru se nepodařilo zaktualizovat tabulku oddílů na jednotce „%1“. @@ -669,7 +669,7 @@ Instalační program bude ukončen a všechny změny ztraceny. Creating a new partition table will delete all existing data on the disk. - Vytvoření nové tabulky oddílů vymaže všechna data na disku. + Vytvoření nové tabulky oddílů vymaže všechna stávající data na jednotce. @@ -690,29 +690,29 @@ Instalační program bude ukončen a všechny změny ztraceny. CreatePartitionTableJob - + Create new %1 partition table on %2. Vytvořit novou %1 tabulku oddílů na %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Vytvořit novou <strong>%1</strong> tabulku oddílů na <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - Vytvářím novou %1 tabulku oddílů na %2. + Vytváří se nová %1 tabulka oddílů na %2. - + The installer failed to create a partition table on %1. - Instalátor selhal při vytváření tabulky oddílů na %1. + Instalátoru se nepodařilo vytvořit tabulku oddílů na %1. - + Could not open device %1. - Nelze otevřít zařízení %1. + Nepodařilo se otevřít zařízení %1. @@ -730,55 +730,55 @@ Instalační program bude ukončen a všechny změny ztraceny. Creating user %1. - Vytvářím uživatele %1. + Vytváří se účet pro uživatele %1. Sudoers dir is not writable. - Nelze zapisovat do adresáře Sudoers. + Nepodařilo se zapsat do složky sudoers.d. Cannot create sudoers file for writing. - Nelze vytvořit soubor sudoers pro zápis. + Nepodařilo se vytvořit soubor pro sudoers do kterého je třeba zapsat. Cannot chmod sudoers file. - Nelze použít chmod na soubor sudoers. + Nepodařilo se změnit přístupová práva (chmod) na souboru se sudoers. Cannot open groups file for reading. - Nelze otevřít soubor groups pro čtení. + Nepodařilo se otevřít soubor groups pro čtení. - + Cannot create user %1. - Nelze vytvořit uživatele %1. + Nepodařilo se vytvořit uživatele %1. - + useradd terminated with error code %1. Příkaz useradd ukončen s chybovým kódem %1. - + Cannot add user %1 to groups: %2. - Nelze přidat uživatele %1 do skupin: %2. + Nepodařilo se přidat uživatele %1 do skupin: %2. - + usermod terminated with error code %1. - usermod ukončen s chybovým kódem %1. + Příkaz usermod ukončen s chybovým kódem %1. - + Cannot set home directory ownership for user %1. - Nelze nastavit vlastnictví domovského adresáře pro uživatele %1. + Nepodařilo se nastavit vlastnictví domovské složky pro uživatele %1. - + chown terminated with error code %1. Příkaz chown ukončen s chybovým kódem %1. @@ -786,39 +786,39 @@ Instalační program bude ukončen a všechny změny ztraceny. DeletePartitionJob - + Delete partition %1. Smazat oddíl %1. - + Delete partition <strong>%1</strong>. Smazat oddíl <strong>%1</strong>. - + Deleting partition %1. Odstraňuje se oddíl %1. - + The installer failed to delete partition %1. - Instalátor selhal při odstraňování oddílu %1. + Instalátoru se nepodařilo odstranit oddíl %1. - + Partition (%1) and device (%2) do not match. - Oddíl (%1) a zařížení (%2) si neodpovídají. + Neshoda v oddílu (%1) a zařízení (%2). - + Could not open device %1. - Nelze otevřít zařízení %1. + Nedaří s otevřít zařízení %1. - + Could not open partition table. - Nelze otevřít tabulka oddílů. + Nedaří se otevřít tabulku oddílů. @@ -826,12 +826,12 @@ Instalační program bude ukončen a všechny změny ztraceny. The type of <strong>partition table</strong> on the selected storage device.<br><br>The only way to change the partition table type is to erase and recreate the partition table from scratch, which destroys all data on the storage device.<br>This installer will keep the current partition table unless you explicitly choose otherwise.<br>If unsure, on modern systems GPT is preferred. - Typ <strong>tabulky oddílů</strong>, který je na vybraném úložném zařízení.<br><br>Jedinou možností změnit typ tabulky oddílů je smazání a znovu vytvoření nové tabulky oddílů, tím se smažou všechna data na daném úložném zařízení.<br>Instalační program zanechá stávající typ tabulky oddílů, pokud si sami nenavolíte jeho změnu.<br>Pokud si nejste jisti, na moderních systémech se upřednostňuje GPT. + Typ <strong>tabulky oddílů</strong>, který je na vybraném úložném zařízení.<br><br>Jedinou možností jak změnit typ tabulky oddílů je smazání a opětovné vytvoření nové tabulky oddílů, tím se smažou všechna data na daném úložném zařízení.<br>Tento instalátor ponechá stávající typ tabulky oddílů, pokud si sami nenavolíte jeho změnu.<br>Pokud si nejste jisti, na moderních systémech se upřednostňuje GPT. This device has a <strong>%1</strong> partition table. - Zařízení má tabulku oddílů <strong>%1</strong>. + Na tomto zařízení je tabulka oddílů <strong>%1</strong>. @@ -841,12 +841,12 @@ Instalační program bude ukončen a všechny změny ztraceny. This installer <strong>cannot detect a partition table</strong> on the selected storage device.<br><br>The device either has no partition table, or the partition table is corrupted or of an unknown type.<br>This installer can create a new partition table for you, either automatically, or through the manual partitioning page. - Instalační program <strong>nedetekoval žádnou tabulku oddílů</strong> na vybraném úložném zařízení.<br><br>Toto zařízení buď žádnou tabulku nemá nebo je porušená nebo neznámeho typu.<br> Instalátor Vám může vytvořit novou tabulku oddílů - buď automaticky nebo přes ruční dělení disku. + Instalační program na zvoleném zařízení <strong>nezjistil žádnou tabulku oddílů</strong>.<br><br>Toto zařízení buď žádnou tabulku nemá nebo je porušená nebo neznámého typu.<br> Instalátor může vytvořit novou tabulku oddílů – buď automaticky nebo přes ruční rozdělení jednotky. <br><br>This is the recommended partition table type for modern systems which start from an <strong>EFI</strong> boot environment. - <br><br>Tohle je doporučený typ tabulky oddílů pro moderní systémy, které se spouští pomocí <strong>EFI</strong> spouštěcího prostředí. + <br><br>Tohle je doporučený typ tabulky oddílů pro moderní systémy, které se spouští pomocí <strong>EFI</strong> zaváděcího prostředí. @@ -859,7 +859,7 @@ Instalační program bude ukončen a všechny změny ztraceny. %1 - %2 (%3) - %1 - %2 (%3) + %1 – %2 (%3) @@ -872,12 +872,12 @@ Instalační program bude ukončen a všechny změny ztraceny. Skip writing LUKS configuration for Dracut: "/" partition is not encrypted - Přeskočit zápis nastavení LUKS pro Dracut: oddíl "/" není šifovaný + Přeskočit zápis nastavení LUKS pro Dracut: oddíl „/“ není šifrovaný Failed to open %1 - Selhalo čtení %1 + Nepodařilo se otevřít %1 @@ -918,7 +918,7 @@ Instalační program bude ukončen a všechny změny ztraceny. &Mount Point: - &Bod připojení: + &Přípojný bod: @@ -943,7 +943,7 @@ Instalační program bude ukončen a všechny změny ztraceny. Mountpoint already in use. Please select another one. - Bod připojení je už používán. Prosím vyberte jiný. + Tento přípojný bod je už používán – vyberte jiný. @@ -961,55 +961,55 @@ Instalační program bude ukončen a všechny změny ztraceny. Passphrase - Heslo: + Heslová fráze Confirm passphrase - Potvrď heslo + Potvrzení heslové fráze Please enter the same passphrase in both boxes. - Zadejte prosím stejné heslo do obou polí. + Zadejte stejnou heslovou frázi do obou kolonek. FillGlobalStorageJob - + Set partition information - Nastavit informace oddílu + Nastavit informace o oddílu - + Install %1 on <strong>new</strong> %2 system partition. - Instalovat %1 na <strong>nový</strong> %2 systémový oddíl. + Nainstalovat %1 na <strong>nový</strong> %2 systémový oddíl. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Nastavit <strong>nový</strong> %2 oddíl s přípojným bodem <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - Instalovat %2 na %3 systémový oddíl <strong>%1</strong>. + Nainstalovat %2 na %3 systémový oddíl <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Nastavit %3 oddíl <strong>%1</strong> s přípojným bodem <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. - Instalovat zavaděč na <strong>%1</strong>. + Nainstalovat zavaděč do <strong>%1</strong>. - + Setting up mount points. - Nastavuji přípojné body. + Nastavují se přípojné body. @@ -1027,28 +1027,28 @@ Instalační program bude ukončen a všechny změny ztraceny. <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>Instalace je u konce.</h1><br/>%1 byl nainstalován na Váš počítač.<br/>Teď můžete počítač restartovat a přejít do čerstvě naistalovaného systému, nebo můžete pokračovat v práci s živým prostředím %2. + <h1>Instalace je u konce.</h1><br/>%1 byl nainstalován na váš počítač.<br/>Nyní ho můžete restartovat a přejít do čerstvě nainstalovaného systému, nebo můžete pokračovat v práci ve stávajícím prostředím %2, spuštěným z instalačního média. <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. - <h1>Instalace selhala</h1><br/>%1 nebyl instalován na váš počítač.<br/>Hlášení o chybě: %2. + <h1>Instalace se nezdařila</h1><br/>%1 nebyl instalován na váš počítač.<br/>Hlášení o chybě: %2. FinishedViewStep - + Finish Dokončit - + Installation Complete Instalace dokončena - + The installation of %1 is complete. Instalace %1 je dokončena. @@ -1068,32 +1068,32 @@ Instalační program bude ukončen a všechny změny ztraceny. Formatting partition %1 with file system %2. - Formátuji oddíl %1 souborovým systémem %2. + Vytváření souborového systému %2 na oddílu %1. The installer failed to format partition %1 on disk '%2'. - Instalátor selhal při formátování oddílu %1 na disku '%2'. + Instalátoru se nepodařilo vytvořit souborový systém na oddílu %1 jednotky datového úložiště „%2“. Could not open device '%1'. - Nelze otevřít zařízení '%1'. + Nedaří se otevřít zařízení „%1“. Could not open partition table. - Nelze otevřít tabulku oddílů. + Nedaří se otevřít tabulku oddílů. The installer failed to create file system on partition %1. - Instalátor selhal při vytváření systému souborů na oddílu %1. + Instalátoru se nezdařilo vytvořit souborový systém na oddílu %1. The installer failed to update partition table on disk '%1'. - Instalátor selhal při aktualizaci tabulky oddílů na disku '%1'. + Instalátoru se nezdařilo aktualizovat tabulku oddílů na jednotce „%1“. @@ -1103,19 +1103,19 @@ Instalační program bude ukončen a všechny změny ztraceny. Konsole not installed - Konsole není nainstalována. + Konsole není nainstalované. Please install the kde konsole and try again! - Prosím naistalujte kde konsoli a zkuste to znovu! + Nainstalujte KDE Konsole a zkuste to znovu! Executing script: &nbsp;<code>%1</code> - Spouštím skript: &nbsp;<code>%1</code> + Spouštění skriptu: &nbsp;<code>%1</code> @@ -1129,12 +1129,12 @@ Instalační program bude ukončen a všechny změny ztraceny. KeyboardPage - + Set keyboard model to %1.<br/> Nastavit model klávesnice na %1.<br/> - + Set keyboard layout to %1/%2. Nastavit rozložení klávesnice na %1/%2. @@ -1152,17 +1152,17 @@ Instalační program bude ukončen a všechny změny ztraceny. System locale setting - Nastavení locale systému + Místní a jazykové nastavení systému The system locale setting affects the language and character set for some command line user interface elements.<br/>The current setting is <strong>%1</strong>. - Nastavené locale systému ovlivňuje jazyk a znakovou sadu pro UI příkazové řádky.<br/>Současné nastavení je <strong>%1</strong>. + Místní a jazykové nastavení systému ovlivňuje jazyk a znakovou sadu některých prvků rozhraní příkazového řádku.<br/>Stávající nastavení je <strong>%1</strong>. &Cancel - &Zrušit + &Storno @@ -1180,59 +1180,59 @@ Instalační program bude ukončen a všechny změny ztraceny. I accept the terms and conditions above. - Souhlasím s podmínkami uvedenými výše. + Souhlasím s výše uvedenými podmínkami. <h1>License Agreement</h1>This setup procedure will install proprietary software that is subject to licensing terms. - <h1>Licenční ujednání</h1>Tato instalace nainstaluje některý proprietární software, který podléhá licenčním podmínkám. + <h1>Licenční ujednání</h1>Tato instalace nainstaluje také proprietární software, který podléhá licenčním podmínkám. Please review the End User License Agreements (EULAs) above.<br/>If you do not agree with the terms, the setup procedure cannot continue. - Prosím projděte si End User License Agreements (EULAs) výše.<br/> Pokud s nimi nesouhlasíte, ukončete instalační proces. + Projděte si výše uvedené „licenční smlouvy s koncovým uživatelem“ (EULA).<br/> Pokud s podmínkami v nich nesouhlasíte, ukončete instalační proces. <h1>License Agreement</h1>This setup procedure can install proprietary software that is subject to licensing terms in order to provide additional features and enhance the user experience. - <h1>Licenční ujednání</h1>Tato instalace může nainstalovat některý proprietární software, který podléhá licenčním podmínkám, aby navíc poskytnul některé funkce a zajistil uživatelskou přivětivost. + <h1>Licenční ujednání</h1>Tato instalace může nainstalovat také proprietární software, který podléhá licenčním podmínkám, ale který poskytuje některé další funkce a zlepšuje uživatelskou přivětivost. Please review the End User License Agreements (EULAs) above.<br/>If you do not agree with the terms, proprietary software will not be installed, and open source alternatives will be used instead. - Prosím projděte si End User License Agreements (EULAs) výše.<br/> Pokud s nimi nesouhlasíte, místo proprietárního software budou použity open source alternativy. + Projděte si výše uvedené „licenční smlouvy s koncovým uživatelem“ (EULA).<br/> Pokud s podmínkami v nich nesouhlasíte, místo proprietárního software budou použity open source alternativy. <strong>%1 driver</strong><br/>by %2 %1 is an untranslatable product name, example: Creative Audigy driver - <strong>%1 ovladač</strong><br/> %2 + <strong>%1 ovladač</strong><br/>od %2 <strong>%1 graphics driver</strong><br/><font color="Grey">by %2</font> %1 is usually a vendor name, example: Nvidia graphics driver - <strong>%1 graphický ovladač</strong><br/><font color="Grey"> %2</font> + <strong>%1 ovladač grafiky</strong><br/><font color="Grey">od %2</font> <strong>%1 browser plugin</strong><br/><font color="Grey">by %2</font> - <strong>%1 doplněk prohlížeče</strong><br/><font color="Grey"> %2</font> + <strong>%1 doplněk prohlížeče</strong><br/><font color="Grey">od %2</font> <strong>%1 codec</strong><br/><font color="Grey">by %2</font> - <strong>%1 kodek</strong><br/><font color="Grey"> %2</font> + <strong>%1 kodek</strong><br/><font color="Grey">od %2</font> <strong>%1 package</strong><br/><font color="Grey">by %2</font> - <strong>%1 balíček</strong><br/><font color="Grey"> %2</font> + <strong>%1 balíček</strong><br/><font color="Grey">od %2</font> <strong>%1</strong><br/><font color="Grey">by %2</font> - <strong>%1</strong><br/><font color="Grey"> %2</font> + <strong>%1</strong><br/><font color="Grey">od %2</font> @@ -1253,12 +1253,12 @@ Instalační program bude ukončen a všechny změny ztraceny. The system language will be set to %1. - Jazyk systému bude nastaven na 1%. + Jazyk systému bude nastaven na %1. The numbers and dates locale will be set to %1. - Čísla a data národního prostředí budou nastavena na %1. + Formát zobrazení čísel, data a času bude nastaven dle národního prostředí %1. @@ -1274,7 +1274,7 @@ Instalační program bude ukončen a všechny změny ztraceny. &Change... - &Změnit... + &Změnit… @@ -1293,10 +1293,10 @@ Instalační program bude ukončen a všechny změny ztraceny. Loading location data... - Načítání informací o poloze... + Načítání informací o poloze… - + Location Poloha @@ -1316,22 +1316,22 @@ Instalační program bude ukončen a všechny změny ztraceny. Could not create target for moving file system on partition %1. - Nelze vytvořit cíl pro přesouvaný soubor na oddílu %1. + Nedaří se vytvořit cíl pro přesouvaný souborový systém na oddílu %1. Moving of partition %1 failed, changes have been rolled back. - Posun oddílu %1 selhalo, změny byly vráceny zpět. + Posunutí oddílu %1 se nezdařilo, změny byly vráceny zpět. Moving of partition %1 failed. Roll back of the changes have failed. - Posun oddílu %1 selhalo. Změny nelze vrátit zpět. + Posunutí oddílu %1 se nezdařilo. Změny se nepodařilo vrátit zpět. Updating boot sector after the moving of partition %1 failed. - Aktualizace zaváděcího sektoru po přesunu oddílu %1 selhala. + Aktualizace zaváděcího sektoru po přesunu oddílu %1 se nezdařila. @@ -1339,33 +1339,34 @@ Instalační program bude ukončen a všechny změny ztraceny. Výchozí a koncová velikost logického sektoru si neodpovídají. Tato operace není v současnosti podporovaná. - + Source and target for copying do not overlap: Rollback is not required. Zdroj a cíl kopírování se nepřekrývají: Není nutné vracet změny. - - + + Could not open device %1 to rollback copying. - Nelze otevřít zařízení %1 pro zpětné kopírování. + Nelze otevřít zařízení %1 pro vrácení kopírování zpět. NetInstallPage - + Name Jméno - + Description Popis - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) - Síťová instalace. (Zakázáno: Nelze načíst seznamy balíků, zkontrolujte připojení k síti) + Síťová instalace. (Vypnuto: Nedaří se stáhnout seznamy balíčků – zkontrolujte připojení k síti) @@ -1373,7 +1374,7 @@ Instalační program bude ukončen a všechny změny ztraceny. Package selection - Výběr balíků + Výběr balíčků @@ -1381,7 +1382,7 @@ Instalační program bude ukončen a všechny změny ztraceny. Form - Form + Formulář @@ -1391,7 +1392,7 @@ Instalační program bude ukončen a všechny změny ztraceny. Type here to test your keyboard - Pište sem pro test klávesnice + Klávesnici vyzkoušejte psaním sem @@ -1399,7 +1400,7 @@ Instalační program bude ukončen a všechny změny ztraceny. Form - Form + Formulář @@ -1416,7 +1417,7 @@ Instalační program bude ukončen a všechny změny ztraceny. font-weight: normal - font-weight: normal + šířka písma: normální @@ -1431,17 +1432,17 @@ Instalační program bude ukončen a všechny změny ztraceny. <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>Vložte stejné heslo dvakrát pro kontrolu překlepů. Dobré heslo se bude skládat z písmen, čísel a interpunkce a mělo by být alespoň osm znaků dlouhé. Heslo byste měli pravidelně měnit.</small> + <small>Zadejte heslo dvakrát stejně pro kontrolu překlepů. Dobré heslo se bude skládat z písmen, čísel a interpunkce a mělo by být alespoň osm znaků dlouhé. Heslo byste měli pravidelně měnit.</small> What is the name of this computer? - Jaké je jméno tohoto počítače? + Jaký je název tohoto počítače? <small>This name will be used if you make the computer visible to others on a network.</small> - <small>Tímto jménem se bude počítač zobrazovat ostatním počítačům v síti.</small> + <small>Pod tímto názvem se bude počítač zobrazovat ostatním počítačům v síti.</small> @@ -1451,12 +1452,12 @@ Instalační program bude ukončen a všechny změny ztraceny. Use the same password for the administrator account. - Použít stejné heslo i pro účet administrátora. + Použít stejné heslo i pro účet správce systému. Choose a password for the administrator account. - Zvolte si heslo pro účet administrátora. + Zvolte si heslo pro účet správce systému. @@ -1467,42 +1468,42 @@ Instalační program bude ukončen a všechny změny ztraceny. PartitionLabelsView - + Root - Root - - - - Home - Home + Kořenový (root) - Boot - Boot + Home + Složky uživatelů (home) - - EFI system - EFI systém + + Boot + Zaváděcí (boot) - Swap - Swap + EFI system + EFI systémový + Swap + Odkládání str. z oper. paměti (swap) + + + New partition for %1 Nový oddíl pro %1 - + New partition Nový oddíl - + %1 %2 %1 %2 @@ -1524,7 +1525,7 @@ Instalační program bude ukončen a všechny změny ztraceny. Name - Jméno + Název @@ -1587,7 +1588,7 @@ Instalační program bude ukončen a všechny změny ztraceny. Are you sure you want to create a new partition table on %1? - Opravdu si přejete vytvořit novou tabulku oddílů na %1? + Opravdu chcete na %1 vytvořit novou tabulku oddílů? @@ -1595,7 +1596,7 @@ Instalační program bude ukončen a všechny změny ztraceny. Gathering system information... - Shromažďuji informace o systému... + Shromažďování informací o systému… @@ -1605,12 +1606,12 @@ Instalační program bude ukončen a všechny změny ztraceny. Install %1 <strong>alongside</strong> another operating system. - Instalovat %1 <strong>vedle</strong> dalšího operačního systému. + Nainstalovat %1 <strong>vedle</strong> dalšího operačního systému. <strong>Erase</strong> disk and install %1. - <strong>Smazat</strong> disk a nainstalovat %1. + <strong>Smazat</strong> obsah jednotky a nainstalovat %1. @@ -1620,37 +1621,37 @@ Instalační program bude ukončen a všechny změny ztraceny. <strong>Manual</strong> partitioning. - <strong>Ruční</strong> dělení disku. + <strong>Ruční</strong> dělení jednotky. Install %1 <strong>alongside</strong> another operating system on disk <strong>%2</strong> (%3). - Instalovat %1 <strong>vedle</strong> dalšího operačního systému na disk <strong>%2</strong> (%3). + Nainstalovat %1 <strong>vedle</strong> dalšího operačního systému na disk <strong>%2</strong> (%3). <strong>Erase</strong> disk <strong>%2</strong> (%3) and install %1. - <strong>Smazat</strong> disk <strong>%2</strong> (%3) a instalovat %1. + <strong>Vymazat</strong> obsah jednotky <strong>%2</strong> (%3) a nainstalovat %1. <strong>Replace</strong> a partition on disk <strong>%2</strong> (%3) with %1. - <strong>Nahradit</strong> oddíl na disku <strong>%2</strong> (%3) %1. + <strong>Nahradit</strong> oddíl na jednotce <strong>%2</strong> (%3) %1. <strong>Manual</strong> partitioning on disk <strong>%1</strong> (%2). - <strong>Ruční</strong> dělení disku <strong>%1</strong> (%2). + <strong>Ruční</strong> dělení jednotky <strong>%1</strong> (%2). Disk <strong>%1</strong> (%2) - Disk <strong>%1</strong> (%2) + Jednotka <strong>%1</strong> (%2) Current: - Současný: + Stávající: @@ -1660,22 +1661,22 @@ Instalační program bude ukončen a všechny změny ztraceny. No EFI system partition configured - Není nakonfigurován žádný EFI systémový oddíl + Není nastavený žádný EFI systémový oddíl An EFI system partition is necessary to start %1.<br/><br/>To configure an EFI system partition, go back and select or create a FAT32 filesystem with the <strong>esp</strong> flag enabled and mount point <strong>%2</strong>.<br/><br/>You can continue without setting up an EFI system partition but your system may fail to start. - Pro spuštění %1 je potřeba systémový oddíl.<br/><br/>Pro nastavení EFI systémového oddílu se vraťte zpět a vyberte nebo vytvořte oddíl typu FAT32 s příznakem <strong>esp</strong> a přípojným bodem <strong>%2</strong>.<br/><br/>Je možné pokračovat bez nastavení systémového oddílu EFI, ale váš systém nemusí jít spustit. + Pro spuštění %1 je potřeba EFI systémový oddíl.<br/><br/>Pro nastavení EFI systémového oddílu se vraťte zpět a vyberte nebo vytvořte oddíl typu FAT32 s příznakem <strong>esp</strong> a přípojným bodem <strong>%2</strong>.<br/><br/>Je možné pokračovat bez nastavení EFI systémového oddílu, ale systém nemusí jít spustit. EFI system partition flag not set - Příznak EFI systémového oddílu není nastaven + Příznak EFI systémového oddílu není nastavený An EFI system partition is necessary to start %1.<br/><br/>A partition was configured with mount point <strong>%2</strong> but its <strong>esp</strong> flag is not set.<br/>To set the flag, go back and edit the partition.<br/><br/>You can continue without setting the flag but your system may fail to start. - Pro spuštění %1 je potřeba systémový oddíl.<br/><br/>Byl nakonfigurován oddíl s přípojným bodem <strong>%2</strong> ale nemá nastaven příznak <strong>esp</strong>.<br/>Pro nastavení příznaku se vraťte zpět a upravte oddíl.<br/><br/>Je možné pokračovat bez nastavení příznaku, ale váš systém nemusí jít spustit. + Pro spuštění %1 je potřeba EFI systémový oddíl.<br/><br/>Byl nastaven oddíl s přípojným bodem <strong>%2</strong> ale nemá nastaven příznak <strong>esp</strong>.<br/>Pro nastavení příznaku se vraťte zpět a upravte oddíl.<br/><br/>Je možné pokračovat bez nastavení příznaku, ale systém nemusí jít spustit. @@ -1702,22 +1703,22 @@ Instalační program bude ukončen a všechny změny ztraceny. Výchozí - + unknown neznámý - + extended rozšířený - + unformatted nenaformátovaný - + swap odkládací oddíl @@ -1777,12 +1778,12 @@ Instalační program bude ukončen a všechny změny ztraceny. <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - <strong>%4</strong><br/><br/>Oddíl %1 je příliš malý pro %2. Prosím vyberte oddíl s kapacitou alespoň %3 GiB. + <strong>%4</strong><br/><br/>Oddíl %1 je příliš malý pro %2. Vyberte oddíl s kapacitou alespoň %3 GiB. <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - <strong>%2</strong><br/><br/>Systémový oddíl EFI nenalezen. Prosím vraťte se a zvolte ruční rozdělení disku pro nastavení %1. + <strong>%2</strong><br/><br/>EFI systémový oddíl nenalezen. Vraťte se, zvolte ruční rozdělení jednotky, a nastavte %1. @@ -1794,70 +1795,70 @@ Instalační program bude ukončen a všechny změny ztraceny. The EFI system partition at %1 will be used for starting %2. - Pro zavedení %2 se využije systémový oddíl EFI %1. + Pro zavedení %2 se využije EFI systémový oddíl %1. EFI system partition: - Systémový oddíl EFI: + EFI systémový oddíl: RequirementsChecker - + Gathering system information... - Shromažďuji informace o systému... + Shromažďování informací o systému… - + has at least %1 GB available drive space - má minimálně %1 GB dostupného místa na disku. + má minimálně %1 GB dostupného místa na jednotce - + There is not enough drive space. At least %1 GB is required. - Nedostatek místa na disku. Je potřeba nejméně %1 GB. + Nedostatek místa na úložišti. Je potřeba nejméně %1 GB. - + has at least %1 GB working memory má alespoň %1 GB operační paměti - + The system does not have enough working memory. At least %1 GB is required. - Systém nemá dostatek paměti. Je potřeba nejméně %1 GB. + Systém nemá dostatek operační paměti. Je potřeba nejméně %1 GB. - + is plugged in to a power source je připojený ke zdroji napájení - + The system is not plugged in to a power source. Systém není připojen ke zdroji napájení. - + is connected to the Internet je připojený k Internetu - + The system is not connected to the Internet. Systém není připojený k Internetu. - + The installer is not running with administrator rights. - Instalační program není spuštěn s právy administrátora. + Instalační program není spuštěn s právy správce systému. - + The screen is too small to display the installer. - Obrazovka je příliš malá pro zobrazení instalátoru. + Rozlišení obrazovky je příliš malé pro zobrazení instalátoru. @@ -1865,12 +1866,12 @@ Instalační program bude ukončen a všechny změny ztraceny. Resize file system on partition %1. - Změnit velikost systému souborů na oddílu %1. + Změnit velikost souborového systému na oddílu %1. Parted failed to resize filesystem. - Parted selhal při změně velikosti systému souborů. + Nástroji parted se nezdařilo změnit velikost souborového systému. @@ -1893,31 +1894,31 @@ Instalační program bude ukončen a všechny změny ztraceny. Resizing %2MB partition %1 to %3MB. - Měním velikost %2MB oddílu %1 na %3MB. + Mění se velikost %2MB oddílu %1 na %3MB. The installer failed to resize partition %1 on disk '%2'. - Instalátor selhal při změně velikosti oddílu %1 na disku '%2'. + Instalátoru se nezdařilo změnit velikost oddílu %1 na jednotce „%2“. Could not open device '%1'. - Nelze otevřít zařízení '%1'. + Nedaří se otevřít zařízení „%1“. ScanningDialog - + Scanning storage devices... - Skenuji úložná zařízení... + Skenování úložných zařízení… - + Partitioning - Dělení disku + Dělení jednotky @@ -1925,17 +1926,17 @@ Instalační program bude ukončen a všechny změny ztraceny. Set hostname %1 - Nastavit jméno počítače %1 + Nastavit název počítače %1 Set hostname <strong>%1</strong>. - Nastavit hostname <strong>%1</strong>. + Nastavit název počítače <strong>%1</strong>. Setting hostname %1. - Nastavuji hostname %1. + Nastavuje se název počítače %1. @@ -1947,7 +1948,7 @@ Instalační program bude ukončen a všechny změny ztraceny. Cannot write hostname to target system - Nelze zapsat jméno počítače na cílový systém + Název počítače se nedaří zapsat do cílového systému @@ -1960,24 +1961,24 @@ Instalační program bude ukončen a všechny změny ztraceny. Failed to write keyboard configuration for the virtual console. - Selhal zápis konfigurace klávesnice do virtuální konzole. + Zápis nastavení klávesnice pro virtuální konzoli se nezdařil. Failed to write to %1 - Selhal zápis do %1 + Zápis do %1 se nezdařil Failed to write keyboard configuration for X11. - Selhal zápis konfigurace klávesnice pro X11. + Zápis nastavení klávesnice pro grafický server X11 se nezdařil. Failed to write keyboard configuration to existing /etc/default directory. - Selhal zápis nastavení klávesnice do existující složky /etc/default. + Zápis nastavení klávesnice do existující složky /etc/default se nezdařil. @@ -1985,7 +1986,7 @@ Instalační program bude ukončen a všechny změny ztraceny. Set flags on partition %1. - Nastavit příznak oddílu %1. + Nastavit příznaky na oddílu %1. @@ -1995,22 +1996,22 @@ Instalační program bude ukončen a všechny změny ztraceny. Set flags on new partition. - Nastavit příznak na novém oddílu. + Nastavit příznaky na novém oddílu. Clear flags on partition <strong>%1</strong>. - Smazat příznaky oddílu <strong>%1</strong>. + Vymazat příznaky z oddílu <strong>%1</strong>. Clear flags on %1MB <strong>%2</strong> partition. - Smazat příznaky na %1MB <strong>%2</strong> oddílu. + Vymazat příznaky z %1MB <strong>%2</strong> oddílu. Clear flags on new partition. - Smazat příznaky na novém oddílu. + Vymazat příznaky z nového oddílu. @@ -2045,7 +2046,7 @@ Instalační program bude ukončen a všechny změny ztraceny. Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - Nastavování příznaků <strong>%2</strong> na oddíle <strong>%1</strong>. + Nastavování příznaků <strong>%2</strong> na oddílu <strong>%1</strong>. @@ -2060,22 +2061,22 @@ Instalační program bude ukončen a všechny změny ztraceny. The installer failed to set flags on partition %1. - Instalátor selhal při nastavení příznaku oddílu %1. + Instalátoru se nepodařilo nastavit příznak na oddílu %1 Could not open device '%1'. - Nelze otevřít zařízení '%1'. + Nedaří se otevřít zařízení „%1“. Could not open partition table on device '%1'. - Nelze otevřít tabulku oddílů na zařízení '%1'. + Nedaří se otevřít tabulku oddílů na zařízení „%1“. Could not find partition '%1'. - Oddíl '%1' nebyl nalezen. + Oddíl „%1“ nebyl nalezen. @@ -2088,50 +2089,50 @@ Instalační program bude ukončen a všechny změny ztraceny. Failed to change the geometry of the partition. - Selhala změna geometrie oddílu. + Změna geometrie oddílu se nezdařila. SetPasswordJob - + Set password for user %1 Nastavit heslo pro uživatele %1 - + Setting password for user %1. - Nastavuji heslo pro uživatele %1. + Nastavuje se heslo pro uživatele %1. - + Bad destination system path. - Špatná cílová systémová cesta. + Chybný popis cílového umístění systému. - + rootMountPoint is %1 - rootMountPoint je %1 + Přípojný bod kořenového souborového systému (root) je %1 - + Cannot disable root account. - Nelze zakázat účet root. + Nelze zakázat účet správce systému (root). - + passwd terminated with error code %1. Příkaz passwd ukončen s chybovým kódem %1. - + Cannot set password for user %1. - Nelze nastavit heslo uživatele %1. + Nepodařilo se nastavit heslo uživatele %1. - + usermod terminated with error code %1. - usermod ukončen s chybovým kódem %1. + Příkaz usermod ukončen s chybovým kódem %1. @@ -2144,12 +2145,12 @@ Instalační program bude ukončen a všechny změny ztraceny. Cannot access selected timezone path. - Není přístup k vybrané cestě časové zóny. + Není přístup k vybranému popisu umístění časové zóny. Bad path: %1 - Špatná cesta: %1 + Chybný popis umístění: %1 @@ -2159,25 +2160,25 @@ Instalační program bude ukončen a všechny změny ztraceny. Link creation failed, target: %1; link name: %2 - Vytváření odkazu selhalo, cíl: %1; jméno odkazu: %2 + Odkaz se nepodařilo vytvořit, cíl: %1; název odkazu: %2 Cannot set timezone, - Nelze nastavit časovou zónu. + Nelze nastavit časovou zónu, Cannot open /etc/timezone for writing - Nelze otevřít /etc/timezone pro zápis + Soubor /etc/timezone se nedaří otevřít pro zápis SummaryPage - + This is an overview of what will happen once you start the install procedure. - Tohle je přehled událostí instalačního procesu. + Toto je přehled událostí které nastanou po spuštění instalačního procesu. @@ -2185,47 +2186,57 @@ Instalační program bude ukončen a všechny změny ztraceny. Summary - Shrnutí + Souhrn 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 čísla. + Vaše uživatelské jméno obsahuje neplatné znaky. Jsou povolena pouze malá písmena a (arabské) číslice. - + Your hostname is too short. - Vaše hostname je příliš krátké. + Název stroje je příliš krátký. - + Your hostname is too long. - Vaše hostname je příliš dlouhé. + Název stroje je příliš dlouhý. - + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - Vaše hostname obsahuje neplatné znaky. Jsou povoleny pouze písmena, čísla a pomlčky. + Název stroje obsahuje neplatné znaky. Jsou povoleny pouze písmena, číslice a spojovníky. - + Your passwords do not match! - Zadaná hesla se neshodují! + Zadání hesla se neshodují! + + + + Password is too short + Heslo je příliš krátké + + + + Password is too long + Heslo je příliš dlouhé UsersViewStep - + Users Uživatelé @@ -2240,7 +2251,7 @@ Instalační program bude ukončen a všechny změny ztraceny. &Language: - &Jazyk + &Jazyk: @@ -2260,7 +2271,7 @@ Instalační program bude ukončen a všechny změny ztraceny. &About - &O nás + &O projektu @@ -2270,7 +2281,7 @@ Instalační program bude ukončen a všechny změny ztraceny. <h1>Welcome to the Calamares installer for %1.</h1> - <h1>Vítá vás instalační program Calamares pro %1.</h1> + <h1>Vítejte v Calamares, instalačním programu (nejen) pro %1.</h1> diff --git a/lang/calamares_da.ts b/lang/calamares_da.ts index 5ce8ee77e..9bd7345f8 100644 --- a/lang/calamares_da.ts +++ b/lang/calamares_da.ts @@ -232,13 +232,13 @@ Output: - + &Cancel &Annullér - + Cancel installation without changing the system. Annullér installation uden at ændre systemet. @@ -265,47 +265,47 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.&Nej - + &Close &Luk - + Continue with setup? Fortsæt med installation? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> %1-installationsprogrammet er ved at lave ændringer til din disk for at installere %2. <br/><strong>Det vil ikke være muligt at fortryde disse ændringer.</strong> - + &Install now &Installér nu - + Go &back Gå &tilbage - + &Done &Færdig - + The installation is complete. Close the installer. Installationen er fuldført. Luk installationsprogrammet. - + Error Fejl - + Installation Failed Installation mislykkedes @@ -405,12 +405,12 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.<strong>Manuel partitionering</strong><br/>Du kan selv oprette og ændre størrelse på partitioner. - + Boot loader location: Bootloaderplacering: - + %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. @@ -421,83 +421,83 @@ 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. Denne lagerenhed 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/>Dette vil <font color="red">slette</font> alt data der er 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. Denne lagerenhed 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. - - - - + + + + <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. Denne lagerenhed 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. Denne lagerenhed 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. @@ -619,42 +619,42 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Opret en ny %2 MB partition på %4 (%3) med %1-filsystem. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Opret en ny <strong>%2 MB</strong> partition på <strong>%4</strong> (%3) med <strong>%1</strong>-filsystem. - + Creating new %1 partition on %2. - Opretter ny %1 partition på %2. + Opretter ny %1-partition på %2. - + The installer failed to create partition on disk '%1'. Installationsprogrammet kunne ikke oprette partition på disk '%1'. - + Could not open device '%1'. Kunne ikke åbne enhed '%1'. - + Could not open partition table. Kunne ikke åbne partitionstabel. - + The installer failed to create file system on partition %1. Installationsprogrammet kunne ikke oprette filsystem på partition %1. - + The installer failed to update partition table on disk '%1'. Installationsprogrammet kunne ikke opdatere partitionstabel på disk '%1'. @@ -690,27 +690,27 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. CreatePartitionTableJob - + Create new %1 partition table on %2. - Opret en ny %1 partitionstabel på %2. + Opret en ny %1-partitionstabel på %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - Opret en ny <strong>%1</strong> partitionstabel på <strong>%2</strong> (%3). + Opret en ny <strong>%1</strong>-partitionstabel på <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Opretter ny %1-partitionstabel på %2. - + The installer failed to create a partition table on %1. Installationsprogrammet kunne ikke oprette en partitionstabel på %1. - + Could not open device %1. Kunne ikke åbne enhed %1. @@ -753,32 +753,32 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.Kan ikke åbne gruppernes fil til læsning. - + Cannot create user %1. Kan ikke oprette bruger %1. - + useradd terminated with error code %1. useradd stoppet med fejlkode %1. - + Cannot add user %1 to groups: %2. Kan ikke tilføje bruger %1 til grupperne: %2. - + usermod terminated with error code %1. usermod stoppet med fejlkode %1. - + Cannot set home directory ownership for user %1. Kan ikke sætte hjemmemappens ejerskab for bruger %1. - + chown terminated with error code %1. chown stoppet med fejlkode %1. @@ -786,37 +786,37 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. DeletePartitionJob - + Delete partition %1. Slet partition %1. - + Delete partition <strong>%1</strong>. Slet partition <strong>%1</strong>. - + Deleting partition %1. Sletter partition %1. - + The installer failed to delete partition %1. Installationsprogrammet kunne ikke slette partition %1. - + Partition (%1) and device (%2) do not match. Partition (%1) og enhed (%2) matcher ikke. - + Could not open device %1. Kunne ikke åbne enhed %1. - + Could not open partition table. Kunne ikke åbne partitionstabel. @@ -977,37 +977,37 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. FillGlobalStorageJob - + Set partition information Sæt partitionsinformation - + Install %1 on <strong>new</strong> %2 system partition. - Installér %1 på <strong>nye</strong> %2-systempartition. + Installér %1 på <strong>ny</strong> %2-systempartition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Opsæt den <strong>nye</strong> %2 partition med monteringspunkt <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Installér %2 på %3-systempartition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Opsæt %3 partition <strong>%1</strong> med monteringspunkt <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Installér bootloader på <strong>%1</strong>. - + Setting up mount points. Opsætter monteringspunkter. @@ -1038,17 +1038,17 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. FinishedViewStep - + Finish Færdig - + Installation Complete Installation fuldført - + The installation of %1 is complete. Installationen af %1 er fuldført. @@ -1129,12 +1129,12 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. KeyboardPage - + Set keyboard model to %1.<br/> Sæt tastaturmodel til %1.<br/> - + Set keyboard layout to %1/%2. Sæt tastaturlayout til %1/%2. @@ -1296,7 +1296,7 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.Indlæser placeringsdata... - + Location Placering @@ -1339,13 +1339,13 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.De logiske sektorstørrelser for kilden og destination for kopiering er ikke ens. Det understøttes ikke på nuværende tidspunkt. - + Source and target for copying do not overlap: Rollback is not required. Kilde og destination for kopiering overlapper ikke: Tilbageføring ikke påkrævet. - - + + Could not open device %1 to rollback copying. Kunne ikke åbne enhed %1 til tilbageføring af kopiering. @@ -1353,17 +1353,18 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. NetInstallPage - + Name Navn - + Description Beskrivelse - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) Netværksinstallation. (Deaktiveret: Kunne ikke hente pakkelister, tjek din netværksforbindelse) @@ -1467,42 +1468,42 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. PartitionLabelsView - + Root Rod - + Home Hjem - + Boot Boot - + EFI system EFI-system - + Swap Swap - + New partition for %1 Ny partition til %1 - + New partition Ny partition - + %1 %2 %1 %2 @@ -1702,22 +1703,22 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.Standard - + unknown ukendt - + extended udvidet - + unformatted uformatteret - + swap swap @@ -1805,57 +1806,57 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. RequirementsChecker - + Gathering system information... Indsamler systeminformation... - + has at least %1 GB available drive space har mindst %1 GB ledig plads på drevet - + There is not enough drive space. At least %1 GB is required. Der er ikke nok ledig plads på drevet. Mindst %1 GB er påkrævet. - + has at least %1 GB working memory har mindst %1 GB arbejdshukommelse - + The system does not have enough working memory. At least %1 GB is required. Systemet har ikke nok arbejdshukommelse. Mindst %1 GB er påkrævet. - + is plugged in to a power source er tilsluttet en strømkilde - + The system is not plugged in to a power source. Systemet er ikke tilsluttet en strømkilde. - + is connected to the Internet er forbundet til internettet - + The system is not connected to the Internet. Systemet er ikke forbundet til internettet. - + The installer is not running with administrator rights. Installationsprogrammet kører ikke med administratorrettigheder. - + The screen is too small to display the installer. Skærmen er for lille til at vise installationsprogrammet. @@ -1910,12 +1911,12 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. ScanningDialog - + Scanning storage devices... Skanner lagerenheder... - + Partitioning Partitionering @@ -2094,42 +2095,42 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. SetPasswordJob - + Set password for user %1 Sæt adgangskode for bruger %1 - + Setting password for user %1. Sætter adgangskode for bruger %1. - + Bad destination system path. Ugyldig destinationssystemsti. - + rootMountPoint is %1 rodMonteringsPunkt er %1 - + Cannot disable root account. Kan ikke deaktivere root-konto. - + passwd terminated with error code %1. passwd stoppet med fejlkode %1. - + Cannot set password for user %1. Kan ikke sætte adgangskode for bruger %1. - + usermod terminated with error code %1. usermod stoppet med fejlkode %1. @@ -2175,7 +2176,7 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. SummaryPage - + This is an overview of what will happen once you start the install procedure. Dette er et overblik over hvad der vil ske når du starter installationsprocessen. @@ -2191,41 +2192,51 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. 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! + + + Password is too short + Adgangskoden er for kort + + + + Password is too long + Adgangskoden er for lang + UsersViewStep - + Users Brugere diff --git a/lang/calamares_de.ts b/lang/calamares_de.ts index ff93c6377..aaf584536 100644 --- a/lang/calamares_de.ts +++ b/lang/calamares_de.ts @@ -232,13 +232,13 @@ Ausgabe: - + &Cancel &Abbrechen - + Cancel installation without changing the system. Lösche die Installation ohne das System zu ändern. @@ -265,47 +265,47 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. &Nein - + &Close &Schließen - + Continue with setup? Setup fortsetzen? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> Das %1 Installationsprogramm wird Änderungen an Ihrer Festplatte vornehmen, um %2 zu installieren.<br/><strong>Diese Änderungen können nicht rückgängig gemacht werden.</strong> - + &Install now Jetzt &installieren - + Go &back Gehe &zurück - + &Done &Erledigt - + The installation is complete. Close the installer. Die Installation ist abgeschlossen. Schließe das Installationsprogramm. - + Error Fehler - + Installation Failed Installation gescheitert @@ -405,12 +405,12 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. <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. @@ -421,83 +421,83 @@ 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. - - - - + + + + <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. @@ -619,42 +619,42 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Erstelle eine neue Partition mit einer Größe von %2MB auf %4 (%3) mit dem Dateisystem %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Erstelle eine neue Partition mit einer Größe von <strong>%2MB</strong> auf <strong>%4</strong> (%3) mit dem Dateisystem <strong>%1</strong>. - + Creating new %1 partition on %2. Erstelle eine neue %1 Partition auf %2. - + The installer failed to create partition on disk '%1'. Das Installationsprogramm scheiterte beim Erstellen der Partition auf Datenträger '%1'. - + Could not open device '%1'. Konnte Gerät '%1' nicht öffnen. - + Could not open partition table. Konnte Partitionstabelle nicht öffnen. - + The installer failed to create file system on partition %1. Das Installationsprogramm scheiterte beim Erstellen des Dateisystems auf Partition %1. - + The installer failed to update partition table on disk '%1'. Das Installationsprogramm scheiterte beim Aktualisieren der Partitionstabelle auf Datenträger '%1'. @@ -690,27 +690,27 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. CreatePartitionTableJob - + Create new %1 partition table on %2. Erstelle eine neue %1 Partitionstabelle auf %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Erstelle eine neue <strong>%1</strong> Partitionstabelle auf <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Erstelle eine neue %1 Partitionstabelle auf %2. - + The installer failed to create a partition table on %1. Das Installationsprogramm konnte die Partitionstabelle auf %1 nicht erstellen. - + Could not open device %1. Konnte Gerät %1 nicht öffnen. @@ -753,32 +753,32 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. Kann groups-Datei nicht zum Lesen öffnen. - + Cannot create user %1. Kann Benutzer %1 nicht erstellen. - + useradd terminated with error code %1. useradd wurde mit Fehlercode %1 beendet. - + Cannot add user %1 to groups: %2. Folgenden Gruppen konnte Benutzer %1 nicht hinzugefügt werden: %2. - + usermod terminated with error code %1. Usermod beendet mit Fehlercode %1. - + Cannot set home directory ownership for user %1. Kann Besitzrechte des Home-Verzeichnisses von Benutzer %1 nicht setzen. - + chown terminated with error code %1. chown wurde mit Fehlercode %1 beendet. @@ -786,37 +786,37 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. DeletePartitionJob - + Delete partition %1. Lösche Partition %1. - + Delete partition <strong>%1</strong>. Lösche Partition <strong>%1</strong>. - + Deleting partition %1. Partition %1 wird gelöscht. - + The installer failed to delete partition %1. Das Installationsprogramm konnte Partition %1 nicht löschen. - + Partition (%1) and device (%2) do not match. Partition (%1) und Gerät (%2) stimmen nicht überein. - + Could not open device %1. Kann Gerät %1 nicht öffnen. - + Could not open partition table. Kann Partitionstabelle nicht öffnen. @@ -977,37 +977,37 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. FillGlobalStorageJob - + Set partition information Setze Partitionsinformationen - + Install %1 on <strong>new</strong> %2 system partition. Installiere %1 auf <strong>neuer</strong> %2 Systempartition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Erstelle <strong>neue</strong> %2 Partition mit Einhängepunkt <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Installiere %2 auf %3 Systempartition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Erstelle %3 Partition <strong>%1</strong> mit Einhängepunkt <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Installiere Bootloader auf <strong>%1</strong>. - + Setting up mount points. Richte Einhängepunkte ein. @@ -1038,17 +1038,17 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. FinishedViewStep - + Finish Beenden - + Installation Complete - + The installation of %1 is complete. @@ -1129,12 +1129,12 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. KeyboardPage - + Set keyboard model to %1.<br/> Setze Tastaturmodell auf %1.<br/> - + Set keyboard layout to %1/%2. Setze Tastaturbelegung auf %1/%2. @@ -1296,7 +1296,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. Lade Standortdaten... - + Location Standort @@ -1339,13 +1339,13 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. Die logischen Sektorgrössen von Quelle und Ziel des Kopiervorgangs sind nicht identisch. Dies wird zur Zeit nicht unterstützt. - + Source and target for copying do not overlap: Rollback is not required. Quelle und Ziel für den Kopiervorgang überlappen nicht: Ein Zurücksetzen ist nicht erforderlich. - - + + Could not open device %1 to rollback copying. Kann Gerät %1 nicht öffnen, um den Kopiervorgang rückgängig zu machen. @@ -1353,17 +1353,18 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. NetInstallPage - + Name Name - + Description Beschreibung - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) Netzwerk-Installation. (Deaktiviert: Paketlisten nicht erreichbar, prüfe deine Netzwerk-Verbindung) @@ -1467,42 +1468,42 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. PartitionLabelsView - + Root Root - + Home Home - + Boot Boot - + EFI system EFI-System - + Swap Swap - + New partition for %1 Neue Partition für %1 - + New partition Neue Partition - + %1 %2 %1 %2 @@ -1702,22 +1703,22 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. Standard - + unknown unbekannt - + extended erweitert - + unformatted unformatiert - + swap Swap @@ -1805,57 +1806,57 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. RequirementsChecker - + Gathering system information... Sammle Systeminformationen... - + has at least %1 GB available drive space mindestens %1 GB freien Festplattenplatz hat - + There is not enough drive space. At least %1 GB is required. Der Speicherplatz auf der Festplatte ist unzureichend. Es wird mindestens %1 GB benötigt. - + has at least %1 GB working memory hat mindestens %1 GB Arbeitsspeicher - + The system does not have enough working memory. At least %1 GB is required. Das System hat nicht genug Arbeitsspeicher. Es wird mindestens %1GB benötigt. - + is plugged in to a power source ist an eine Stromquelle angeschlossen - + The system is not plugged in to a power source. Das System ist an keine Stromquelle angeschlossen. - + is connected to the Internet ist mit dem Internet verbunden - + The system is not connected to the Internet. Das System ist nicht mit dem Internet verbunden. - + The installer is not running with administrator rights. Das Installationsprogramm wird nicht mit Administratorrechten ausgeführt. - + The screen is too small to display the installer. Der Bildschirm ist zu klein um das Installationsprogramm anzuzeigen. @@ -1910,12 +1911,12 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. ScanningDialog - + Scanning storage devices... Scanne Speichermedien... - + Partitioning Partitionierung @@ -2094,42 +2095,42 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. SetPasswordJob - + Set password for user %1 Setze Passwort für Benutzer %1 - + Setting password for user %1. Setze Passwort für Benutzer %1. - + Bad destination system path. Ungültiger System-Zielpfad. - + rootMountPoint is %1 root-Einhängepunkt ist %1 - + Cannot disable root account. Das Root-Konto kann nicht deaktiviert werden. - + passwd terminated with error code %1. Passwd beendet mit Fehlercode %1. - + Cannot set password for user %1. Passwort für Benutzer %1 kann nicht gesetzt werden. - + usermod terminated with error code %1. usermod wurde mit Fehlercode %1 beendet. @@ -2175,7 +2176,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. SummaryPage - + This is an overview of what will happen once you start the install procedure. Dies ist eine Übersicht der Aktionen, die nach dem Starten des Installationsprozesses durchgeführt werden. @@ -2191,41 +2192,51 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Benutzer diff --git a/lang/calamares_el.ts b/lang/calamares_el.ts index ee760147c..efb1867d8 100644 --- a/lang/calamares_el.ts +++ b/lang/calamares_el.ts @@ -232,13 +232,13 @@ Output: - + &Cancel &Ακύρωση - + Cancel installation without changing the system. @@ -265,47 +265,47 @@ The installer will quit and all changes will be lost. - + &Close - + Continue with setup? Συνέχεια με την εγκατάσταση; - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> Το πρόγραμμα εγκατάστασης %1 θα κάνει αλλαγές στον δίσκο για να εγκαταστήσετε το %2.<br/><strong>Δεν θα είστε σε θέση να αναιρέσετε τις αλλαγές.</strong> - + &Install now Ε&γκατάσταση τώρα - + Go &back Μετάβαση πί&σω - + &Done - + The installation is complete. Close the installer. - + Error Σφάλμα - + Installation Failed Η εγκατάσταση απέτυχε @@ -405,12 +405,12 @@ The installer will quit and all changes will be lost. <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. @@ -421,83 +421,83 @@ 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. - - - - + + + + <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. @@ -619,42 +619,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Δημιουργία νέας κατάτμησης %2MB στο %4 (%3) με σύστημα αρχείων %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Δημιουργία νέας κατάτμησης <strong>%2MB</strong> στο <strong>%4</strong> (%3) με σύστημα αρχείων <strong>%1</strong>. - + Creating new %1 partition on %2. Δημιουργείται νέα %1 κατάτμηση στο %2. - + The installer failed to create partition on disk '%1'. Η εγκατάσταση απέτυχε να δημιουργήσει μία κατάτμηση στον δίσκο '%1'. - + Could not open device '%1'. Δεν είναι δυνατό το άνοιγμα της συσκευής '%1'. - + Could not open partition table. Δεν είναι δυνατό το άνοιγμα του πίνακα κατατμήσεων. - + The installer failed to create file system on partition %1. Η εγκατάσταση απέτυχε να δημιουργήσει το σύστημα αρχείων στην κατάτμηση %1. - + The installer failed to update partition table on disk '%1'. Η εγκατάσταση απέτυχε να αναβαθμίσει τον πίνακα κατατμήσεων στον δίσκο '%1'. @@ -690,27 +690,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. Δημιουργία νέου πίνακα κατατμήσεων %1 στο %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Δημιουργία νέου πίνακα κατατμήσεων <strong>%1</strong> στο <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Δημιουργείται νέα %1 κατάτμηση στο %2. - + The installer failed to create a partition table on %1. Η εγκατάσταση απέτυχε να δημιουργήσει ένα πίνακα κατατμήσεων στο %1. - + Could not open device %1. Δεν είναι δυνατό το άνοιγμα της συσκευής %1. @@ -753,32 +753,32 @@ The installer will quit and all changes will be lost. Δεν είναι δυνατό το άνοιγμα του αρχείου ομάδων για ανάγνωση. - + Cannot create user %1. Δεν είναι δυνατή η δημιουργία του χρήστη %1. - + useradd terminated with error code %1. Το useradd τερματίστηκε με κωδικό σφάλματος %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. Δεν είναι δυνατός ο ορισμός της ιδιοκτησία του προσωπικού καταλόγου για τον χρήστη %1. - + chown terminated with error code %1. Το chown τερματίστηκε με κωδικό σφάλματος %1. @@ -786,37 +786,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. Διαγραφή της κατάτμησης %1. - + Delete partition <strong>%1</strong>. Διαγραφή της κατάτμησης <strong>%1</strong>. - + Deleting partition %1. Διαγράφεται η κατάτμηση %1. - + The installer failed to delete partition %1. Απέτυχε η διαγραφή της κατάτμησης %1. - + Partition (%1) and device (%2) do not match. Η κατάτμηση (%1) και η συσκευή (%2) δεν ταιριάζουν. - + Could not open device %1. Δεν είναι δυνατό το άνοιγμα της συσκευής %1. - + Could not open partition table. Δεν είναι δυνατό το άνοιγμα του πίνακα κατατμήσεων. @@ -977,37 +977,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information Ορισμός πληροφοριών κατάτμησης - + Install %1 on <strong>new</strong> %2 system partition. Εγκατάσταση %1 στο <strong>νέο</strong> %2 διαμέρισμα συστήματος. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Εγκατάσταση φορτωτή εκκίνησης στο <strong>%1</strong>. - + Setting up mount points. @@ -1038,17 +1038,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish Τέλος - + Installation Complete - + The installation of %1 is complete. @@ -1129,12 +1129,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> Ορισμός του μοντέλου πληκτρολογίου σε %1.<br/> - + Set keyboard layout to %1/%2. Ορισμός της διάταξης πληκτρολογίου σε %1/%2. @@ -1296,7 +1296,7 @@ The installer will quit and all changes will be lost. Γίνεται φόρτωση των δεδομένων τοποθεσίας... - + Location Τοποθεσία @@ -1339,13 +1339,13 @@ The installer will quit and all changes will be lost. - + Source and target for copying do not overlap: Rollback is not required. - - + + Could not open device %1 to rollback copying. Δεν είναι δυνατό το άνοιγμα της συσκευής '%1' για την αναίρεση της αντιγραφής. @@ -1353,17 +1353,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name Όνομα - + Description Περιγραφή - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1467,42 +1468,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root Ριζική - + Home Home - + Boot Εκκίνηση - + EFI system Σύστημα EFI - + Swap Swap - + New partition for %1 Νέα κατάτμηση για το %1 - + New partition Νέα κατάτμηση - + %1 %2 %1 %2 @@ -1702,22 +1703,22 @@ The installer will quit and all changes will be lost. Προκαθορισμένο - + unknown άγνωστη - + extended εκτεταμένη - + unformatted μη μορφοποιημένη - + swap @@ -1805,57 +1806,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... Συλλογή πληροφοριών συστήματος... - + has at least %1 GB available drive space έχει τουλάχιστον %1 GB διαθέσιμου χώρου στον δίσκο - + There is not enough drive space. At least %1 GB is required. Δεν υπάρχει αρκετός χώρος στον δίσκο. Απαιτείται τουλάχιστον %1 GB. - + has at least %1 GB working memory έχει τουλάχιστον %1 GB μνημης - + The system does not have enough working memory. At least %1 GB is required. Το σύστημα δεν έχει αρκετή μνήμη. Απαιτείται τουλάχιστον %1 GB. - + is plugged in to a power source είναι συνδεδεμένος σε πηγή ρεύματος - + The system is not plugged in to a power source. Το σύστημα δεν είναι συνδεδεμένο σε πηγή ρεύματος. - + is connected to the Internet είναι συνδεδεμένος στο διαδίκτυο - + The system is not connected to the Internet. Το σύστημα δεν είναι συνδεδεμένο στο διαδίκτυο. - + The installer is not running with administrator rights. Το πρόγραμμα εγκατάστασης δεν εκτελείται με δικαιώματα διαχειριστή. - + The screen is too small to display the installer. @@ -1910,12 +1911,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... Σάρωση των συσκευών αποθήκευσης... - + Partitioning Τμηματοποίηση @@ -2094,42 +2095,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 Ορισμός κωδικού για τον χρήστη %1 - + Setting password for user %1. Ορίζεται κωδικός για τον χρήστη %1. - + Bad destination system path. - + rootMountPoint is %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. - + usermod terminated with error code %1. @@ -2175,7 +2176,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. Αυτή είναι μια επισκόπηση του τι θα συμβεί μόλις ξεκινήσετε τη διαδικασία εγκατάστασης. @@ -2191,41 +2192,51 @@ The installer will quit and all changes will be lost. 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! Οι κωδικοί πρόσβασης δεν ταιριάζουν! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Χρήστες diff --git a/lang/calamares_en.ts b/lang/calamares_en.ts index 8c81b818a..13a199313 100644 --- a/lang/calamares_en.ts +++ b/lang/calamares_en.ts @@ -232,13 +232,13 @@ Output: - + &Cancel &Cancel - + Cancel installation without changing the system. Cancel installation without changing the system. @@ -265,47 +265,47 @@ The installer will quit and all changes will be lost. &No - + &Close &Close - + Continue with setup? Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now &Install now - + Go &back Go &back - + &Done &Done - + The installation is complete. Close the installer. The installation is complete. Close the installer. - + Error Error - + Installation Failed Installation Failed @@ -405,12 +405,12 @@ 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: 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. @@ -421,83 +421,83 @@ 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. - - - - + + + + <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. @@ -619,42 +619,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. The installer failed to create partition on disk '%1'. - + Could not open device '%1'. Could not open device '%1'. - + Could not open partition table. Could not open partition table. - + The installer failed to create file system on partition %1. The installer failed to create file system on partition %1. - + The installer failed to update partition table on disk '%1'. The installer failed to update partition table on disk '%1'. @@ -690,27 +690,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. Create new %1 partition table on %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. The installer failed to create a partition table on %1. - + Could not open device %1. Could not open device %1. @@ -753,32 +753,32 @@ The installer will quit and all changes will be lost. Cannot open groups file for reading. - + Cannot create user %1. Cannot create user %1. - + useradd terminated with error code %1. useradd terminated with error code %1. - + Cannot add user %1 to groups: %2. Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. Cannot set home directory ownership for user %1. - + chown terminated with error code %1. chown terminated with error code %1. @@ -786,37 +786,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. Delete partition %1. - + Delete partition <strong>%1</strong>. Delete partition <strong>%1</strong>. - + Deleting partition %1. Deleting partition %1. - + The installer failed to delete partition %1. The installer failed to delete partition %1. - + Partition (%1) and device (%2) do not match. Partition (%1) and device (%2) do not match. - + Could not open device %1. Could not open device %1. - + Could not open partition table. Could not open partition table. @@ -977,37 +977,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information Set partition information - + Install %1 on <strong>new</strong> %2 system partition. Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Install boot loader on <strong>%1</strong>. - + Setting up mount points. Setting up mount points. @@ -1038,17 +1038,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish Finish - + Installation Complete Installation Complete - + The installation of %1 is complete. The installation of %1 is complete. @@ -1129,12 +1129,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> Set keyboard model to %1.<br/> - + Set keyboard layout to %1/%2. Set keyboard layout to %1/%2. @@ -1296,7 +1296,7 @@ The installer will quit and all changes will be lost. Loading location data... - + Location Location @@ -1339,13 +1339,13 @@ The installer will quit and all changes will be lost. The logical sector sizes in the source and target for copying are not the same. This is currently unsupported. - + Source and target for copying do not overlap: Rollback is not required. Source and target for copying do not overlap: Rollback is not required. - - + + Could not open device %1 to rollback copying. Could not open device %1 to rollback copying. @@ -1353,17 +1353,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name Name - + Description Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1467,42 +1468,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root Root - + Home Home - + Boot Boot - + EFI system EFI system - + Swap Swap - + New partition for %1 New partition for %1 - + New partition New partition - + %1 %2 %1 %2 @@ -1702,22 +1703,22 @@ The installer will quit and all changes will be lost. Default - + unknown unknown - + extended extended - + unformatted unformatted - + swap swap @@ -1805,57 +1806,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... Gathering system information... - + has at least %1 GB available drive space has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source is plugged in to a power source - + The system is not plugged in to a power source. The system is not plugged in to a power source. - + is connected to the Internet is connected to the Internet - + The system is not connected to the Internet. The system is not connected to the Internet. - + The installer is not running with administrator rights. The installer is not running with administrator rights. - + The screen is too small to display the installer. The screen is too small to display the installer. @@ -1910,12 +1911,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... Scanning storage devices... - + Partitioning Partitioning @@ -2094,42 +2095,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 Set password for user %1 - + Setting password for user %1. Setting password for user %1. - + Bad destination system path. Bad destination system path. - + rootMountPoint is %1 rootMountPoint is %1 - + Cannot disable root account. Cannot disable root account. - + passwd terminated with error code %1. passwd terminated with error code %1. - + Cannot set password for user %1. Cannot set password for user %1. - + usermod terminated with error code %1. usermod terminated with error code %1. @@ -2175,7 +2176,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. This is an overview of what will happen once you start the install procedure. @@ -2191,41 +2192,51 @@ The installer will quit and all changes will be lost. 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! + + + Password is too short + Password is too short + + + + Password is too long + Password is too long + UsersViewStep - + Users Users diff --git a/lang/calamares_en_GB.ts b/lang/calamares_en_GB.ts index 5fcf677a5..5da5e911c 100644 --- a/lang/calamares_en_GB.ts +++ b/lang/calamares_en_GB.ts @@ -232,13 +232,13 @@ Output: - + &Cancel &Cancel - + Cancel installation without changing the system. @@ -265,47 +265,47 @@ The installer will quit and all changes will be lost. - + &Close - + Continue with setup? Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now &Install now - + Go &back Go &back - + &Done - + The installation is complete. Close the installer. - + Error Error - + Installation Failed Installation Failed @@ -405,12 +405,12 @@ The installer will quit and all changes will be lost. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -421,83 +421,83 @@ 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. - - - - + + + + <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. @@ -619,42 +619,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. The installer failed to create partition on disk '%1'. - + Could not open device '%1'. Could not open device '%1'. - + Could not open partition table. Could not open partition table. - + The installer failed to create file system on partition %1. The installer failed to create file system on partition %1. - + The installer failed to update partition table on disk '%1'. The installer failed to update partition table on disk '%1'. @@ -690,27 +690,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. Create new %1 partition table on %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. The installer failed to create a partition table on %1. - + Could not open device %1. Could not open device %1. @@ -753,32 +753,32 @@ The installer will quit and all changes will be lost. Cannot open groups file for reading. - + Cannot create user %1. Cannot create user %1. - + useradd terminated with error code %1. useradd terminated with error code %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. Cannot set home directory ownership for user %1. - + chown terminated with error code %1. chown terminated with error code %1. @@ -786,37 +786,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. Delete partition %1. - + Delete partition <strong>%1</strong>. Delete partition <strong>%1</strong>. - + Deleting partition %1. - + The installer failed to delete partition %1. The installer failed to delete partition %1. - + Partition (%1) and device (%2) do not match. Partition (%1) and device (%2) do not match. - + Could not open device %1. Could not open device %1. - + Could not open partition table. Could not open partition table. @@ -977,37 +977,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information Set partition information - + Install %1 on <strong>new</strong> %2 system partition. Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Install boot loader on <strong>%1</strong>. - + Setting up mount points. @@ -1038,17 +1038,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish - + Installation Complete - + The installation of %1 is complete. @@ -1129,12 +1129,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> Set keyboard model to %1.<br/> - + Set keyboard layout to %1/%2. Set keyboard layout to %1/%2. @@ -1296,7 +1296,7 @@ The installer will quit and all changes will be lost. Loading location data... - + Location Location @@ -1339,13 +1339,13 @@ The installer will quit and all changes will be lost. The logical sector sizes in the source and target for copying are not the same. This is currently unsupported. - + Source and target for copying do not overlap: Rollback is not required. Source and target for copying do not overlap: Rollback is not required. - - + + Could not open device %1 to rollback copying. Could not open device %1 to rollback copying. @@ -1353,17 +1353,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1467,42 +1468,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1702,22 +1703,22 @@ The installer will quit and all changes will be lost. Default - + unknown - + extended - + unformatted - + swap @@ -1805,57 +1806,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. - + is connected to the Internet - + The system is not connected to the Internet. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1910,12 +1911,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -2094,42 +2095,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 Set password for user %1 - + Setting password for user %1. - + Bad destination system path. Bad destination system path. - + rootMountPoint is %1 rootMountPoint is %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. Cannot set password for user %1. - + usermod terminated with error code %1. usermod terminated with error code %1. @@ -2175,7 +2176,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. This is an overview of what will happen once you start the install procedure. @@ -2191,41 +2192,51 @@ The installer will quit and all changes will be lost. 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Users diff --git a/lang/calamares_es.ts b/lang/calamares_es.ts index 0ae26c8da..73fd225e7 100644 --- a/lang/calamares_es.ts +++ b/lang/calamares_es.ts @@ -233,13 +233,13 @@ Salida: - + &Cancel &Cancelar - + Cancel installation without changing the system. Cancelar instalación sin cambiar el sistema. @@ -266,47 +266,47 @@ Saldrá del instalador y se perderán todos los cambios. &No - + &Close &Cerrar - + Continue with setup? ¿Continuar con la configuración? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> El instalador %1 va a realizar cambios en su disco para instalar %2.<br/><strong>No podrá deshacer estos cambios.</strong> - + &Install now &Instalar ahora - + Go &back Regresar - + &Done &Hecho - + The installation is complete. Close the installer. La instalación se ha completado. Cierre el instalador. - + Error Error - + Installation Failed Error en la Instalación @@ -406,12 +406,12 @@ Saldrá del instalador y se perderán todos los cambios. <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. @@ -422,83 +422,83 @@ 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. - - - - + + + + <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. @@ -620,42 +620,42 @@ Saldrá del instalador y se perderán todos los cambios. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Crear nueva %2MB partición en %4 (%3) con el sistema de archivos %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Crear nueva <strong>%2MB</strong> partición en <strong>%4</strong> (%3) con el sistema de ficheros <strong>%1</strong>. - + Creating new %1 partition on %2. Creando nueva %1 partición en %2 - + The installer failed to create partition on disk '%1'. El instalador fallo al crear la partición en el disco '%1'. - + Could not open device '%1'. No se puede abrir el dispositivo '%1'. - + Could not open partition table. No se puede abrir la tabla de partición. - + The installer failed to create file system on partition %1. El instalador fallo al crear el sistema de archivos en la partición %1. - + The installer failed to update partition table on disk '%1'. El instalador fallo al actualizar la tabla de partición sobre el disco '%1'. @@ -691,27 +691,27 @@ Saldrá del instalador y se perderán todos los cambios. CreatePartitionTableJob - + Create new %1 partition table on %2. Crear nueva %1 tabla de particiones en %2 - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Crear nueva <strong>%1</strong> tabla de particiones en <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Creando nueva %1 tabla de particiones en %2. - + The installer failed to create a partition table on %1. El instalador fallo al crear la tabla de partición en %1. - + Could not open device %1. No se puede abrir el dispositivo %1. @@ -754,32 +754,32 @@ Saldrá del instalador y se perderán todos los cambios. No es posible abrir el archivo de grupos del sistema. - + Cannot create user %1. No se puede crear el usuario %1. - + useradd terminated with error code %1. useradd terminó con código de error %1. - + Cannot add user %1 to groups: %2. No se puede añadir al usuario %1 a los grupos: %2. - + usermod terminated with error code %1. usermod finalizó con un código de error %1. - + Cannot set home directory ownership for user %1. No se puede dar la propiedad del directorio home al usuario %1 - + chown terminated with error code %1. chown terminó con código de error %1. @@ -787,37 +787,37 @@ Saldrá del instalador y se perderán todos los cambios. DeletePartitionJob - + Delete partition %1. Eliminar partición %1. - + Delete partition <strong>%1</strong>. Eliminar partición <strong>%1</strong>. - + Deleting partition %1. Eliminando partición %1. - + The installer failed to delete partition %1. El instalador falló al eliminar la partición %1. - + Partition (%1) and device (%2) do not match. La partición (%1) y el dispositivo (%2) no coinciden. - + Could not open device %1. No se puede abrir el dispositivo %1. - + Could not open partition table. No se pudo abrir la tabla de particiones. @@ -978,37 +978,37 @@ Saldrá del instalador y se perderán todos los cambios. FillGlobalStorageJob - + Set partition information Establecer la información de la partición - + Install %1 on <strong>new</strong> %2 system partition. Instalar %1 en <strong>nuevo</strong> %2 partición del sistema. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Configurar <strong>nueva</strong> %2 partición con punto de montaje <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Instalar %2 en %3 partición del sistema <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Configurar %3 partición <strong>%1</strong> con punto de montaje <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Instalar gestor de arranque en <strong>%1</strong>. - + Setting up mount points. Configurando puntos de montaje. @@ -1039,17 +1039,17 @@ Saldrá del instalador y se perderán todos los cambios. FinishedViewStep - + Finish Finalizar - + Installation Complete Instalación completada - + The installation of %1 is complete. Se ha completado la instalación de %1. @@ -1130,12 +1130,12 @@ Saldrá del instalador y se perderán todos los cambios. KeyboardPage - + Set keyboard model to %1.<br/> Establecer el modelo de teclado a %1.<br/> - + Set keyboard layout to %1/%2. Configurar la disposición de teclado a %1/%2. @@ -1297,7 +1297,7 @@ Saldrá del instalador y se perderán todos los cambios. Detectando ubicación... - + Location Ubicación @@ -1340,13 +1340,13 @@ Saldrá del instalador y se perderán todos los cambios. El tamaño de los sectores lógicos de origen y destino de la copia no son iguales. Este tipo de operación no está soportada. - + Source and target for copying do not overlap: Rollback is not required. El origen y el destino no se superponen: No hace falta deshacer los cambios. - - + + Could not open device %1 to rollback copying. No se puede abrir el dispositivo %1 para deshacer la copia. @@ -1354,17 +1354,18 @@ Saldrá del instalador y se perderán todos los cambios. NetInstallPage - + Name Nombre - + Description Descripción - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) Instalación a través de la Red. (Desactivada: no se ha podido obtener una lista de paquetes, comprueba tu conexión a la red) @@ -1468,42 +1469,42 @@ Saldrá del instalador y se perderán todos los cambios. PartitionLabelsView - + Root Root - + Home Inicio - + Boot Boot - + EFI system Sistema EFI - + Swap Swap - + New partition for %1 Nueva partición de %1 - + New partition Partición nueva - + %1 %2 %1 %2 @@ -1703,22 +1704,22 @@ Saldrá del instalador y se perderán todos los cambios. Por defecto - + unknown desconocido - + extended extendido - + unformatted sin formato - + swap swap @@ -1806,57 +1807,57 @@ Saldrá del instalador y se perderán todos los cambios. RequirementsChecker - + Gathering system information... Obteniendo información del sistema... - + has at least %1 GB available drive space tiene al menos %1 GB espacio libre en el disco - + There is not enough drive space. At least %1 GB is required. No hay suficiente espació en el disco duro. Se requiere al menos %1 GB libre. - + has at least %1 GB working memory tiene al menos %1 GB de memoria. - + The system does not have enough working memory. At least %1 GB is required. El sistema no tiene suficiente memoria. Se requiere al menos %1 GB - + is plugged in to a power source esta conectado a una fuente de alimentación - + The system is not plugged in to a power source. El sistema no esta conectado a una fuente de alimentación. - + is connected to the Internet esta conectado a Internet - + The system is not connected to the Internet. El sistema no esta conectado a Internet - + The installer is not running with administrator rights. El instalador no esta ejecutándose con permisos de administrador. - + The screen is too small to display the installer. La pantalla es demasiado pequeña para mostrar el instalador. @@ -1911,12 +1912,12 @@ Saldrá del instalador y se perderán todos los cambios. ScanningDialog - + Scanning storage devices... Dispositivos de almacenamiento de escaneado... - + Partitioning Particiones @@ -2095,42 +2096,42 @@ Saldrá del instalador y se perderán todos los cambios. SetPasswordJob - + Set password for user %1 Definir contraseña para el usuario %1. - + Setting password for user %1. Configurando contraseña para el usuario %1. - + Bad destination system path. Destino erróneo del sistema. - + rootMountPoint is %1 El punto de montaje de la raíz es %1 - + Cannot disable root account. No se puede deshabilitar la cuenta root - + passwd terminated with error code %1. passwd finalizó con el código de error %1. - + Cannot set password for user %1. No se puede definir contraseña para el usuario %1. - + usermod terminated with error code %1. usermod ha terminado con el código de error %1 @@ -2176,7 +2177,7 @@ Saldrá del instalador y se perderán todos los cambios. SummaryPage - + This is an overview of what will happen once you start the install procedure. Esto es una previsualización de que ocurrirá una vez que empiece la instalación. @@ -2192,41 +2193,51 @@ Saldrá del instalador y se perderán todos los cambios. 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! + + + Password is too short + La contraseña es muy corta + + + + Password is too long + La contraseña es muy corta + UsersViewStep - + Users Usuarios diff --git a/lang/calamares_es_ES.ts b/lang/calamares_es_ES.ts index 364d9d685..7b41364b2 100644 --- a/lang/calamares_es_ES.ts +++ b/lang/calamares_es_ES.ts @@ -232,13 +232,13 @@ Salida: - + &Cancel &Cancelar - + Cancel installation without changing the system. @@ -265,47 +265,47 @@ El instalador se cerrará y se perderán todos los cambios. - + &Close - + Continue with setup? ¿Continuar con la configuración? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now &Instalar ahora - + Go &back Volver atrás. - + &Done - + The installation is complete. Close the installer. - + Error Error - + Installation Failed La instalación ha fallado @@ -405,12 +405,12 @@ El instalador se cerrará y se perderán todos los cambios. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -421,83 +421,83 @@ El instalador se cerrará y se perderán todos los cambios. - - - + + + 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. - - - - + + + + <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. @@ -619,42 +619,42 @@ El instalador se cerrará y se perderán todos los cambios. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. El instalador no ha podido crear la partición en el disco '%1' - + Could not open device '%1'. No se puede abrir el dispositivo '%1'. - + Could not open partition table. No se puede abrir la tabla de particiones. - + The installer failed to create file system on partition %1. El instalador no ha podido crear el sistema de ficheros en la partición %1. - + The installer failed to update partition table on disk '%1'. El instalador no ha podido actualizar la tabla de particiones en el disco '%1'. @@ -690,27 +690,27 @@ El instalador se cerrará y se perderán todos los cambios. CreatePartitionTableJob - + Create new %1 partition table on %2. Crear una nueva tabla de particiones %1 en %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Crear una nueva tabla de particiones <strong>%1</strong> en <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. El instalador no ha podido crear la tabla de particiones en %1. - + Could not open device %1. No se puede abrir el dispositivo %1. @@ -753,32 +753,32 @@ El instalador se cerrará y se perderán todos los cambios. No se puede abrir para leer el fichero groups. - + Cannot create user %1. No se puede crear el usuario %1. - + useradd terminated with error code %1. useradd ha terminado con el código de error %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. No se puede establecer el propietario del directorio personal del usuario %1. - + chown terminated with error code %1. chown ha terminado con el código de error %1. @@ -786,37 +786,37 @@ El instalador se cerrará y se perderán todos los cambios. DeletePartitionJob - + Delete partition %1. Borrar partición %1. - + Delete partition <strong>%1</strong>. Borrar partición <strong>%1</strong>. - + Deleting partition %1. - + The installer failed to delete partition %1. El instalado no ha podido borrar la partición %1. - + Partition (%1) and device (%2) do not match. La partición (%1) y el dispositvo (%2) no concuerdan. - + Could not open device %1. No se puede abrir el dispositivo %1. - + Could not open partition table. No se puede abrir la tabla de particiones. @@ -977,37 +977,37 @@ El instalador se cerrará y se perderán todos los cambios. FillGlobalStorageJob - + Set partition information Establecer la información de la partición - + Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Instalar el cargador de arranque en <strong>%1</strong> - + Setting up mount points. @@ -1038,17 +1038,17 @@ El instalador se cerrará y se perderán todos los cambios. FinishedViewStep - + Finish - + Installation Complete - + The installation of %1 is complete. @@ -1129,12 +1129,12 @@ El instalador se cerrará y se perderán todos los cambios. KeyboardPage - + Set keyboard model to %1.<br/> Establecer el modelo de teclado a %1.<br/> - + Set keyboard layout to %1/%2. Establecer la disposición del teclado a %1/%2. @@ -1296,7 +1296,7 @@ El instalador se cerrará y se perderán todos los cambios. Cargando datos de ubicación... - + Location Ubicación @@ -1339,13 +1339,13 @@ El instalador se cerrará y se perderán todos los cambios. El tamaño lógico de los sectores del destino y del origen de la copia no es el mismo. Esta operación no está soportada. - + Source and target for copying do not overlap: Rollback is not required. El origen y el destino no se superponen: no se necesita deshacer. - - + + Could not open device %1 to rollback copying. No se puede abrir el dispositivo %1 para deshacer la copia. @@ -1353,17 +1353,18 @@ El instalador se cerrará y se perderán todos los cambios. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1467,42 +1468,42 @@ El instalador se cerrará y se perderán todos los cambios. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1702,22 +1703,22 @@ El instalador se cerrará y se perderán todos los cambios. Por defecto - + unknown - + extended - + unformatted - + swap @@ -1805,57 +1806,57 @@ El instalador se cerrará y se perderán todos los cambios. RequirementsChecker - + Gathering system information... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. - + is connected to the Internet - + The system is not connected to the Internet. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1910,12 +1911,12 @@ El instalador se cerrará y se perderán todos los cambios. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -2094,42 +2095,42 @@ El instalador se cerrará y se perderán todos los cambios. SetPasswordJob - + Set password for user %1 Establecer contraseña del usuario %1 - + Setting password for user %1. - + Bad destination system path. El destino de la ruta del sistema es errónea. - + rootMountPoint is %1 El punto de montaje de root es %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. No se puede establecer la contraseña del usuario %1. - + usermod terminated with error code %1. usermod ha terminado con el código de error %1. @@ -2175,7 +2176,7 @@ El instalador se cerrará y se perderán todos los cambios. SummaryPage - + This is an overview of what will happen once you start the install procedure. Este es un resumen de que pasará una vez que se inicie la instalación. @@ -2191,41 +2192,51 @@ El instalador se cerrará y se perderán todos los cambios. 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! Tu contraseña no coincide + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Usuarios diff --git a/lang/calamares_es_MX.ts b/lang/calamares_es_MX.ts index 5b54af656..0d2ec9e26 100644 --- a/lang/calamares_es_MX.ts +++ b/lang/calamares_es_MX.ts @@ -232,13 +232,13 @@ Salida: - + &Cancel &Cancelar - + Cancel installation without changing the system. @@ -265,47 +265,47 @@ El instalador terminará y se perderán todos los cambios. - + &Close - + Continue with setup? Continuar con la instalación? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> El instalador %1 va a realizar cambios en su disco para instalar %2.<br/><strong>No podrá deshacer estos cambios.</strong> - + &Install now &Instalar ahora - + Go &back &Regresar - + &Done - + The installation is complete. Close the installer. - + Error Error - + Installation Failed Instalación Fallida @@ -406,12 +406,12 @@ El instalador terminará y se perderán todos los cambios. <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. @@ -422,83 +422,83 @@ El instalador terminará y se perderán todos los cambios. - - - + + + Current: Actual: - + Reuse %1 as home partition for %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. - + 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. - - - - + + + + <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. @@ -621,42 +621,42 @@ El instalador terminará y se perderán todos los cambios. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Crear nueva partición %2MB en %4 (%3) con el sistema de archivos %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Crear nueva partición <strong>%2MB</strong> en <strong>%4</strong> (%3) con el sistema de archivos <strong>%1</strong>. - + Creating new %1 partition on %2. Creando nueva partición %1 en %2 - + The installer failed to create partition on disk '%1'. El instalador falló en crear la partición en el disco '%1'. - + Could not open device '%1'. No se pudo abrir el dispositivo '%1'. - + Could not open partition table. No se pudo abrir la tabla de particiones. - + The installer failed to create file system on partition %1. El instalador fallo al crear el sistema de archivos en la partición %1. - + The installer failed to update partition table on disk '%1'. El instalador falló al actualizar la tabla de partición en el disco '%1'. @@ -692,27 +692,27 @@ El instalador terminará y se perderán todos los cambios. CreatePartitionTableJob - + Create new %1 partition table on %2. Crear nueva tabla de particiones %1 en %2 - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Crear nueva tabla de particiones <strong>%1</strong> en <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Creando nueva tabla de particiones %1 en %2. - + The installer failed to create a partition table on %1. El instalador falló al crear una tabla de partición en %1. - + Could not open device %1. No se pudo abrir el dispositivo %1. @@ -755,32 +755,32 @@ El instalador terminará y se perderán todos los cambios. No se puede abrir el archivo groups para lectura. - + Cannot create user %1. No se puede crear el usuario %1. - + useradd terminated with error code %1. useradd ha finalizado con elcódigo de error %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. No se pueden aplicar permisos de propiedad a la carpeta home para el usuario %1. - + chown terminated with error code %1. chown ha finalizado con elcódigo de error %1. @@ -788,37 +788,37 @@ El instalador terminará y se perderán todos los cambios. DeletePartitionJob - + Delete partition %1. Eliminar la partición %1. - + Delete partition <strong>%1</strong>. Eliminar la partición <strong>%1</strong>. - + Deleting partition %1. Eliminando partición %1. - + The installer failed to delete partition %1. El instalador no pudo borrar la partición %1. - + Partition (%1) and device (%2) do not match. La partición (%1) y el dispositivo (%2) no concuerdan. - + Could not open device %1. No se puede abrir el dispositivo %1. - + Could not open partition table. No se pudo abrir la tabla de particiones. @@ -979,37 +979,37 @@ El instalador terminará y se perderán todos los cambios. FillGlobalStorageJob - + Set partition information Fijar información de la partición. - + Install %1 on <strong>new</strong> %2 system partition. Instalar %1 en <strong>nueva</strong> partición de sistema %2. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Configurar <strong>nueva</strong> %2 partición con punto de montaje <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Instalar %2 en %3 partición del sistema <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Configurar %3 partición <strong>%1</strong> con punto de montaje <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Instalar el cargador de arranque en <strong>%1</strong>. - + Setting up mount points. Configurando puntos de montaje. @@ -1040,17 +1040,17 @@ El instalador terminará y se perderán todos los cambios. FinishedViewStep - + Finish Terminado - + Installation Complete - + The installation of %1 is complete. @@ -1131,12 +1131,12 @@ El instalador terminará y se perderán todos los cambios. KeyboardPage - + Set keyboard model to %1.<br/> Ajustar el modelo de teclado a %1.<br/> - + Set keyboard layout to %1/%2. Ajustar teclado a %1/%2. @@ -1298,7 +1298,7 @@ El instalador terminará y se perderán todos los cambios. Cargando datos de ubicación... - + Location Ubicación @@ -1341,13 +1341,13 @@ El instalador terminará y se perderán todos los cambios. El tamaño lógico de los sectores del destino y del origen de la copia no es el mismo. Esta operación no está soportada. - + Source and target for copying do not overlap: Rollback is not required. El origen y el destino no se superponen: no se necesita deshacer. - - + + Could not open device %1 to rollback copying. No se puede abrir el dispositivo %1 para deshacer la copia. @@ -1355,17 +1355,18 @@ El instalador terminará y se perderán todos los cambios. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1469,42 +1470,42 @@ El instalador terminará y se perderán todos los cambios. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1704,22 +1705,22 @@ El instalador terminará y se perderán todos los cambios. Por defecto - + unknown - + extended - + unformatted - + swap @@ -1807,57 +1808,57 @@ El instalador terminará y se perderán todos los cambios. RequirementsChecker - + Gathering system information... Obteniendo información del sistema... - + has at least %1 GB available drive space tiene al menos %1 GB de espacio en disco disponible - + There is not enough drive space. At least %1 GB is required. No hay suficiente espacio disponible en disco. Se requiere al menos %1 GB. - + has at least %1 GB working memory tiene al menos %1 GB de memoria para trabajar - + The system does not have enough working memory. At least %1 GB is required. No hay suficiente espacio disponible en disco. Se requiere al menos %1 GB. - + is plugged in to a power source está conectado a una fuente de energía - + The system is not plugged in to a power source. El sistema no está conectado a una fuente de energía. - + is connected to the Internet está conectado a Internet - + The system is not connected to the Internet. El sistema no está conectado a Internet. - + The installer is not running with administrator rights. El instalador no se está ejecutando con privilegios de administrador. - + The screen is too small to display the installer. @@ -1912,12 +1913,12 @@ El instalador terminará y se perderán todos los cambios. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -2096,42 +2097,42 @@ El instalador terminará y se perderán todos los cambios. SetPasswordJob - + Set password for user %1 Definir contraseña para el usuario %1. - + Setting password for user %1. Configurando contraseña para el usuario %1. - + Bad destination system path. Destino erróneo del sistema. - + rootMountPoint is %1 El punto de montaje de root es %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. No se puede definir contraseña para el usuario %1. - + usermod terminated with error code %1. usermod ha terminado con el código de error %1 @@ -2177,7 +2178,7 @@ El instalador terminará y se perderán todos los cambios. SummaryPage - + This is an overview of what will happen once you start the install procedure. Esto es un resumen de lo que pasará una vez que inicie el procedimiento de instalación. @@ -2193,41 +2194,51 @@ El instalador terminará y se perderán todos los cambios. 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Usuarios diff --git a/lang/calamares_es_PR.ts b/lang/calamares_es_PR.ts index 2c7adab8b..107097a02 100644 --- a/lang/calamares_es_PR.ts +++ b/lang/calamares_es_PR.ts @@ -232,13 +232,13 @@ Salida: - + &Cancel - + Cancel installation without changing the system. @@ -264,47 +264,47 @@ The installer will quit and all changes will be lost. - + &Close - + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error Error - + Installation Failed Falló la instalación @@ -404,12 +404,12 @@ The installer will quit and all changes will be lost. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -420,83 +420,83 @@ 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. - - - - + + + + <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. @@ -618,42 +618,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. - + Could not open device '%1'. - + Could not open partition table. - + The installer failed to create file system on partition %1. - + The installer failed to update partition table on disk '%1'. @@ -689,27 +689,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. - + Could not open device %1. @@ -752,32 +752,32 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -785,37 +785,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. - + Delete partition <strong>%1</strong>. - + Deleting partition %1. - + The installer failed to delete partition %1. - + Partition (%1) and device (%2) do not match. - + Could not open device %1. - + Could not open partition table. @@ -976,37 +976,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information - + Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. - + Setting up mount points. @@ -1037,17 +1037,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish - + Installation Complete - + The installation of %1 is complete. @@ -1128,12 +1128,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> - + Set keyboard layout to %1/%2. @@ -1295,7 +1295,7 @@ The installer will quit and all changes will be lost. - + Location @@ -1338,13 +1338,13 @@ The installer will quit and all changes will be lost. - + Source and target for copying do not overlap: Rollback is not required. - - + + Could not open device %1 to rollback copying. @@ -1352,17 +1352,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1466,42 +1467,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1701,22 +1702,22 @@ The installer will quit and all changes will be lost. - + unknown - + extended - + unformatted - + swap @@ -1804,57 +1805,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. - + is connected to the Internet - + The system is not connected to the Internet. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1909,12 +1910,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -2093,42 +2094,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 - + Setting password for user %1. - + Bad destination system path. - + rootMountPoint is %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. - + usermod terminated with error code %1. @@ -2174,7 +2175,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. @@ -2190,41 +2191,51 @@ The installer will quit and all changes will be lost. 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users diff --git a/lang/calamares_et.ts b/lang/calamares_et.ts index 18ac538fa..d38f858ce 100644 --- a/lang/calamares_et.ts +++ b/lang/calamares_et.ts @@ -226,13 +226,13 @@ Output: - + &Cancel - + Cancel installation without changing the system. @@ -258,47 +258,47 @@ The installer will quit and all changes will be lost. - + &Close - + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error Viga - + Installation Failed @@ -398,12 +398,12 @@ The installer will quit and all changes will be lost. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -414,83 +414,83 @@ 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. - - - - + + + + <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. @@ -612,42 +612,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. - + Could not open device '%1'. - + Could not open partition table. - + The installer failed to create file system on partition %1. - + The installer failed to update partition table on disk '%1'. @@ -683,27 +683,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. - + Could not open device %1. @@ -746,32 +746,32 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -779,37 +779,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. - + Delete partition <strong>%1</strong>. - + Deleting partition %1. - + The installer failed to delete partition %1. - + Partition (%1) and device (%2) do not match. - + Could not open device %1. - + Could not open partition table. @@ -970,37 +970,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information - + Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. - + Setting up mount points. @@ -1031,17 +1031,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish - + Installation Complete - + The installation of %1 is complete. @@ -1122,12 +1122,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> - + Set keyboard layout to %1/%2. @@ -1289,7 +1289,7 @@ The installer will quit and all changes will be lost. - + Location @@ -1332,13 +1332,13 @@ The installer will quit and all changes will be lost. - + Source and target for copying do not overlap: Rollback is not required. - - + + Could not open device %1 to rollback copying. @@ -1346,17 +1346,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1460,42 +1461,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1695,22 +1696,22 @@ The installer will quit and all changes will be lost. - + unknown - + extended - + unformatted - + swap @@ -1798,57 +1799,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. - + is connected to the Internet - + The system is not connected to the Internet. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1903,12 +1904,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -2087,42 +2088,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 - + Setting password for user %1. - + Bad destination system path. - + rootMountPoint is %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. - + usermod terminated with error code %1. @@ -2168,7 +2169,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. @@ -2184,41 +2185,51 @@ The installer will quit and all changes will be lost. 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users diff --git a/lang/calamares_eu.ts b/lang/calamares_eu.ts index 845f87100..a6e0fef70 100644 --- a/lang/calamares_eu.ts +++ b/lang/calamares_eu.ts @@ -230,13 +230,13 @@ Output: - + &Cancel &Utzi - + Cancel installation without changing the system. Instalazioa bertan behera utsi da sisteman aldaketarik gabe. @@ -262,47 +262,47 @@ The installer will quit and all changes will be lost. &Ez - + &Close &Itxi - + Continue with setup? Ezarpenarekin jarraitu? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now &Instalatu orain - + Go &back &Atzera - + &Done E&ginda - + The installation is complete. Close the installer. Instalazioa burutu da. Itxi instalatzailea. - + Error Akatsa - + Installation Failed Instalazioak huts egin du @@ -402,12 +402,12 @@ The installer will quit and all changes will be lost. <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. @@ -418,83 +418,83 @@ The installer will quit and all changes will be lost. - - - + + + 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>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. - - - - + + + + <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. - - - - + + + + <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. @@ -616,42 +616,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. - + Could not open device '%1'. - + Could not open partition table. Ezin izan da partizio taula ireki. - + The installer failed to create file system on partition %1. - + The installer failed to update partition table on disk '%1'. @@ -687,27 +687,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. - + Could not open device %1. Ezin izan da %1 gailua ireki. @@ -750,32 +750,32 @@ The installer will quit and all changes will be lost. Ezin da groups fitxategia ireki berau irakurtzeko. - + Cannot create user %1. - + useradd terminated with error code %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -783,37 +783,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. Ezabatu %1 partizioa. - + Delete partition <strong>%1</strong>. - + Deleting partition %1. %1 partizioa ezabatzen. - + The installer failed to delete partition %1. - + Partition (%1) and device (%2) do not match. - + Could not open device %1. Ezin izan da %1 gailua ireki. - + Could not open partition table. Ezin izan da partizio taula ireki. @@ -974,37 +974,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information Ezarri partizioaren informazioa - + Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Ezarri %2 partizio <strong>berria</strong> <strong>%1</strong> muntatze puntuarekin. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Ezarri %3 partizioa <strong>%1</strong> <strong>%2</strong> muntatze puntuarekin. - + Install boot loader on <strong>%1</strong>. - + Setting up mount points. Muntatze puntuak ezartzen. @@ -1035,17 +1035,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish Bukatu - + Installation Complete - + The installation of %1 is complete. @@ -1126,12 +1126,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> - + Set keyboard layout to %1/%2. @@ -1293,7 +1293,7 @@ The installer will quit and all changes will be lost. Kokapen datuak kargatzen... - + Location Kokapena @@ -1336,13 +1336,13 @@ The installer will quit and all changes will be lost. - + Source and target for copying do not overlap: Rollback is not required. - - + + Could not open device %1 to rollback copying. @@ -1350,17 +1350,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1464,42 +1465,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1699,22 +1700,22 @@ The installer will quit and all changes will be lost. Lehenetsia - + unknown - + extended - + unformatted - + swap @@ -1802,57 +1803,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... Sistemaren informazioa eskuratzen... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. Sistema ez dago indar iturri batetara konektatuta. - + is connected to the Internet Internetera konektatuta dago - + The system is not connected to the Internet. Sistema ez dago Internetera konektatuta. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1907,12 +1908,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -2091,42 +2092,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 Ezarri %1 erabiltzailearen pasahitza - + Setting password for user %1. - + Bad destination system path. - + rootMountPoint is %1 root Muntatze Puntua %1 da - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. - + usermod terminated with error code %1. @@ -2172,7 +2173,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. @@ -2188,41 +2189,51 @@ The installer will quit and all changes will be lost. UsersPage - + Your username is too long. Zure erabiltzaile-izena luzeegia da. - + Your username contains invalid characters. Only lowercase letters and numbers are allowed. - + 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. - + Your passwords do not match! Pasahitzak ez datoz bat! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Erabiltzaileak diff --git a/lang/calamares_fa.ts b/lang/calamares_fa.ts index 35f45b757..69e2bbd5b 100644 --- a/lang/calamares_fa.ts +++ b/lang/calamares_fa.ts @@ -226,13 +226,13 @@ Output: - + &Cancel - + Cancel installation without changing the system. @@ -258,47 +258,47 @@ The installer will quit and all changes will be lost. - + &Close - + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error - + Installation Failed @@ -398,12 +398,12 @@ The installer will quit and all changes will be lost. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -414,83 +414,83 @@ 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. - - - - + + + + <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. @@ -612,42 +612,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. - + Could not open device '%1'. - + Could not open partition table. - + The installer failed to create file system on partition %1. - + The installer failed to update partition table on disk '%1'. @@ -683,27 +683,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. - + Could not open device %1. @@ -746,32 +746,32 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -779,37 +779,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. - + Delete partition <strong>%1</strong>. - + Deleting partition %1. - + The installer failed to delete partition %1. - + Partition (%1) and device (%2) do not match. - + Could not open device %1. - + Could not open partition table. @@ -970,37 +970,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information - + Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. - + Setting up mount points. @@ -1031,17 +1031,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish - + Installation Complete - + The installation of %1 is complete. @@ -1122,12 +1122,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> - + Set keyboard layout to %1/%2. @@ -1289,7 +1289,7 @@ The installer will quit and all changes will be lost. - + Location @@ -1332,13 +1332,13 @@ The installer will quit and all changes will be lost. - + Source and target for copying do not overlap: Rollback is not required. - - + + Could not open device %1 to rollback copying. @@ -1346,17 +1346,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1460,42 +1461,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1695,22 +1696,22 @@ The installer will quit and all changes will be lost. - + unknown - + extended - + unformatted - + swap @@ -1798,57 +1799,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. - + is connected to the Internet - + The system is not connected to the Internet. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1903,12 +1904,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -2087,42 +2088,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 - + Setting password for user %1. - + Bad destination system path. - + rootMountPoint is %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. - + usermod terminated with error code %1. @@ -2168,7 +2169,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. @@ -2184,41 +2185,51 @@ The installer will quit and all changes will be lost. 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users diff --git a/lang/calamares_fi_FI.ts b/lang/calamares_fi_FI.ts index 56028b4eb..47555b473 100644 --- a/lang/calamares_fi_FI.ts +++ b/lang/calamares_fi_FI.ts @@ -232,13 +232,13 @@ Tuloste: - + &Cancel &Peruuta - + Cancel installation without changing the system. @@ -265,47 +265,47 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. - + &Close - + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error Virhe - + Installation Failed Asennus Epäonnistui @@ -405,12 +405,12 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -421,83 +421,83 @@ 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. - - - - + + + + <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. @@ -619,42 +619,42 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. Asennusohjelma epäonnistui osion luonnissa levylle '%1'. - + Could not open device '%1'. Ei pystytty avaamaan laitetta '%1'. - + Could not open partition table. Osiotaulukkoa ei voitu avata. - + The installer failed to create file system on partition %1. Asennusohjelma epäonnistui tiedostojärjestelmän luonnissa osiolle %1. - + The installer failed to update partition table on disk '%1'. Asennusohjelman epäonnistui päivittää osio levyllä '%1'. @@ -690,27 +690,27 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. CreatePartitionTableJob - + Create new %1 partition table on %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. Asennusohjelma epäonnistui osiotaulukon luonnissa kohteeseen %1. - + Could not open device %1. Laitetta %1 ei voitu avata. @@ -753,32 +753,32 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. Ei voida avata ryhmätiedostoa luettavaksi. - + Cannot create user %1. Käyttäjää %1 ei voi luoda. - + useradd terminated with error code %1. useradd päättyi virhekoodilla %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. Ei voida asettaa kotihakemiston omistusoikeutta käyttäjälle %1. - + chown terminated with error code %1. chown päättyi virhekoodilla %1. @@ -786,37 +786,37 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. DeletePartitionJob - + Delete partition %1. - + Delete partition <strong>%1</strong>. - + Deleting partition %1. - + The installer failed to delete partition %1. Asennusohjelma epäonnistui osion %1 poistossa. - + Partition (%1) and device (%2) do not match. Osio (%1) ja laite (%2) eivät täsmää. - + Could not open device %1. Ei voitu avata laitetta %1. - + Could not open partition table. Osiotaulukkoa ei voitu avata. @@ -977,37 +977,37 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. FillGlobalStorageJob - + Set partition information Aseta osion tiedot - + Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. - + Setting up mount points. @@ -1038,17 +1038,17 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. FinishedViewStep - + Finish - + Installation Complete - + The installation of %1 is complete. @@ -1129,12 +1129,12 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. KeyboardPage - + Set keyboard model to %1.<br/> Aseta näppäimiston malli %1.<br/> - + Set keyboard layout to %1/%2. Aseta näppäimiston asetelmaksi %1/%2. @@ -1296,7 +1296,7 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. Ladataan sijainnin tietoja... - + Location Sijainti @@ -1339,13 +1339,13 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. Loogisten sektoreiden koot eivät täsmää lähde ja kohde sektorissa. Tämä ei ole toistaiseksi tuettu toiminto. - + Source and target for copying do not overlap: Rollback is not required. Kopioimisen lähde ja kohde eivät mene limittäin. Palauttaminen ei ole tarpeellista. - - + + Could not open device %1 to rollback copying. Laitetta %1 ei voitu avata palautuskopiointia varten. @@ -1353,17 +1353,18 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1467,42 +1468,42 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1702,22 +1703,22 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. Oletus - + unknown - + extended - + unformatted - + swap @@ -1805,57 +1806,57 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. RequirementsChecker - + Gathering system information... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. - + is connected to the Internet - + The system is not connected to the Internet. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1910,12 +1911,12 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -2094,42 +2095,42 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. SetPasswordJob - + Set password for user %1 Aseta salasana käyttäjälle %1 - + Setting password for user %1. - + Bad destination system path. Huono kohteen järjestelmäpolku - + rootMountPoint is %1 rootMountPoint on %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. Salasanaa ei voi asettaa käyttäjälle %1. - + usermod terminated with error code %1. usermod päättyi virhekoodilla %1. @@ -2175,7 +2176,7 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. SummaryPage - + This is an overview of what will happen once you start the install procedure. @@ -2191,41 +2192,51 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. 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ää! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Käyttäjät diff --git a/lang/calamares_fr.ts b/lang/calamares_fr.ts index d44d8db40..e661c9a5a 100644 --- a/lang/calamares_fr.ts +++ b/lang/calamares_fr.ts @@ -232,13 +232,13 @@ Sortie : - + &Cancel &Annuler - + Cancel installation without changing the system. Annuler l'installation sans modifier votre système. @@ -265,47 +265,47 @@ L'installateur se fermera et les changements seront perdus. &Non - + &Close &Fermer - + Continue with setup? Poursuivre la configuration ? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> L'installateur %1 est sur le point de procéder aux changements sur le disque afin d'installer %2.<br/> <strong>Vous ne pourrez pas annulez ces changements.<strong> - + &Install now &Installer maintenant - + Go &back &Retour - + &Done &Terminé - + The installation is complete. Close the installer. L'installation est terminée. Fermer l'installateur. - + Error Erreur - + Installation Failed L'installation a échoué @@ -405,12 +405,12 @@ L'installateur se fermera et les changements seront perdus. <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. @@ -421,83 +421,83 @@ 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. - - - - + + + + <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. @@ -619,42 +619,42 @@ L'installateur se fermera et les changements seront perdus. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Créer une nouvelle partition de %2Mo sur %4 (%3) avec le système de fichiers %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Créer une nouvelle partition de <strong>%2Mo</strong> sur <strong>%4</strong> (%3) avec le système de fichiers <strong>%1</strong>. - + Creating new %1 partition on %2. Création d'une nouvelle partition %1 sur %2. - + The installer failed to create partition on disk '%1'. Le programme d'installation n'a pas pu créer la partition sur le disque '%1'. - + Could not open device '%1'. Impossible d'ouvrir le périphérique '%1'. - + Could not open partition table. Impossible d'ouvrir la table de partitionnement. - + The installer failed to create file system on partition %1. Le programme d'installation n'a pas pu créer le système de fichiers sur la partition %1. - + The installer failed to update partition table on disk '%1'. Le programme d'installation n'a pas pu mettre à jour la table de partitionnement sur le disque '%1'. @@ -690,27 +690,27 @@ L'installateur se fermera et les changements seront perdus. CreatePartitionTableJob - + Create new %1 partition table on %2. Créer une nouvelle table de partition %1 sur %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Créer une nouvelle table de partitions <strong>%1</strong> sur <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Création d'une nouvelle table de partitions %1 sur %2. - + The installer failed to create a partition table on %1. Le programme d'installation n'a pas pu créer la table de partitionnement sur le disque %1. - + Could not open device %1. Impossible d'ouvrir le périphérique %1. @@ -753,32 +753,32 @@ L'installateur se fermera et les changements seront perdus. Impossible d'ouvrir le fichier groups en lecture. - + Cannot create user %1. Impossible de créer l'utilisateur %1. - + useradd terminated with error code %1. useradd s'est terminé avec le code erreur %1. - + Cannot add user %1 to groups: %2. Impossible d'ajouter l'utilisateur %1 au groupe %2. - + usermod terminated with error code %1. usermod s'est terminé avec le code erreur %1. - + Cannot set home directory ownership for user %1. Impossible de définir le propriétaire du répertoire home pour l'utilisateur %1. - + chown terminated with error code %1. chown s'est terminé avec le code erreur %1. @@ -786,37 +786,37 @@ L'installateur se fermera et les changements seront perdus. DeletePartitionJob - + Delete partition %1. Supprimer la partition %1. - + Delete partition <strong>%1</strong>. Supprimer la partition <strong>%1</strong>. - + Deleting partition %1. Suppression de la partition %1. - + The installer failed to delete partition %1. Le programme d'installation n'a pas pu supprimer la partition %1. - + Partition (%1) and device (%2) do not match. La partition (%1) et le périphérique (%2) ne correspondent pas. - + Could not open device %1. Impossible d'ouvrir le périphérique %1. - + Could not open partition table. Impossible d'ouvrir la table de partitionnement. @@ -977,37 +977,37 @@ L'installateur se fermera et les changements seront perdus. FillGlobalStorageJob - + Set partition information Configurer les informations de la partition - + Install %1 on <strong>new</strong> %2 system partition. Installer %1 sur le <strong>nouveau</strong> système de partition %2. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Configurer la <strong>nouvelle</strong> partition %2 avec le point de montage <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Installer %2 sur la partition système %3 <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Configurer la partition %3 <strong>%1</strong> avec le point de montage <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Installer le chargeur de démarrage sur <strong>%1</strong>. - + Setting up mount points. Configuration des points de montage. @@ -1038,17 +1038,17 @@ L'installateur se fermera et les changements seront perdus. FinishedViewStep - + Finish Terminer - + Installation Complete Installation terminée - + The installation of %1 is complete. L'installation de %1 est terminée. @@ -1129,12 +1129,12 @@ L'installateur se fermera et les changements seront perdus. KeyboardPage - + Set keyboard model to %1.<br/> Configurer le modèle de clavier à %1.<br/> - + Set keyboard layout to %1/%2. Configurer la disposition clavier à %1/%2. @@ -1296,7 +1296,7 @@ L'installateur se fermera et les changements seront perdus. Chargement des données de localisation... - + Location Localisation @@ -1339,13 +1339,13 @@ L'installateur se fermera et les changements seront perdus. Les tailles des secteurs logiques source et cible pour la copie ne sont pas les mêmes. Ceci est actuellement non supporté. - + Source and target for copying do not overlap: Rollback is not required. La source et la cible pour la copie ne se chevauchent pas : un retour en arrière n'est pas nécessaire. - - + + Could not open device %1 to rollback copying. Impossible d'ouvrir le périphérique %1 pour annuler la copie. @@ -1353,17 +1353,18 @@ L'installateur se fermera et les changements seront perdus. NetInstallPage - + Name Nom - + Description Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) Installation par le réseau (Désactivée : impossible de récupérer leslistes de paquets, vérifiez la connexion réseau) @@ -1467,42 +1468,42 @@ L'installateur se fermera et les changements seront perdus. PartitionLabelsView - + Root Racine - + Home Home - + Boot Démarrage - + EFI system Système EFI - + Swap Swap - + New partition for %1 Nouvelle partition pour %1 - + New partition Nouvelle partition - + %1 %2 %1 %2 @@ -1702,22 +1703,22 @@ L'installateur se fermera et les changements seront perdus. Défaut - + unknown inconnu - + extended étendu - + unformatted non formaté - + swap swap @@ -1805,57 +1806,57 @@ L'installateur se fermera et les changements seront perdus. RequirementsChecker - + Gathering system information... Récupération des informations système... - + has at least %1 GB available drive space a au moins %1 Go d'espace disque disponible - + There is not enough drive space. At least %1 GB is required. Il n'y a pas assez d'espace disque. Au moins %1 Go sont requis. - + has at least %1 GB working memory a au moins %1 Go de mémoire vive - + The system does not have enough working memory. At least %1 GB is required. Le système n'a pas assez de mémoire vive. Au moins %1 Go sont requis. - + is plugged in to a power source est relié à une source de courant - + The system is not plugged in to a power source. Le système n'est pas relié à une source de courant. - + is connected to the Internet est connecté à Internet - + The system is not connected to the Internet. Le système n'est pas connecté à Internet. - + The installer is not running with administrator rights. L'installateur ne dispose pas des droits administrateur. - + The screen is too small to display the installer. L'écran est trop petit pour afficher l'installateur. @@ -1910,12 +1911,12 @@ L'installateur se fermera et les changements seront perdus. ScanningDialog - + Scanning storage devices... Balayage des périphériques de stockage... - + Partitioning Partitionnement @@ -2094,42 +2095,42 @@ L'installateur se fermera et les changements seront perdus. SetPasswordJob - + Set password for user %1 Définir le mot de passe pour l'utilisateur %1 - + Setting password for user %1. Configuration du mot de passe pour l'utilisateur %1. - + Bad destination system path. Mauvaise destination pour le chemin système. - + rootMountPoint is %1 Le point de montage racine est %1 - + Cannot disable root account. Impossible de désactiver le compte root. - + passwd terminated with error code %1. passwd c'est arrêté avec le code d'erreur %1. - + Cannot set password for user %1. Impossible de créer le mot de passe pour l'utilisateur %1. - + usermod terminated with error code %1. usermod s'est terminé avec le code erreur %1. @@ -2175,7 +2176,7 @@ L'installateur se fermera et les changements seront perdus. SummaryPage - + This is an overview of what will happen once you start the install procedure. Ceci est un aperçu de ce qui va arriver lorsque vous commencerez l'installation. @@ -2191,41 +2192,51 @@ L'installateur se fermera et les changements seront perdus. 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 ! + + + Password is too short + Le mot de passe est trop court + + + + Password is too long + Le mot de passe est trop long + UsersViewStep - + Users Utilisateurs diff --git a/lang/calamares_fr_CH.ts b/lang/calamares_fr_CH.ts index c13bcf67f..ace65c494 100644 --- a/lang/calamares_fr_CH.ts +++ b/lang/calamares_fr_CH.ts @@ -226,13 +226,13 @@ Output: - + &Cancel - + Cancel installation without changing the system. @@ -258,47 +258,47 @@ The installer will quit and all changes will be lost. - + &Close - + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error - + Installation Failed @@ -398,12 +398,12 @@ The installer will quit and all changes will be lost. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -414,83 +414,83 @@ 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. - - - - + + + + <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. @@ -612,42 +612,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. - + Could not open device '%1'. - + Could not open partition table. - + The installer failed to create file system on partition %1. - + The installer failed to update partition table on disk '%1'. @@ -683,27 +683,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. - + Could not open device %1. @@ -746,32 +746,32 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -779,37 +779,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. - + Delete partition <strong>%1</strong>. - + Deleting partition %1. - + The installer failed to delete partition %1. - + Partition (%1) and device (%2) do not match. - + Could not open device %1. - + Could not open partition table. @@ -970,37 +970,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information - + Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. - + Setting up mount points. @@ -1031,17 +1031,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish - + Installation Complete - + The installation of %1 is complete. @@ -1122,12 +1122,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> - + Set keyboard layout to %1/%2. @@ -1289,7 +1289,7 @@ The installer will quit and all changes will be lost. - + Location @@ -1332,13 +1332,13 @@ The installer will quit and all changes will be lost. - + Source and target for copying do not overlap: Rollback is not required. - - + + Could not open device %1 to rollback copying. @@ -1346,17 +1346,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1460,42 +1461,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1695,22 +1696,22 @@ The installer will quit and all changes will be lost. - + unknown - + extended - + unformatted - + swap @@ -1798,57 +1799,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. - + is connected to the Internet - + The system is not connected to the Internet. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1903,12 +1904,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -2087,42 +2088,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 - + Setting password for user %1. - + Bad destination system path. - + rootMountPoint is %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. - + usermod terminated with error code %1. @@ -2168,7 +2169,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. @@ -2184,41 +2185,51 @@ The installer will quit and all changes will be lost. 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users diff --git a/lang/calamares_gl.ts b/lang/calamares_gl.ts index 8e0de1ee5..df05e81c2 100644 --- a/lang/calamares_gl.ts +++ b/lang/calamares_gl.ts @@ -233,13 +233,13 @@ Saída: - + &Cancel &Cancelar - + Cancel installation without changing the system. Cancela-la instalación sen cambia-lo sistema @@ -266,47 +266,47 @@ O instalador pecharase e perderanse todos os cambios. &Non - + &Close &Pechar - + Continue with setup? Continuar coa posta en marcha? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> O %1 instalador está a piques de realizar cambios no seu disco para instalar %2.<br/><strong>Estes cambios non poderán desfacerse.</strong> - + &Install now &Instalar agora - + Go &back Ir &atrás - + &Done &Feito - + The installation is complete. Close the installer. Completouse a instalacion. Peche o instalador - + Error Erro - + Installation Failed Erro na instalación @@ -406,12 +406,12 @@ O instalador pecharase e perderanse todos os cambios. <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 @@ -422,83 +422,83 @@ 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. - - - - + + + + <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. @@ -620,42 +620,42 @@ O instalador pecharase e perderanse todos os cambios. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Crear unha nova partición de %2 MB en %4 (%3) empregando o sistema de arquivos %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Crear unha nova partición de <strong>%2 MB</strong> en <strong>%4<7strong>(%3) empregando o sistema de arquivos <strong>%1</strong>. - + Creating new %1 partition on %2. Creando unha nova partición %1 en %2. - + The installer failed to create partition on disk '%1'. O instalador fallou ó crear a partición no disco '%1'. - + Could not open device '%1'. Non se pode abrir o dispositivo '%1'. - + Could not open partition table. Non se pode abrir a táboa de particións. - + The installer failed to create file system on partition %1. O instalador errou ó crear o sistema de arquivos na partición %1. - + The installer failed to update partition table on disk '%1'. O instalador fallou ó actualizar a táboa de particións no disco '%1'. @@ -691,27 +691,27 @@ O instalador pecharase e perderanse todos os cambios. CreatePartitionTableJob - + Create new %1 partition table on %2. Crear unha nova táboa de particións %1 en %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Crear unha nova táboa de particións %1 en <strong>%2</strong>(%3) - + Creating new %1 partition table on %2. Creando nova táboa de partición %1 en %2. - + The installer failed to create a partition table on %1. O instalador fallou ó crear a táboa de partición en %1. - + Could not open device %1. Non foi posíbel abrir o dispositivo %1. @@ -754,32 +754,32 @@ O instalador pecharase e perderanse todos os cambios. Non foi posible ler o arquivo grupos. - + Cannot create user %1. Non foi posible crear o usuario %1. - + useradd terminated with error code %1. useradd terminou co código de erro %1. - + Cannot add user %1 to groups: %2. Non foi posible engadir o usuario %1 ós grupos: %2. - + usermod terminated with error code %1. usermod terminou co código de erro %1. - + Cannot set home directory ownership for user %1. Non foi posible asignar o directorio home como propio para o usuario %1. - + chown terminated with error code %1. chown terminou co código de erro %1. @@ -787,37 +787,37 @@ O instalador pecharase e perderanse todos os cambios. DeletePartitionJob - + Delete partition %1. Eliminar partición %1. - + Delete partition <strong>%1</strong>. Eliminar partición <strong>%1</strong>. - + Deleting partition %1. Eliminando partición %1 - + The installer failed to delete partition %1. O instalador fallou ó eliminar a partición %1 - + Partition (%1) and device (%2) do not match. A partición (%1) e o dispositivo (%2) non coinciden - + Could not open device %1. Non foi posíbel abrir o dispositivo %1. - + Could not open partition table. Non se pode abrir a táboa de particións. @@ -978,37 +978,37 @@ O instalador pecharase e perderanse todos os cambios. FillGlobalStorageJob - + Set partition information Poñela información da partición - + Install %1 on <strong>new</strong> %2 system partition. Instalar %1 nunha <strong>nova</strong> partición do sistema %2 - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Configure unha <strong>nova</strong> partición %2 con punto de montaxe <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Instalar %2 na partición do sistema %3 <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Configurala partición %3 <strong>%1</strong> con punto de montaxe <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Instalar o cargador de arranque en <strong>%1</strong>. - + Setting up mount points. Configuralos puntos de montaxe. @@ -1039,17 +1039,17 @@ O instalador pecharase e perderanse todos os cambios. FinishedViewStep - + Finish Fin - + Installation Complete Instalacion completa - + The installation of %1 is complete. Completouse a instalación de %1 @@ -1130,12 +1130,12 @@ O instalador pecharase e perderanse todos os cambios. KeyboardPage - + Set keyboard model to %1.<br/> Seleccionado modelo de teclado a %1.<br/> - + Set keyboard layout to %1/%2. Seleccionada a disposición do teclado a %1/%2. @@ -1254,39 +1254,39 @@ O instalador pecharase e perderanse todos os cambios. The system language will be set to %1. - + A linguaxe do sistema será establecida a %1. The numbers and dates locale will be set to %1. - + A localización de números e datas será establecida a %1. Region: - + Rexión: Zone: - + Zona: &Change... - + &Cambio... Set timezone to %1/%2.<br/> - + Establecer a zona de tempo a %1/%2.<br/> %1 (%2) Language (Country) - + %1 (%2) @@ -1294,12 +1294,12 @@ O instalador pecharase e perderanse todos os cambios. Loading location data... - + Cargando datos de localización... - + Location - + Localización... @@ -1307,66 +1307,67 @@ O instalador pecharase e perderanse todos os cambios. Move file system of partition %1. - + Move-lo sistema de ficheiro da partición %1. Could not open file system on partition %1 for moving. - + Non foi posible abri-lo sistema de ficheiros na partición %1 para move-lo. Could not create target for moving file system on partition %1. - + Non foi posible crea-lo destino para move-lo sistema de ficheiros na partición %1. Moving of partition %1 failed, changes have been rolled back. - + Fallou move-la partición %1, desfixeronse os cambios. Moving of partition %1 failed. Roll back of the changes have failed. - + Fallou move-la partición %1. Non se pudo desface-los cambios. Updating boot sector after the moving of partition %1 failed. - + Actualizando o sector de arranque tra-lo fallo do movimento da partición %1. The logical sector sizes in the source and target for copying are not the same. This is currently unsupported. - + O tamaño do sector lóxico na orixe e no destino para a copia non é o mesmo. Actualmente non é posible face-lo. - + Source and target for copying do not overlap: Rollback is not required. - + Orixe e destino para copia non se superpoñen: Non cómpre desfacer. - - + + Could not open device %1 to rollback copying. - + Non se pudo abrir o dispositivo %1 para copia de respaldo. NetInstallPage - + Name - + Nome - + Description - + Descripción - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) - + Installación por rede. (Desactivadas. Non se pudo recupera-la lista de pacotes, comprobe a sua conexión a rede) @@ -1374,7 +1375,7 @@ O instalador pecharase e perderanse todos os cambios. Package selection - + Selección de pacotes. @@ -1387,12 +1388,12 @@ O instalador pecharase e perderanse todos os cambios. Keyboard Model: - + Modelo de teclado. Type here to test your keyboard - + Teclee aquí para comproba-lo seu teclado. @@ -1405,49 +1406,49 @@ O instalador pecharase e perderanse todos os cambios. What is your name? - + Cal é o seu nome? What name do you want to use to log in? - + Cal é o nome que quere usar para entrar? font-weight: normal - + Tamaño de letra: normal <small>If more than one person will use this computer, you can set up multiple accounts after installation.</small> - + <small>Se máis dunha persoa vai usa-lo computador, pode configurar contas múltiples trala instalción.</small> Choose a password to keep your account safe. - + Escolla un contrasinal para mante-la sua conta segura. <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>Entre o mesmo contrasinal dúas veces, deste xeito podese comprobar errores ó teclear. Un bo contrasinal debe conter un conxunto de letras, números e signos de puntuación, deberá ter como mínimo oito carácteres, e debe cambiarse a intervalos de tempo regulares.</small> What is the name of this computer? - + Cal é o nome deste computador? <small>This name will be used if you make the computer visible to others on a network.</small> - + <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. @@ -1468,42 +1469,42 @@ O instalador pecharase e perderanse todos os cambios. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1703,22 +1704,22 @@ O instalador pecharase e perderanse todos os cambios. - + unknown - + extended - + unformatted - + swap @@ -1806,57 +1807,57 @@ O instalador pecharase e perderanse todos os cambios. RequirementsChecker - + Gathering system information... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. - + is connected to the Internet - + The system is not connected to the Internet. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1911,12 +1912,12 @@ O instalador pecharase e perderanse todos os cambios. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -2095,42 +2096,42 @@ O instalador pecharase e perderanse todos os cambios. SetPasswordJob - + Set password for user %1 - + Setting password for user %1. - + Bad destination system path. - + rootMountPoint is %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. - + usermod terminated with error code %1. @@ -2176,7 +2177,7 @@ O instalador pecharase e perderanse todos os cambios. SummaryPage - + This is an overview of what will happen once you start the install procedure. @@ -2192,41 +2193,51 @@ O instalador pecharase e perderanse todos os cambios. 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Usuarios diff --git a/lang/calamares_gu.ts b/lang/calamares_gu.ts index bcd5e8198..2c40bf2c4 100644 --- a/lang/calamares_gu.ts +++ b/lang/calamares_gu.ts @@ -226,13 +226,13 @@ Output: - + &Cancel - + Cancel installation without changing the system. @@ -258,47 +258,47 @@ The installer will quit and all changes will be lost. - + &Close - + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error - + Installation Failed @@ -398,12 +398,12 @@ The installer will quit and all changes will be lost. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -414,83 +414,83 @@ 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. - - - - + + + + <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. @@ -612,42 +612,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. - + Could not open device '%1'. - + Could not open partition table. - + The installer failed to create file system on partition %1. - + The installer failed to update partition table on disk '%1'. @@ -683,27 +683,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. - + Could not open device %1. @@ -746,32 +746,32 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -779,37 +779,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. - + Delete partition <strong>%1</strong>. - + Deleting partition %1. - + The installer failed to delete partition %1. - + Partition (%1) and device (%2) do not match. - + Could not open device %1. - + Could not open partition table. @@ -970,37 +970,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information - + Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. - + Setting up mount points. @@ -1031,17 +1031,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish - + Installation Complete - + The installation of %1 is complete. @@ -1122,12 +1122,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> - + Set keyboard layout to %1/%2. @@ -1289,7 +1289,7 @@ The installer will quit and all changes will be lost. - + Location @@ -1332,13 +1332,13 @@ The installer will quit and all changes will be lost. - + Source and target for copying do not overlap: Rollback is not required. - - + + Could not open device %1 to rollback copying. @@ -1346,17 +1346,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1460,42 +1461,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1695,22 +1696,22 @@ The installer will quit and all changes will be lost. - + unknown - + extended - + unformatted - + swap @@ -1798,57 +1799,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. - + is connected to the Internet - + The system is not connected to the Internet. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1903,12 +1904,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -2087,42 +2088,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 - + Setting password for user %1. - + Bad destination system path. - + rootMountPoint is %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. - + usermod terminated with error code %1. @@ -2168,7 +2169,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. @@ -2184,41 +2185,51 @@ The installer will quit and all changes will be lost. 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users diff --git a/lang/calamares_he.ts b/lang/calamares_he.ts index 331444e27..7e0baed9e 100644 --- a/lang/calamares_he.ts +++ b/lang/calamares_he.ts @@ -232,13 +232,13 @@ Output: - + &Cancel &בטל - + Cancel installation without changing the system. בטל התקנה ללא ביצוע שינוי במערכת. @@ -265,47 +265,47 @@ The installer will quit and all changes will be lost. &לא - + &Close &סגור - + Continue with setup? המשך עם הליך ההתקנה? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> אשף ההתקנה של %1 הולך לבצע שינויים בכונן שלך לטובת התקנת %2.<br/><strong>לא תוכל לבטל את השינויים הללו.</strong> - + &Install now &התקן כעת - + Go &back &אחורה - + &Done &בוצע - + The installation is complete. Close the installer. תהליך ההתקנה הושלם. אנא סגור את אשף ההתקנה. - + Error שגיאה - + Installation Failed ההתקנה נכשלה @@ -405,12 +405,12 @@ The installer will quit and all changes will be lost. <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. @@ -421,83 +421,83 @@ 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/> תוכל לסקור ולאשר את בחירתך לפני ששינויים יתבצעו על התקן האחסון. - - - - + + + + <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/>תוכל לסקור ולאשר את בחירתך לפני ששינויים יתבצעו על התקן האחסון. @@ -619,42 +619,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. צור מחיצה חדשה בגודל %2 MB על %4 (%3) עם מערכת קבצים %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. צור מחיצה חדשה בגודל <strong>%2 MB</strong> על <strong>%4</strong> (%3) עם מערכת קבצים <strong>%1</strong>. - + Creating new %1 partition on %2. מגדיר מחיצה %1 חדשה על %2. - + The installer failed to create partition on disk '%1'. אשף ההתקנה נכשל ביצירת מחיצה על כונן '%1'. - + Could not open device '%1'. לא ניתן לפתוח את התקן '%1'. - + Could not open partition table. לא ניתן לפתוח את טבלת המחיצות. - + The installer failed to create file system on partition %1. אשף ההתקנה נכשל בעת יצירת מערכת הקבצים על מחיצה %1. - + The installer failed to update partition table on disk '%1'. אשף ההתקנה נכשל בעת עדכון טבלת המחיצות על כונן '%1'. @@ -690,27 +690,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. צור טבלת מחיצות %1 חדשה על %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). צור טבלת מחיצות <strong>%1</strong> חדשה על <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. יוצר טבלת מחיצות %1 חדשה על %2. - + The installer failed to create a partition table on %1. אשף ההתקנה נכשל בעת יצירת טבלת המחיצות על %1. - + Could not open device %1. לא ניתן לפתוח את התקן %1. @@ -753,32 +753,32 @@ The installer will quit and all changes will be lost. לא ניתן לפתוח את קובץ הקבוצות לקריאה. - + Cannot create user %1. לא ניתן ליצור משתמש %1. - + useradd terminated with error code %1. פקודת יצירת המשתמש, useradd, נכשלה עם קוד יציאה %1. - + Cannot add user %1 to groups: %2. לא ניתן להוסיף את המשתמש %1 לקבוצות: %2. - + usermod terminated with error code %1. פקודת שינוי מאפייני המשתמש, usermod, נכשלה עם קוד יציאה %1. - + Cannot set home directory ownership for user %1. לא ניתן להגדיר בעלות על תיקיית הבית עבור משתמש %1. - + chown terminated with error code %1. פקודת שינוי בעלות, chown, נכשלה עם קוד יציאה %1. @@ -786,37 +786,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. מחק את מחיצה %1. - + Delete partition <strong>%1</strong>. מחק את מחיצה <strong>%1</strong>. - + Deleting partition %1. מבצע מחיקה של מחיצה %1. - + The installer failed to delete partition %1. אשף ההתקנה נכשל בעת מחיקת מחיצה %1. - + Partition (%1) and device (%2) do not match. מחיצה (%1) והתקן (%2) לא תואמים. - + Could not open device %1. לא ניתן לפתוח את התקן %1. - + Could not open partition table. לא ניתן לפתוח את טבלת המחיצות. @@ -977,37 +977,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information הגדר מידע עבור המחיצה - + Install %1 on <strong>new</strong> %2 system partition. התקן %1 על מחיצת מערכת %2 <strong>חדשה</strong>. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. הגדר מחיצת מערכת %2 <strong>חדשה</strong>בעלת נקודת עיגון <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. התקן %2 על מחיצת מערכת %3 <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. התקן מחיצה %3 <strong>%1</strong> עם נקודת עיגון <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. התקן מנהל אתחול מערכת על <strong>%1</strong>. - + Setting up mount points. מגדיר נקודות עיגון. @@ -1038,17 +1038,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish סיום - + Installation Complete ההתקנה הושלמה - + The installation of %1 is complete. ההתקנה של %1 הושלמה. @@ -1129,12 +1129,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> הגדר את דגם המקלדת ל %1.<br/> - + Set keyboard layout to %1/%2. הגדר את פריסת לוח המקשים ל %1/%2. @@ -1296,7 +1296,7 @@ The installer will quit and all changes will be lost. טוען נתונים על המיקום... - + Location מיקום @@ -1339,13 +1339,13 @@ The installer will quit and all changes will be lost. הגדלים הלוגיים של מקטעי המקור והיעד להעתקה אינם זהים. הנ"ל לא נתמך בגרסה זו. - + Source and target for copying do not overlap: Rollback is not required. המקור והיעד להעתקה לא חופפים: ביטול שינויים לא נדרש. - - + + Could not open device %1 to rollback copying. פתיחת התקן %1 בכדי לבצע העתקה למצב הקודם נכשלה. @@ -1353,17 +1353,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name שם - + Description תיאור - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) התקנת רשת. (מנוטרלת: לא ניתן לאחזר רשימות של חבילות תוכנה, אנא בדוק את חיבורי הרשת) @@ -1467,42 +1468,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root מערכת הפעלה Root - + Home בית Home - + Boot טעינה Boot - + EFI system מערכת EFI - + Swap דפדוף, Swap - + New partition for %1 מחיצה חדשה עבור %1 - + New partition מחיצה חדשה - + %1 %2 %1 %2 @@ -1702,22 +1703,22 @@ The installer will quit and all changes will be lost. ברירת מחדל - + unknown לא מוכר/ת - + extended מורחב/ת - + unformatted לא מאותחל/ת - + swap דפדוף, swap @@ -1805,57 +1806,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... מלקט מידע אודות המערכת... - + has at least %1 GB available drive space קיים לפחות %1 GB של נפח אחסון - + There is not enough drive space. At least %1 GB is required. נפח האחסון לא מספק. נדרש לפחות %1 GB. - + has at least %1 GB working memory קיים לפחות %1 GB של זכרון פעולה - + The system does not have enough working memory. At least %1 GB is required. כמות הזכרון הנדרשת לפעולה, לא מספיקה. נדרש לפחות %1 GB. - + is plugged in to a power source מחובר לספק חשמל חיצוני - + The system is not plugged in to a power source. המערכת לא מחוברת לספק חשמל חיצוני. - + is connected to the Internet מחובר לאינטרנט - + The system is not connected to the Internet. המערכת לא מחוברת לאינטרנט. - + The installer is not running with administrator rights. אשף ההתקנה לא רץ עם הרשאות מנהל. - + The screen is too small to display the installer. גודל המסך קטן מדי בכדי להציג את מנהל ההתקנה. @@ -1910,12 +1911,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... סורק התקני זכרון... - + Partitioning מגדיר מחיצות @@ -2094,42 +2095,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 הגדר סיסמה עבור משתמש %1 - + Setting password for user %1. מגדיר סיסמה עבור משתמש %1. - + Bad destination system path. יעד נתיב המערכת לא תקין. - + rootMountPoint is %1 עיגון מחיצת מערכת ההפעלה, rootMountPoint, היא %1 - + Cannot disable root account. לא ניתן לנטרל את חשבון המנהל root. - + passwd terminated with error code %1. passwd הסתיימה עם שגיאת קוד %1. - + Cannot set password for user %1. לא ניתן להגדיר סיסמה עבור משתמש %1. - + usermod terminated with error code %1. פקודת שינוי מאפייני המשתמש, usermod, נכשלה עם קוד יציאה %1. @@ -2175,7 +2176,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. להלן סקירת המאורעות שיתרחשו עם תחילת תהליך ההתקנה. @@ -2191,41 +2192,51 @@ The installer will quit and all changes will be lost. 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! הסיסמאות לא תואמות! + + + Password is too short + הסיסמה קצרה מדי + + + + Password is too long + הסיסמה ארוכה מדי + UsersViewStep - + Users משתמשים diff --git a/lang/calamares_hi.ts b/lang/calamares_hi.ts index 4aac00ddc..7fb18b39d 100644 --- a/lang/calamares_hi.ts +++ b/lang/calamares_hi.ts @@ -226,13 +226,13 @@ Output: - + &Cancel - + Cancel installation without changing the system. @@ -258,47 +258,47 @@ The installer will quit and all changes will be lost. - + &Close - + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error - + Installation Failed @@ -398,12 +398,12 @@ The installer will quit and all changes will be lost. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -414,83 +414,83 @@ 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. - - - - + + + + <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. @@ -612,42 +612,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. - + Could not open device '%1'. - + Could not open partition table. - + The installer failed to create file system on partition %1. - + The installer failed to update partition table on disk '%1'. @@ -683,27 +683,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. - + Could not open device %1. @@ -746,32 +746,32 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -779,37 +779,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. - + Delete partition <strong>%1</strong>. - + Deleting partition %1. - + The installer failed to delete partition %1. - + Partition (%1) and device (%2) do not match. - + Could not open device %1. - + Could not open partition table. @@ -970,37 +970,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information - + Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. - + Setting up mount points. @@ -1031,17 +1031,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish - + Installation Complete - + The installation of %1 is complete. @@ -1122,12 +1122,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> - + Set keyboard layout to %1/%2. @@ -1289,7 +1289,7 @@ The installer will quit and all changes will be lost. - + Location @@ -1332,13 +1332,13 @@ The installer will quit and all changes will be lost. - + Source and target for copying do not overlap: Rollback is not required. - - + + Could not open device %1 to rollback copying. @@ -1346,17 +1346,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1460,42 +1461,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1695,22 +1696,22 @@ The installer will quit and all changes will be lost. - + unknown - + extended - + unformatted - + swap @@ -1798,57 +1799,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. - + is connected to the Internet - + The system is not connected to the Internet. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1903,12 +1904,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -2087,42 +2088,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 - + Setting password for user %1. - + Bad destination system path. - + rootMountPoint is %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. - + usermod terminated with error code %1. @@ -2168,7 +2169,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. @@ -2184,41 +2185,51 @@ The installer will quit and all changes will be lost. 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users diff --git a/lang/calamares_hr.ts b/lang/calamares_hr.ts index 6d40a25d4..054b394ba 100644 --- a/lang/calamares_hr.ts +++ b/lang/calamares_hr.ts @@ -232,13 +232,13 @@ Izlaz: - + &Cancel &Odustani - + Cancel installation without changing the system. Odustanite od instalacije bez promjena na sustavu. @@ -265,47 +265,47 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.&Ne - + &Close &Zatvori - + Continue with setup? Nastaviti s postavljanjem? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> %1 instalacijski program će napraviti promjene na disku kako bi instalirao %2.<br/><strong>Nećete moći vratiti te promjene.</strong> - + &Install now &Instaliraj sada - + Go &back Idi &natrag - + &Done &Gotovo - + The installation is complete. Close the installer. Instalacija je završena. Zatvorite instalacijski program. - + Error Greška - + Installation Failed Instalacija nije uspjela @@ -405,12 +405,12 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.<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. @@ -421,83 +421,83 @@ 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. - - - - + + + + <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. @@ -619,42 +619,42 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Stvori novu %2MB particiju na %4 (%3) s datotečnim sustavom %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Stvori novu <strong>%2MB</strong> particiju na <strong>%4</strong> (%3) s datotečnim sustavom <strong>%1</strong>. - + Creating new %1 partition on %2. Stvaram novu %1 particiju na %2. - + The installer failed to create partition on disk '%1'. Instalacijski program nije uspio stvoriti particiju na disku '%1'. - + Could not open device '%1'. Ne mogu otvoriti uređaj '%1'. - + Could not open partition table. Ne mogu otvoriti particijsku tablicu. - + The installer failed to create file system on partition %1. Instalacijski program nije uspio stvoriti datotečni sustav na particiji %1. - + The installer failed to update partition table on disk '%1'. Instalacijski program nije uspio nadograditi particijsku tablicu na disku '%1'. @@ -690,27 +690,27 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. CreatePartitionTableJob - + Create new %1 partition table on %2. Stvori novu %1 particijsku tablicu na %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Stvori novu <strong>%1</strong> particijsku tablicu na <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Stvaram novu %1 particijsku tablicu na %2. - + The installer failed to create a partition table on %1. Instalacijski program nije uspio stvoriti particijsku tablicu na %1. - + Could not open device %1. Ne mogu otvoriti uređaj %1. @@ -753,32 +753,32 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.Ne mogu otvoriti groups datoteku za čitanje. - + Cannot create user %1. Ne mogu stvoriti korisnika %1. - + useradd terminated with error code %1. useradd je prestao s radom sa greškom koda %1. - + Cannot add user %1 to groups: %2. Ne mogu dodati korisnika %1 u grupe: %2. - + usermod terminated with error code %1. korisnički mod je prekinut s greškom %1. - + Cannot set home directory ownership for user %1. Ne mogu postaviti vlasništvo radnog direktorija za korisnika %1. - + chown terminated with error code %1. chown je prestao s radom sa greškom koda %1. @@ -786,37 +786,37 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. DeletePartitionJob - + Delete partition %1. Obriši particiju %1. - + Delete partition <strong>%1</strong>. Obriši particiju <strong>%1</strong>. - + Deleting partition %1. Brišem particiju %1. - + The installer failed to delete partition %1. Instalacijski program nije uspio izbrisati particiju %1. - + Partition (%1) and device (%2) do not match. Particija (%1) i uređaj (%2) se ne poklapaju. - + Could not open device %1. Ne mogu otvoriti uređaj %1. - + Could not open partition table. Ne mogu otvoriti particijsku tablicu. @@ -977,37 +977,37 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. FillGlobalStorageJob - + Set partition information Postavi informacije o particiji - + Install %1 on <strong>new</strong> %2 system partition. Instaliraj %1 na <strong>novu</strong> %2 sistemsku particiju. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Postavi <strong>novu</strong> %2 particiju s točkom montiranja <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Instaliraj %2 na %3 sistemsku particiju <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Postavi %3 particiju <strong>%1</strong> s točkom montiranja <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Instaliraj boot učitavač na <strong>%1</strong>. - + Setting up mount points. Postavljam točke montiranja. @@ -1038,17 +1038,17 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. FinishedViewStep - + Finish Završi - + Installation Complete Instalacija je završena - + The installation of %1 is complete. Instalacija %1 je završena. @@ -1129,12 +1129,12 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. KeyboardPage - + Set keyboard model to %1.<br/> Postavi model tipkovnice na %1.<br/> - + Set keyboard layout to %1/%2. Postavi raspored tipkovnice na %1%2. @@ -1296,7 +1296,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.Učitavanje podataka o lokaciji... - + Location Lokacija @@ -1339,13 +1339,13 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.Velićina logičkog sektora na izvoru i cilju za kopiranje nije ista. Ovo trenutno nije podržano. - + Source and target for copying do not overlap: Rollback is not required. Izvor i cilj za kopiranje se ne preklapaju. Vraćanje nije potrebno. - - + + Could not open device %1 to rollback copying. Ne mogu otvoriti uređaj %1 za vraćanje kopiranja. @@ -1353,17 +1353,18 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. NetInstallPage - + Name Ime - + Description Opis - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) Mrežna instalacija. (Onemogućeno: Ne mogu dohvatiti listu paketa, provjerite da li ste spojeni na mrežu) @@ -1467,42 +1468,42 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. PartitionLabelsView - + Root Root - + Home Home - + Boot Boot - + EFI system EFI sustav - + Swap Swap - + New partition for %1 Nova particija za %1 - + New partition Nova particija - + %1 %2 %1 %2 @@ -1702,22 +1703,22 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.Zadano - + unknown nepoznato - + extended prošireno - + unformatted nije formatirano - + swap swap @@ -1805,57 +1806,57 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. RequirementsChecker - + Gathering system information... Skupljanje informacija o sustavu... - + has at least %1 GB available drive space ima barem %1 GB dostupne slobodne memorije na disku - + There is not enough drive space. At least %1 GB is required. Nema dovoljno prostora na disku. Potrebno je najmanje %1 GB. - + has at least %1 GB working memory ima barem %1 GB radne memorije - + The system does not have enough working memory. At least %1 GB is required. Ovaj sustav nema dovoljno radne memorije. Potrebno je najmanje %1 GB. - + is plugged in to a power source je spojeno na izvor struje - + The system is not plugged in to a power source. Ovaj sustav nije spojen na izvor struje. - + is connected to the Internet je spojeno na Internet - + The system is not connected to the Internet. Ovaj sustav nije spojen na internet. - + The installer is not running with administrator rights. Instalacijski program nije pokrenut sa administratorskim dozvolama. - + The screen is too small to display the installer. Zaslon je premalen za prikaz instalacijskog programa. @@ -1910,12 +1911,12 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. ScanningDialog - + Scanning storage devices... Tražim dostupne uređaje za spremanje... - + Partitioning Particioniram @@ -2094,42 +2095,42 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. SetPasswordJob - + Set password for user %1 Postavi lozinku za korisnika %1 - + Setting password for user %1. Postavljam lozinku za korisnika %1. - + Bad destination system path. Loš odredišni put sustava. - + rootMountPoint is %1 rootTočkaMontiranja je %1 - + Cannot disable root account. Ne mogu onemogućiti root račun. - + passwd terminated with error code %1. passwd je prekinut s greškom %1. - + Cannot set password for user %1. Ne mogu postaviti lozinku za korisnika %1. - + usermod terminated with error code %1. usermod je prekinut s greškom %1. @@ -2175,7 +2176,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. SummaryPage - + This is an overview of what will happen once you start the install procedure. Ovo je prikaz događaja koji će uslijediti jednom kad počne instalacijska procedura. @@ -2191,41 +2192,51 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. 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! + + + Password is too short + Lozinka je prekratka + + + + Password is too long + Lozinka je preduga + UsersViewStep - + Users Korisnici @@ -2280,7 +2291,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. <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="http://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/>za %3</strong><br/><br/>Autorska prava 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Autorska prava 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Zahvale: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg i <a href="https://www.transifex.com/calamares/calamares/">Calamares timu za prevođenje</a>.<br/><br/><a href="http://calamares.io/">Calamares</a>sponzorira <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. + <h1>%1</h1><br/><strong>%2<br/>za %3</strong><br/><br/>Autorska prava 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Autorska prava 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Zahvale: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg i <a href="https://www.transifex.com/calamares/calamares/">Calamares timu za prevođenje</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> sponzorira <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. diff --git a/lang/calamares_hu.ts b/lang/calamares_hu.ts index 32af46f3c..6af19c5a0 100644 --- a/lang/calamares_hu.ts +++ b/lang/calamares_hu.ts @@ -232,13 +232,13 @@ Kimenet: - + &Cancel &Mégse - + Cancel installation without changing the system. Kilépés a telepítőből a rendszer megváltoztatása nélkül. @@ -265,47 +265,47 @@ Minden változtatás elveszik, ha kilépsz a telepítőből. @Nem - + &Close &Bezár - + Continue with setup? Folytatod a telepítéssel? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> A %1 telepítő változtatásokat fog elvégezni, hogy telepítse a következőt: %2.<br/><strong>A változtatások visszavonhatatlanok lesznek.</strong> - + &Install now &Telepítés most - + Go &back Menj &vissza - + &Done &Befejez - + The installation is complete. Close the installer. A telepítés befejeződött, kattints a bezárásra. - + Error Hiba - + Installation Failed Telepítés nem sikerült @@ -406,12 +406,12 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l <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 @@ -422,83 +422,83 @@ 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. - - - - + + + + <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. @@ -620,42 +620,42 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Új %2MB- os partíció létrehozása a %4 (%3) eszközön %1 fájlrendszerrel. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Új <strong>%2MB</strong>- os partíció létrehozása a </strong>%4</strong> (%3) eszközön <strong>%1</strong> fájlrendszerrel. - + Creating new %1 partition on %2. Új %1 partíció létrehozása a következőn: %2. - + The installer failed to create partition on disk '%1'. A telepítő nem tudta létrehozni a partíciót ezen a lemezen '%1'. - + Could not open device '%1'. Nem sikerült az eszköz megnyitása '%1'. - + Could not open partition table. Nem sikerült a partíciós tábla megnyitása. - + The installer failed to create file system on partition %1. A telepítő nem tudta létrehozni a fájlrendszert a %1 partíción. - + The installer failed to update partition table on disk '%1'. A telepítő nem tudta frissíteni a partíciós táblát a %1 lemezen. @@ -691,27 +691,27 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l CreatePartitionTableJob - + Create new %1 partition table on %2. Új %1 partíciós tábla létrehozása a következőn: %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Új <strong>%1 </strong> partíciós tábla létrehozása a következőn: <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Új %1 partíciós tábla létrehozása a következőn: %2. - + The installer failed to create a partition table on %1. A telepítőnek nem sikerült létrehoznia a partíciós táblát a lemezen %1. - + Could not open device %1. Nem sikerült megnyitni a %1 eszközt. @@ -754,32 +754,32 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l Nem lehet a groups fájlt megnyitni olvasásra. - + Cannot create user %1. Nem lehet a %1 felhasználót létrehozni. - + useradd terminated with error code %1. useradd megszakítva %1 hibakóddal. - + Cannot add user %1 to groups: %2. Nem lehet a %1 felhasználót létrehozni a %2 csoportban. - + usermod terminated with error code %1. usermod megszakítva %1 hibakóddal. - + Cannot set home directory ownership for user %1. Nem lehet a home könyvtár tulajdonos jogosultságát beállítani %1 felhasználónak. - + chown terminated with error code %1. chown megszakítva %1 hibakóddal. @@ -787,37 +787,37 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l DeletePartitionJob - + Delete partition %1. %1 partíció törlése - + Delete partition <strong>%1</strong>. A következő partíció törlése: <strong>%1</strong>. - + Deleting partition %1. %1 partíció törlése - + The installer failed to delete partition %1. A telepítő nem tudta törölni a %1 partíciót. - + Partition (%1) and device (%2) do not match. A (%1) nevű partíció és a (%2) nevű eszköz között nincs egyezés. - + Could not open device %1. Nem sikerült megnyitni a %1 eszközt. - + Could not open partition table. Nem sikerült a partíciós tábla megnyitása. @@ -978,37 +978,37 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l FillGlobalStorageJob - + Set partition information Partíció információk beállítása - + Install %1 on <strong>new</strong> %2 system partition. %1 telepítése az <strong>új</strong> %2 partícióra. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. <strong>Új</strong> %2 partíció beállítása <strong>%1</strong> csatolási ponttal. - + Install %2 on %3 system partition <strong>%1</strong>. %2 telepítése %3 <strong>%1</strong> rendszer partícióra. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. %3 partíció beállítása <strong>%1</strong> <strong>%2</strong> csatolási ponttal. - + Install boot loader on <strong>%1</strong>. Rendszerbetöltő telepítése ide <strong>%1</strong>. - + Setting up mount points. Csatlakozási pontok létrehozása @@ -1039,17 +1039,17 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l FinishedViewStep - + Finish Befejezés - + Installation Complete A telepítés befejeződött. - + The installation of %1 is complete. A %1 telepítése elkészült. @@ -1130,12 +1130,12 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l KeyboardPage - + Set keyboard model to %1.<br/> Billentyűzet típus beállítása %1.<br/> - + Set keyboard layout to %1/%2. Billentyűzet kiosztás beállítása %1/%2. @@ -1297,7 +1297,7 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l Hely adatok betöltése... - + Location Hely @@ -1340,13 +1340,13 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l A logikai szektor méretek nem egyeznek a forrásban és a célban a másoláshoz. Ez jelenleg nem támogatott. - + Source and target for copying do not overlap: Rollback is not required. Forrás és a cél nem fedik egymást a másoláshoz: Visszavonás nem szükséges. - - + + Could not open device %1 to rollback copying. Nem sikerült megnyitni a %1 eszközt a másolás visszavonásához. @@ -1354,17 +1354,18 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l NetInstallPage - + Name Név - + Description Leírás - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) Hálózati telepítés. (Kikapcsolva: A csomagokat nem lehet letölteni, ellenőrizd a hálózati kapcsolatot) @@ -1468,42 +1469,42 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l PartitionLabelsView - + Root Root - + Home Home - + Boot Boot - + EFI system EFI rendszer - + Swap Swap - + New partition for %1 Új partíció %1 -ra/ -re - + New partition Új partíció - + %1 %2 %1 %2 @@ -1703,22 +1704,22 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l Alapértelmezett - + unknown ismeretlen - + extended kiterjesztett - + unformatted formázatlan - + swap Swap @@ -1806,57 +1807,57 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l RequirementsChecker - + Gathering system information... Rendszerinformációk gyűjtése... - + has at least %1 GB available drive space Legalább %1 GB lemezterület elérhető - + There is not enough drive space. At least %1 GB is required. Nincs elég lemezterület. Legalább %1GB szükséges. - + has at least %1 GB working memory Legalább %1 GB elérhető memória - + The system does not have enough working memory. At least %1 GB is required. A rendszernek nincs elég memóriája. Legalább %1 GB szükséges. - + is plugged in to a power source csatlakoztatva van külső áramforráshoz - + The system is not plugged in to a power source. A rendszer nincs csatlakoztatva külső áramforráshoz - + is connected to the Internet csatlakozik az internethez - + The system is not connected to the Internet. A rendszer nem csatlakozik az internethez. - + The installer is not running with administrator rights. A telepítő nem adminisztrátori jogokkal fut. - + The screen is too small to display the installer. A képernyő túl kicsi a telepítőnek. @@ -1911,12 +1912,12 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l ScanningDialog - + Scanning storage devices... Eszközök keresése... - + Partitioning Partícionálás @@ -2095,42 +2096,42 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l SetPasswordJob - + Set password for user %1 %1 felhasználó jelszó beállítása - + Setting password for user %1. %1 felhasználói jelszó beállítása - + Bad destination system path. Rossz célrendszer elérési út - + rootMountPoint is %1 rootMountPoint is %1 - + Cannot disable root account. A root account- ot nem lehet inaktiválni. - + passwd terminated with error code %1. passwd megszakítva %1 hibakóddal. - + Cannot set password for user %1. Nem lehet a %1 felhasználó jelszavát beállítani. - + usermod terminated with error code %1. usermod megszakítva %1 hibakóddal. @@ -2176,7 +2177,7 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l SummaryPage - + This is an overview of what will happen once you start the install procedure. Ez áttekintése annak, hogy mi fog történni, ha megkezded a telepítést. @@ -2192,41 +2193,51 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Felhasználók diff --git a/lang/calamares_id.ts b/lang/calamares_id.ts index 53831e57b..05481f531 100644 --- a/lang/calamares_id.ts +++ b/lang/calamares_id.ts @@ -232,13 +232,13 @@ Keluaran: - + &Cancel &Batal - + Cancel installation without changing the system. Batal pemasangan tanpa mengubah sistem yang ada. @@ -265,47 +265,47 @@ Pemasangan akan ditutup dan semua perubahan akan hilang. &Tidak - + &Close &Tutup - + Continue with setup? Lanjutkan dengan setelan ini? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> Pemasang %1 akan membuat perubahan ke disk Anda untuk memasang %2.<br/><strong>Anda tidak dapat membatalkan perubahan tersebut.</strong> - + &Install now &Pasang sekarang - + Go &back &Kembali - + &Done &Kelar - + The installation is complete. Close the installer. Pemasangan sudah lengkap. Tutup pemasang. - + Error Kesalahan - + Installation Failed Pemasangan Gagal @@ -407,12 +407,12 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.<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. @@ -423,83 +423,83 @@ Pemasangan 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. - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Pasang berdampingan dengan</strong><br/>Pemasang 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. @@ -621,42 +621,42 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Buat partisi %2MB baru pada %4 (%3) dengan sistem berkas %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Buat <strong>%2MB</strong> partisi baru pada <strong>%4</strong> (%3) dengan sistem berkas <strong>%1</strong>. - + Creating new %1 partition on %2. Membuat partisi %1 baru di %2. - + The installer failed to create partition on disk '%1'. Pemasang gagal untuk membuat partisi di disk '%1'. - + Could not open device '%1'. Tidak dapat membuka piranti '%1'. - + Could not open partition table. Tidak dapat membuka tabel partisi. - + The installer failed to create file system on partition %1. Pemasang gagal membuat sistem berkas pada partisi %1. - + The installer failed to update partition table on disk '%1'. Pemasang gagal memperbarui tabel partisi pada disk %1. @@ -692,27 +692,27 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. CreatePartitionTableJob - + Create new %1 partition table on %2. Membuat tabel partisi %1 baru di %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Membuat tabel partisi <strong>%1</strong> baru di <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Membuat tabel partisi %1 baru di %2. - + The installer failed to create a partition table on %1. Pemasang gagal membuat tabel partisi pada %1. - + Could not open device %1. Tidak dapat membuka piranti %1. @@ -755,32 +755,32 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.Tidak dapat membuka berkas groups untuk dibaca. - + Cannot create user %1. Tidak dapat membuat pengguna %1. - + useradd terminated with error code %1. useradd dihentikan dengan kode kesalahan %1. - + Cannot add user %1 to groups: %2. Tak bisa menambahkan pengguna %1 ke kelompok: %2. - + usermod terminated with error code %1. usermod terhenti dengan kode galat %1. - + Cannot set home directory ownership for user %1. Tidak dapat menyetel kepemilikan direktori home untuk pengguna %1. - + chown terminated with error code %1. chown dihentikan dengan kode kesalahan %1. @@ -788,37 +788,37 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. DeletePartitionJob - + Delete partition %1. Hapus partisi %1. - + Delete partition <strong>%1</strong>. Hapus partisi <strong>%1</strong> - + Deleting partition %1. Menghapus partisi %1. - + The installer failed to delete partition %1. Pemasang gagal untuk menghapus partisi %1. - + Partition (%1) and device (%2) do not match. Partisi (%1) dan perangkat (%2) tidak sesuai. - + Could not open device %1. Tidak dapat membuka perangkat %1. - + Could not open partition table. Tidak dapat membuka tabel partisi. @@ -979,37 +979,37 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. FillGlobalStorageJob - + Set partition information Tetapkan informasi partisi - + Install %1 on <strong>new</strong> %2 system partition. Pasang %1 pada partisi sistem %2 <strong>baru</strong> - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Setel partisi %2 <strong>baru</strong> dengan tempat kait <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Pasang %2 pada sistem partisi %3 <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Setel partisi %3 <strong>%1</strong> dengan tempat kait <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Pasang boot loader di <strong>%1</strong>. - + Setting up mount points. Menyetel tempat kait. @@ -1040,17 +1040,17 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. FinishedViewStep - + Finish Selesai - + Installation Complete Pemasangan Lengkap - + The installation of %1 is complete. Pemasangan %1 telah lengkap. @@ -1131,12 +1131,12 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. KeyboardPage - + Set keyboard model to %1.<br/> Setel model papan ketik ke %1.<br/> - + Set keyboard layout to %1/%2. Setel tata letak papan ketik ke %1/%2. @@ -1298,7 +1298,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.Memuat data lokasi... - + Location Lokasi @@ -1341,13 +1341,13 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.Ukuran sektor logikal pada sumber dan sasaran untuk penyalinan tidak sama. Hal ini saat ini tidak didukung. - + Source and target for copying do not overlap: Rollback is not required. Sumber dan sasaran untuk penyalinan tidak dapat dicocokkan. Pembatalan tidak diperlukan. - - + + Could not open device %1 to rollback copying. Tidak dapat membuka perangkat %1 untuk pembatalan penyalinan. @@ -1355,17 +1355,18 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. NetInstallPage - + Name Nama - + Description Deskripsi - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) Pemasangan Jaringan. (Dinonfungsikan: Tak mampu menarik daftar paket, periksa sambungan jaringanmu) @@ -1469,42 +1470,42 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. PartitionLabelsView - + Root Root - + Home Beranda - + Boot Boot - + EFI system Sistem EFI - + Swap Swap - + New partition for %1 Partisi baru untuk %1 - + New partition Partisi baru - + %1 %2 %1 %2 @@ -1704,22 +1705,22 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.Standar - + unknown tidak diketahui: - + extended extended - + unformatted tidak terformat: - + swap swap @@ -1807,57 +1808,57 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. RequirementsChecker - + Gathering system information... Mengumpulkan informasi sistem... - + has at least %1 GB available drive space memiliki paling sedikit %1 GB ruang drive tersedia - + There is not enough drive space. At least %1 GB is required. Ruang drive tidak cukup. Butuh minial %1 GB. - + has at least %1 GB working memory memiliki paling sedikit %1 GB memori bekerja - + The system does not have enough working memory. At least %1 GB is required. Sistem ini tidak memiliki memori yang cukup. Butuh minial %1 GB. - + is plugged in to a power source terhubung dengan sumber listrik - + The system is not plugged in to a power source. Sistem tidak terhubung dengan sumber listrik. - + is connected to the Internet terkoneksi dengan internet - + The system is not connected to the Internet. Sistem tidak terkoneksi dengan internet. - + The installer is not running with administrator rights. Pemasang tidak dijalankan dengan kewenangan administrator. - + The screen is too small to display the installer. Layar terlalu kecil untuk menampilkan pemasang. @@ -1912,12 +1913,12 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. ScanningDialog - + Scanning storage devices... Memeriksa media penyimpanan... - + Partitioning Mempartisi @@ -2096,42 +2097,42 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. SetPasswordJob - + Set password for user %1 Setel sandi untuk pengguna %1 - + Setting password for user %1. Mengatur sandi untuk pengguna %1. - + Bad destination system path. Jalur lokasi sistem tujuan buruk. - + rootMountPoint is %1 rootMountPoint adalah %1 - + Cannot disable root account. Tak bisa menonfungsikan akun root. - + passwd terminated with error code %1. passwd terhenti dengan kode galat %1. - + Cannot set password for user %1. Tidak dapat menyetel sandi untuk pengguna %1. - + usermod terminated with error code %1. usermod dihentikan dengan kode kesalahan %1. @@ -2177,7 +2178,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. SummaryPage - + This is an overview of what will happen once you start the install procedure. Berikut adalah tinjauan mengenai yang akan terjadi setelah Anda memulai prosedur pemasangan. @@ -2193,41 +2194,51 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Pengguna diff --git a/lang/calamares_is.ts b/lang/calamares_is.ts index bab0ad264..4ced6664f 100644 --- a/lang/calamares_is.ts +++ b/lang/calamares_is.ts @@ -232,13 +232,13 @@ Frálag: - + &Cancel &Hætta við - + Cancel installation without changing the system. Hætta við uppsetningu ánþess að breyta kerfinu. @@ -265,47 +265,47 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. &Nei - + &Close &Loka - + Continue with setup? Halda áfram með uppsetningu? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> %1 uppsetningarforritið er um það bil að gera breytingar á diskinum til að setja upp %2.<br/><strong>Þú munt ekki geta afturkallað þessar breytingar.</strong> - + &Install now Setja &inn núna - + Go &back Fara til &baka - + &Done &Búið - + The installation is complete. Close the installer. Uppsetning er lokið. Lokaðu uppsetningarforritinu. - + Error Villa - + Installation Failed Uppsetning mistókst @@ -405,12 +405,12 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. <strong>Handvirk disksneiðing</strong><br/>Þú getur búið til eða breytt stærð disksneiða sjálf(ur). - + 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. @@ -421,83 +421,83 @@ 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. - + 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. - - - - + + + + <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. @@ -619,42 +619,42 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Búa til nýja %2MB disksneið á %4 (%3) með %1 skráakerfi. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Búa til nýja <strong>%2MB</strong> disksneið á <strong>%4</strong> (%3) með skrár kerfi <strong>%1</strong>. - + Creating new %1 partition on %2. Búa til nýja %1 disksneiðatöflu á %2. - + The installer failed to create partition on disk '%1'. Uppsetningarforritinu mistókst að búa til disksneið á diski '%1'. - + Could not open device '%1'. Gat ekki opnað tæki '%1'. - + Could not open partition table. Gat ekki opnað disksneiðatöflu. - + The installer failed to create file system on partition %1. Uppsetningarforritinu mistókst að búa til skráakerfi á disksneið %1. - + The installer failed to update partition table on disk '%1'. Uppsetningarforritinu mistókst að uppfæra disksneið á diski '%1'. @@ -690,27 +690,27 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. CreatePartitionTableJob - + Create new %1 partition table on %2. Búa til nýja %1 disksneiðatöflu á %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Búa til nýja <strong>%1</strong> disksneiðatöflu á <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Búa til nýja %1 disksneiðatöflu á %2. - + The installer failed to create a partition table on %1. Uppsetningarforritinu mistókst að búa til disksneiðatöflu á diski '%1'. - + Could not open device %1. Gat ekki opnað tæki %1. @@ -753,32 +753,32 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. Get ekki opnað hópa skrá til að lesa. - + Cannot create user %1. Get ekki búið til notanda %1. - + useradd terminated with error code %1. useradd endaði með villu kóðann %1. - + Cannot add user %1 to groups: %2. Get ekki bætt við notanda %1 til hóps: %2. - + usermod terminated with error code %1. usermod endaði með villu kóðann %1. - + Cannot set home directory ownership for user %1. Get ekki stillt heimasvæðis eignarhald fyrir notandann %1. - + chown terminated with error code %1. chown endaði með villu kóðann %1. @@ -786,37 +786,37 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. DeletePartitionJob - + Delete partition %1. Eyða disksneið %1. - + Delete partition <strong>%1</strong>. Eyða disksneið <strong>%1</strong>. - + Deleting partition %1. Eyði disksneið %1. - + The installer failed to delete partition %1. Uppsetningarforritinu mistókst að eyða disksneið %1. - + Partition (%1) and device (%2) do not match. Disksneið (%1) og tæki (%2) passa ekki saman. - + Could not open device %1. Gat ekki opnað tæki %1. - + Could not open partition table. Gat ekki opnað disksneiðatöflu. @@ -977,37 +977,37 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. FillGlobalStorageJob - + Set partition information Setja upplýsingar um disksneið - + Install %1 on <strong>new</strong> %2 system partition. Setja upp %1 á <strong>nýja</strong> %2 disk sneiðingu. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Setja upp <strong>nýtt</strong> %2 snið með tengipunkti <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Setja upp %2 á %3 disk sneiðingu <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Setja upp %3 snið <strong>%1</strong> með tengipunkti <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Setja ræsistjórann upp á <strong>%1</strong>. - + Setting up mount points. Set upp tengipunkta. @@ -1038,17 +1038,17 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. FinishedViewStep - + Finish Ljúka - + Installation Complete Uppsetningu lokið - + The installation of %1 is complete. Uppsetningu af %1 er lokið. @@ -1129,12 +1129,12 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. KeyboardPage - + Set keyboard model to %1.<br/> - + Set keyboard layout to %1/%2. @@ -1296,7 +1296,7 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. Hleð inn staðsetningargögnum... - + Location Staðsetning @@ -1339,13 +1339,13 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. - + Source and target for copying do not overlap: Rollback is not required. - - + + Could not open device %1 to rollback copying. @@ -1353,17 +1353,18 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. NetInstallPage - + Name Heiti - + Description Lýsing - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1467,42 +1468,42 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. PartitionLabelsView - + Root Rót - + Home Heimasvæði - + Boot Ræsisvæði - + EFI system EFI-kerfi - + Swap Swap diskminni - + New partition for %1 Ný disksneið fyrir %1 - + New partition Ný disksneið - + %1 %2 %1 %2 @@ -1702,22 +1703,22 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. Sjálfgefið - + unknown óþekkt - + extended útvíkkuð - + unformatted ekki forsniðin - + swap swap diskminni @@ -1805,57 +1806,57 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. RequirementsChecker - + Gathering system information... Söfnun kerfis upplýsingar... - + has at least %1 GB available drive space hefur að minnsta kosti %1 GB laus á harðadisk - + There is not enough drive space. At least %1 GB is required. Það er ekki nóg diskapláss. Að minnsta kosti %1 GB eru þörf. - + has at least %1 GB working memory hefur að minnsta kosti %1 GB vinnsluminni - + The system does not have enough working memory. At least %1 GB is required. Kerfið hefur ekki nóg vinnsluminni. Að minnsta kosti %1 GB er krafist. - + is plugged in to a power source er í sambandi við aflgjafa - + The system is not plugged in to a power source. Kerfið er ekki í sambandi við aflgjafa. - + is connected to the Internet er tengd við Internetið - + The system is not connected to the Internet. Kerfið er ekki tengd við internetið. - + The installer is not running with administrator rights. Uppsetningarforritið er ekki keyrandi með kerfisstjóraheimildum. - + The screen is too small to display the installer. Skjárinn er of lítill til að birta uppsetningarforritið. @@ -1910,12 +1911,12 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. ScanningDialog - + Scanning storage devices... Skönnun geymslu tæki... - + Partitioning Partasneiðing @@ -2094,42 +2095,42 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. SetPasswordJob - + Set password for user %1 Gerðu lykilorð fyrir notanda %1 - + Setting password for user %1. Geri lykilorð fyrir notanda %1. - + Bad destination system path. - + rootMountPoint is %1 - + Cannot disable root account. Ekki er hægt að aftengja kerfisstjóra reikning. - + passwd terminated with error code %1. - + Cannot set password for user %1. Get ekki sett lykilorð fyrir notanda %1. - + usermod terminated with error code %1. usermod endaði með villu kóðann %1. @@ -2175,7 +2176,7 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. SummaryPage - + This is an overview of what will happen once you start the install procedure. Þetta er yfirlit yfir það sem mun gerast þegar þú byrjar að setja upp aðferð. @@ -2191,41 +2192,51 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Notendur diff --git a/lang/calamares_it_IT.ts b/lang/calamares_it_IT.ts index 18d89b0db..d66568976 100644 --- a/lang/calamares_it_IT.ts +++ b/lang/calamares_it_IT.ts @@ -232,13 +232,13 @@ Output: - + &Cancel &Annulla - + Cancel installation without changing the system. @@ -265,47 +265,47 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno - + &Close - + Continue with setup? Procedere con la configurazione? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> Il programma d'nstallazione %1 sta per eseguire delle modifiche al tuo disco per poter installare %2.<br/><strong> Non sarà possibile annullare tali modifiche.</strong> - + &Install now &Installa adesso - + Go &back &Indietro - + &Done - + The installation is complete. Close the installer. - + Error Errore - + Installation Failed Installazione non riuscita @@ -405,12 +405,12 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno <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. @@ -421,83 +421,83 @@ 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. - - - - + + + + <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. @@ -619,42 +619,42 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Creare una nuova partizione da %2MB su %4 (%3) con file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Creare una nuova partizione da <strong>%2MB</strong> su <strong>%4</strong> (%3) con file system <strong>%1</strong>. - + Creating new %1 partition on %2. Creazione della nuova partizione %1 su %2. - + The installer failed to create partition on disk '%1'. Il programma di installazione non è riuscito a creare la partizione sul disco '%1'. - + Could not open device '%1'. Impossibile aprire il disco '%1'. - + Could not open partition table. Impossibile aprire la tabella delle partizioni. - + The installer failed to create file system on partition %1. Il programma di installazione non è riuscito a creare il file system nella partizione %1. - + The installer failed to update partition table on disk '%1'. Il programma di installazione non è riuscito ad aggiornare la tabella delle partizioni sul disco '%1' @@ -690,27 +690,27 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno CreatePartitionTableJob - + Create new %1 partition table on %2. Creare una nuova tabella delle partizioni %1 su %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Creare una nuova tabella delle partizioni <strong>%1</strong> su <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Creazione della nuova tabella delle partizioni %1 su %2. - + The installer failed to create a partition table on %1. Il programma di installazione non è riuscito a creare una tabella delle partizioni su %1. - + Could not open device %1. Impossibile aprire il dispositivo %1. @@ -753,32 +753,32 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno Impossibile aprire il file groups in lettura. - + Cannot create user %1. Impossibile creare l'utente %1. - + useradd terminated with error code %1. useradd si è chiuso con codice di errore %1. - + Cannot add user %1 to groups: %2. Impossibile aggiungere l'utente %1 ai gruppi: %2. - + usermod terminated with error code %1. usermod è terminato con codice di errore: %1. - + Cannot set home directory ownership for user %1. Impossibile impostare i diritti sulla cartella home per l'utente %1. - + chown terminated with error code %1. chown si è chiuso con codice di errore %1. @@ -786,37 +786,37 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno DeletePartitionJob - + Delete partition %1. Cancellare la partizione %1. - + Delete partition <strong>%1</strong>. Cancellare la partizione <strong>%1</strong>. - + Deleting partition %1. Cancellazione partizione %1. - + The installer failed to delete partition %1. Il programma di installazione non è riuscito a cancellare la partizione %1. - + Partition (%1) and device (%2) do not match. La partizione (%1) ed il dispositivo (%2) non corrispondono. - + Could not open device %1. Impossibile aprire il dispositivo %1. - + Could not open partition table. Impossibile aprire la tabella delle partizioni. @@ -977,37 +977,37 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno FillGlobalStorageJob - + Set partition information Impostare informazioni partizione - + Install %1 on <strong>new</strong> %2 system partition. Installare %1 sulla <strong>nuova</strong> partizione di sistema %2. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Impostare la <strong>nuova</strong> %2 partizione con punto di mount <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Installare %2 sulla partizione di sistema %3 <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Impostare la partizione %3 <strong>%1</strong> con punto di montaggio <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Installare il boot loader su <strong>%1</strong>. - + Setting up mount points. Impostazione dei punti di mount. @@ -1038,17 +1038,17 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno FinishedViewStep - + Finish Termina - + Installation Complete - + The installation of %1 is complete. @@ -1129,12 +1129,12 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno KeyboardPage - + Set keyboard model to %1.<br/> Impostare il modello di tastiera a %1.<br/> - + Set keyboard layout to %1/%2. Impostare il layout della tastiera a %1%2. @@ -1296,7 +1296,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno Caricamento dei dati di posizione... - + Location Posizione @@ -1339,13 +1339,13 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno Le dimensioni dei settori logici dell'origine e della destinazione non uguali per la copia. Attualmente ciò non è supportato. - + Source and target for copying do not overlap: Rollback is not required. Origine e destinazione per la copia non coincidono: non è necessario annullare i cambiamenti. - - + + Could not open device %1 to rollback copying. Impossibile aprire il dispositivo %1 per annullare la copia. @@ -1353,17 +1353,18 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno NetInstallPage - + Name Nome - + Description Descrizione - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) Installazione di rete. (Disabilitata: impossibile recuperare le liste dei pacchetti, controllare la connessione di rete) @@ -1467,42 +1468,42 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno PartitionLabelsView - + Root Root - + Home Home - + Boot Boot - + EFI system Sistema EFI - + Swap Swap - + New partition for %1 Nuova partizione per %1 - + New partition Nuova partizione - + %1 %2 %1 %2 @@ -1702,22 +1703,22 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno Default - + unknown sconosciuto - + extended estesa - + unformatted non formattata - + swap swap @@ -1805,57 +1806,57 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno RequirementsChecker - + Gathering system information... Raccolta delle informazioni di sistema... - + has at least %1 GB available drive space ha almeno %1 GB di spazio disponibile - + There is not enough drive space. At least %1 GB is required. Non c'è spazio sufficiente sul dispositivo. E' richiesto almeno %1 GB. - + has at least %1 GB working memory ha almeno %1 GB di memoria - + The system does not have enough working memory. At least %1 GB is required. Il sistema non dispone di sufficiente memoria. E' richiesto almeno %1 GB. - + is plugged in to a power source è collegato a una presa di alimentazione - + The system is not plugged in to a power source. Il sistema non è collegato a una presa di alimentazione. - + is connected to the Internet è connesso a Internet - + The system is not connected to the Internet. Il sistema non è connesso a internet. - + The installer is not running with administrator rights. Il programma di installazione non è stato avviato con i diritti di amministrazione. - + The screen is too small to display the installer. Schermo troppo piccolo per mostrare il programma d'installazione. @@ -1910,12 +1911,12 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno ScanningDialog - + Scanning storage devices... Rilevamento dei dispositivi di memoria... - + Partitioning Partizionamento @@ -2094,42 +2095,42 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno SetPasswordJob - + Set password for user %1 Impostare la password per l'utente %1 - + Setting password for user %1. Impostare la password per l'utente %1. - + Bad destination system path. Percorso di destinazione del sistema errato. - + rootMountPoint is %1 punto di mount per root è %1 - + Cannot disable root account. Impossibile disabilitare l'account di root. - + passwd terminated with error code %1. passwd è terminato con codice di errore %1. - + Cannot set password for user %1. Impossibile impostare la password per l'utente %1. - + usermod terminated with error code %1. usermod si è chiuso con codice di errore %1. @@ -2175,7 +2176,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno SummaryPage - + This is an overview of what will happen once you start the install procedure. Una panoramica delle modifiche che saranno effettuate una volta avviata la procedura di installazione. @@ -2191,41 +2192,51 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Utenti diff --git a/lang/calamares_ja.ts b/lang/calamares_ja.ts index 320cfa3b0..9e7f577a2 100644 --- a/lang/calamares_ja.ts +++ b/lang/calamares_ja.ts @@ -232,13 +232,13 @@ Output: - + &Cancel 中止(&C) - + Cancel installation without changing the system. システムを変更しないでインストールを中止します。 @@ -265,47 +265,47 @@ The installer will quit and all changes will be lost. いいえ(&N) - + &Close 閉じる(&C) - + Continue with setup? セットアップを続行しますか? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> %1 インストーラーは %2 をインストールするためにディスクの内容を変更しようとします。<br/><strong>これらの変更は取り消しできなくなります。</strong> - + &Install now 今すぐインストール(&I) - + Go &back 戻る(&B) - + &Done 実行(&D) - + The installation is complete. Close the installer. インストールが完了しました。インストーラーを閉じます。 - + Error エラー - + Installation Failed インストールに失敗 @@ -405,12 +405,12 @@ The installer will quit and all changes will be lost. <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 のために作成されます。 @@ -421,83 +421,83 @@ 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/>ストレージデバイスに対する変更が実施される前に、変更点をレビューし、確認することができます。 - - - - + + + + <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 />ストレージデバイスに対する変更が実施される前に、変更点をレビューし、確認することができます。 @@ -619,42 +619,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. ファイルシステム %1 で %4 (%3) 上に新しく%2 MBのパーティションを作成 - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. ファイルシステム %1で <strong>%4</strong> (%3) 上に新しく<strong>%2MB</strong>のパーティションを作成 - + Creating new %1 partition on %2. %2 上に新しく %1 パーティションを作成中 - + The installer failed to create partition on disk '%1'. インストーラーはディスク '%1' にパーティションを作成することに失敗しました。 - + Could not open device '%1'. デバイス '%1' を開けませんでした。 - + Could not open partition table. パーティションテーブルを開くことができませんでした。 - + The installer failed to create file system on partition %1. インストーラーは %1 パーティション上でのファイルシステムの作成に失敗しました。 - + The installer failed to update partition table on disk '%1'. インストーラーはディスク '%1' 上にあるパーティションテーブルの更新に失敗しました。 @@ -690,27 +690,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. %2 上に新しく %1 パーティションテーブルを作成 - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). <strong>%2</strong> (%3) 上に新しく <strong>%1</strong> パーティションテーブルを作成 - + Creating new %1 partition table on %2. %2 上に新しく %1 パーティションテーブルを作成中 - + The installer failed to create a partition table on %1. インストーラーは%1 上でのパーティションテーブルの作成に失敗しました。 - + Could not open device %1. デバイス %1 を開けませんでした。 @@ -753,32 +753,32 @@ The installer will quit and all changes will be lost. groups ファイルを読み込めません。 - + Cannot create user %1. ユーザー %1 を作成できません。 - + useradd terminated with error code %1. エラーコード %1 によりuseraddを中止しました。 - + Cannot add user %1 to groups: %2. ユーザー %1 をグループに追加することができません。: %2 - + usermod terminated with error code %1. エラーコード %1 によりusermodが停止しました。 - + Cannot set home directory ownership for user %1. ユーザー %1 のホームディレクトリの所有者を設定できません。 - + chown terminated with error code %1. エラーコード %1 によりchown は中止しました。 @@ -786,37 +786,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. パーティション %1 の削除 - + Delete partition <strong>%1</strong>. パーティション <strong>%1</strong> の削除 - + Deleting partition %1. パーティション %1 の削除中。 - + The installer failed to delete partition %1. インストーラーはパーティション %1 の削除に失敗しました。 - + Partition (%1) and device (%2) do not match. パーティション (%1) とデバイス (%2) が適合しません。 - + Could not open device %1. デバイス %1 を開けませんでした。 - + Could not open partition table. パーティションテーブルを開くことができませんでした。 @@ -977,37 +977,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information パーティション情報の設定 - + Install %1 on <strong>new</strong> %2 system partition. <strong>新しい</strong> %2 システムパーティションに %1 をインストール。 - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. マウントポイント <strong>%1</strong> に <strong>新しい</strong> %2 パーティションをセットアップ。 - + Install %2 on %3 system partition <strong>%1</strong>. %3 システムパーティション <strong>%1</strong> に%2 をインストール。 - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. パーティション <strong>%1</strong> マウントポイント <strong>%2</strong> に %3 をセットアップ。 - + Install boot loader on <strong>%1</strong>. <strong>%1</strong> にブートローダーをインストール - + Setting up mount points. マウントポイントの設定。 @@ -1038,18 +1038,18 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish 終了 - + Installation Complete インストールが完了 - + The installation of %1 is complete. %1 のインストールは完了です。 @@ -1130,12 +1130,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> キーボードのモデルを %1 に設定。<br/> - + Set keyboard layout to %1/%2. キーボードのレイアウトを %1/%2 に設定。 @@ -1297,7 +1297,7 @@ The installer will quit and all changes will be lost. ロケーションデータをロード中... - + Location ロケーション @@ -1340,13 +1340,13 @@ The installer will quit and all changes will be lost. ソースとターゲットの論理セクタサイズが異なります。これは現在サポートされていません。 - + Source and target for copying do not overlap: Rollback is not required. コピーのためのソースとターゲットは領域が重なりません。ロールバックを行う必要はありません。 - - + + Could not open device %1 to rollback copying. ロールバック用のデバイス %1 を開く事ができませんでした。 @@ -1354,17 +1354,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name 名前 - + Description 説明 - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) ネットワークインストール。(無効: パッケージリストを取得できません。ネットワーク接続を確認してください。) @@ -1468,42 +1469,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root Root - + Home Home - + Boot Boot - + EFI system EFI システム - + Swap スワップ - + New partition for %1 新しいパーティション %1 - + New partition 新しいパーティション - + %1 %2 %1 %2 @@ -1703,22 +1704,22 @@ The installer will quit and all changes will be lost. デフォルト - + unknown 不明 - + extended 拡張 - + unformatted 未フォーマット - + swap スワップ @@ -1806,57 +1807,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... システム情報を取得中... - + has at least %1 GB available drive space 最低 %1 GBのディスク空き領域があること - + There is not enough drive space. At least %1 GB is required. 十分なドライブ容量がありません。少なくとも %1 GB 必要です。 - + has at least %1 GB working memory 最低 %1 GB のワーキングメモリーがあること - + The system does not have enough working memory. At least %1 GB is required. システムには十分なワーキングメモリがありません。少なくとも %1 GB 必要です。 - + is plugged in to a power source 電源が接続されていること - + The system is not plugged in to a power source. システムに電源が接続されていません。 - + is connected to the Internet インターネットに接続されていること - + The system is not connected to the Internet. システムはインターネットに接続されていません。 - + The installer is not running with administrator rights. インストーラーは管理者権限で実行されていません。 - + The screen is too small to display the installer. インストーラーを表示するためには、画面が小さすぎます。 @@ -1911,12 +1912,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... ストレージデバイスのスキャン中... - + Partitioning パーティショニング中 @@ -2095,42 +2096,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 ユーザ %1 のパスワード設定 - + Setting password for user %1. ユーザ %1 のパスワード設定中。 - + Bad destination system path. 不正なシステムパス。 - + rootMountPoint is %1 root のマウントポイントは %1 。 - + Cannot disable root account. rootアカウントを使用することができません。 - + passwd terminated with error code %1. passwd がエラーコード %1 のため終了しました。 - + Cannot set password for user %1. ユーザ %1 のパスワードは設定できませんでした。 - + usermod terminated with error code %1. エラーコード %1 によりusermodが停止しました。 @@ -2176,7 +2177,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. これはインストールを開始した時に起こることの概要です。 @@ -2192,41 +2193,51 @@ The installer will quit and all changes will be lost. 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! パスワードが一致していません! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users ユーザー情報 diff --git a/lang/calamares_kk.ts b/lang/calamares_kk.ts index f8ffbe402..000e36f0f 100644 --- a/lang/calamares_kk.ts +++ b/lang/calamares_kk.ts @@ -226,13 +226,13 @@ Output: - + &Cancel Ба&с тарту - + Cancel installation without changing the system. @@ -258,47 +258,47 @@ The installer will quit and all changes will be lost. - + &Close - + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error - + Installation Failed @@ -398,12 +398,12 @@ The installer will quit and all changes will be lost. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -414,83 +414,83 @@ 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. - - - - + + + + <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. @@ -612,42 +612,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. - + Could not open device '%1'. - + Could not open partition table. - + The installer failed to create file system on partition %1. - + The installer failed to update partition table on disk '%1'. @@ -683,27 +683,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. - + Could not open device %1. @@ -746,32 +746,32 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -779,37 +779,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. - + Delete partition <strong>%1</strong>. - + Deleting partition %1. - + The installer failed to delete partition %1. - + Partition (%1) and device (%2) do not match. - + Could not open device %1. - + Could not open partition table. @@ -970,37 +970,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information - + Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. - + Setting up mount points. @@ -1031,17 +1031,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish - + Installation Complete - + The installation of %1 is complete. @@ -1122,12 +1122,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> - + Set keyboard layout to %1/%2. @@ -1289,7 +1289,7 @@ The installer will quit and all changes will be lost. - + Location @@ -1332,13 +1332,13 @@ The installer will quit and all changes will be lost. - + Source and target for copying do not overlap: Rollback is not required. - - + + Could not open device %1 to rollback copying. @@ -1346,17 +1346,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1460,42 +1461,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1695,22 +1696,22 @@ The installer will quit and all changes will be lost. - + unknown - + extended - + unformatted - + swap @@ -1798,57 +1799,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. - + is connected to the Internet - + The system is not connected to the Internet. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1903,12 +1904,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -2087,42 +2088,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 - + Setting password for user %1. - + Bad destination system path. - + rootMountPoint is %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. - + usermod terminated with error code %1. @@ -2168,7 +2169,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. @@ -2184,41 +2185,51 @@ The installer will quit and all changes will be lost. 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Пайдаланушылар diff --git a/lang/calamares_lo.ts b/lang/calamares_lo.ts index a69a9ee43..738fd2ba2 100644 --- a/lang/calamares_lo.ts +++ b/lang/calamares_lo.ts @@ -226,13 +226,13 @@ Output: - + &Cancel - + Cancel installation without changing the system. @@ -258,47 +258,47 @@ The installer will quit and all changes will be lost. - + &Close - + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error - + Installation Failed @@ -398,12 +398,12 @@ The installer will quit and all changes will be lost. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -414,83 +414,83 @@ 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. - - - - + + + + <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. @@ -612,42 +612,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. - + Could not open device '%1'. - + Could not open partition table. - + The installer failed to create file system on partition %1. - + The installer failed to update partition table on disk '%1'. @@ -683,27 +683,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. - + Could not open device %1. @@ -746,32 +746,32 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -779,37 +779,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. - + Delete partition <strong>%1</strong>. - + Deleting partition %1. - + The installer failed to delete partition %1. - + Partition (%1) and device (%2) do not match. - + Could not open device %1. - + Could not open partition table. @@ -970,37 +970,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information - + Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. - + Setting up mount points. @@ -1031,17 +1031,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish - + Installation Complete - + The installation of %1 is complete. @@ -1122,12 +1122,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> - + Set keyboard layout to %1/%2. @@ -1289,7 +1289,7 @@ The installer will quit and all changes will be lost. - + Location @@ -1332,13 +1332,13 @@ The installer will quit and all changes will be lost. - + Source and target for copying do not overlap: Rollback is not required. - - + + Could not open device %1 to rollback copying. @@ -1346,17 +1346,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1460,42 +1461,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1695,22 +1696,22 @@ The installer will quit and all changes will be lost. - + unknown - + extended - + unformatted - + swap @@ -1798,57 +1799,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. - + is connected to the Internet - + The system is not connected to the Internet. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1903,12 +1904,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -2087,42 +2088,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 - + Setting password for user %1. - + Bad destination system path. - + rootMountPoint is %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. - + usermod terminated with error code %1. @@ -2168,7 +2169,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. @@ -2184,41 +2185,51 @@ The installer will quit and all changes will be lost. 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users diff --git a/lang/calamares_lt.ts b/lang/calamares_lt.ts index 47f0f9263..a8843f071 100644 --- a/lang/calamares_lt.ts +++ b/lang/calamares_lt.ts @@ -232,15 +232,15 @@ Išvestis: - + &Cancel A&tšaukti - + Cancel installation without changing the system. - Atsisakyti diegimo, nieko nekeisti sistemoje. + Atsisakyti diegimo, nieko sistemoje nekeičiant. @@ -265,47 +265,47 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. &Ne - + &Close &Užverti - + Continue with setup? Tęsti sąranką? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - %1 diegimo programa, siekdama įdiegti %2, ketina atlikti pakeitimus diske.<br/><strong>Negalėsite atšaukti šių pakeitimų.</strong> + %1 diegimo programa, siekdama įdiegti %2, ketina atlikti pakeitimus diske.<br/><strong>Šių pakeitimų atšaukti nebegalėsite.</strong> - + &Install now Į&diegti dabar - + Go &back &Grįžti - + &Done A&tlikta - + The installation is complete. Close the installer. Diegimas užbaigtas. Užverkite diegimo programą. - + Error Klaida - + Installation Failed Diegimas nepavyko @@ -369,12 +369,12 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - Šis kompiuteris netenkina kai kurių %1 diegimui rekomenduojamų reikalavimų.<br/>Diegti galite, bet kai kurios funkcijos gali būti išjungtos. + Šis kompiuteris netenkina kai kurių %1 diegimui rekomenduojamų reikalavimų.<br/>Diegimą galima tęsti, tačiau kai kurios funkcijos gali būti išjungtos. This program will ask you some questions and set up %2 on your computer. - Programa užduos klausimus ir padės įsidiegti %2. + Programa užduos kelis klausimus ir padės įsidiegti %2. @@ -405,12 +405,12 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. <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. @@ -421,83 +421,83 @@ 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. - - - - + + + + <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. @@ -619,42 +619,42 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Sukurti naują %2MB skaidinį diske %4 (%3) su %1 failų sistema. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Sukurti naują <strong>%2MB</strong> skaidinį diske <strong>%4</strong> (%3) su <strong>%1</strong> failų sistema. - + Creating new %1 partition on %2. Kuriamas naujas %1 skaidinys ties %2. - + The installer failed to create partition on disk '%1'. Diegimo programai nepavyko sukurti skaidinio diske '%1'. - + Could not open device '%1'. Nepavyko atidaryti įrenginio '%1'. - + Could not open partition table. Nepavyko atidaryti skaidinių lentelės. - + The installer failed to create file system on partition %1. Diegimo programai nepavyko sukurti failų sistemos skaidinyje %1. - + The installer failed to update partition table on disk '%1'. Diegimo programai napavyko atnaujinti skaidinių lentelės diske '%1'. @@ -690,27 +690,27 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. CreatePartitionTableJob - + Create new %1 partition table on %2. Sukurti naują %1 skaidinių lentelę ties %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Sukurti naują <strong>%1</strong> skaidinių lentelę diske <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Kuriama nauja %1 skaidinių lentelė ties %2. - + The installer failed to create a partition table on %1. Diegimo programai nepavyko %1 sukurti skaidinių lentelės. - + Could not open device %1. Nepavyko atidaryti įrenginio %1. @@ -753,32 +753,32 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. Nepavyko skaitymui atverti grupių failo. - + Cannot create user %1. Nepavyko sukurti naudotojo %1. - + useradd terminated with error code %1. komanda useradd nutraukė darbą dėl klaidos kodo %1. - + Cannot add user %1 to groups: %2. Nepavyksta pridėti naudotojo %1 į grupes: %2. - + usermod terminated with error code %1. usermod nutraukta su klaidos kodu %1. - + Cannot set home directory ownership for user %1. Nepavyko nustatyti home katalogo nuosavybės naudotojui %1. - + chown terminated with error code %1. komanda chown nutraukė darbą dėl klaidos kodo %1. @@ -786,37 +786,37 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. DeletePartitionJob - + Delete partition %1. Ištrinti skaidinį %1. - + Delete partition <strong>%1</strong>. Ištrinti skaidinį <strong>%1</strong>. - + Deleting partition %1. Ištrinamas skaidinys %1. - + The installer failed to delete partition %1. Diegimo programai nepavyko ištrinti skaidinio %1. - + Partition (%1) and device (%2) do not match. Skaidinys (%1) ir įrenginys (%2) nesutampa. - + Could not open device %1. Nepavyko atidaryti įrenginio %1. - + Could not open partition table. Nepavyko atidaryti skaidinių lentelės. @@ -908,12 +908,12 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. Format - Suženklinti + Formatuoti Warning: Formatting the partition will erase all existing data. - Įspėjimas: suženklinant skaidinį, sunaikinami visi jame esantys duomenys. + Įspėjimas: Formatuojant skaidinį, sunaikinami visi jame esantys duomenys. @@ -977,37 +977,37 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. FillGlobalStorageJob - + Set partition information Nustatyti skaidinio informaciją - + Install %1 on <strong>new</strong> %2 system partition. Įdiegti %1 <strong>naujame</strong> %2 sistemos skaidinyje. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Nustatyti <strong>naują</strong> %2 skaidinį su prijungimo tašku <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Diegti %2 sistemą, %3 sistemos skaidinyje <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Nustatyti %3 skaidinį <strong>%1</strong> su prijungimo tašku <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Diegti paleidyklę skaidinyje <strong>%1</strong>. - + Setting up mount points. Nustatomi prijungimo taškai. @@ -1038,17 +1038,17 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. FinishedViewStep - + Finish Pabaiga - + Installation Complete Diegimas užbaigtas - + The installation of %1 is complete. %1 diegimas yra užbaigtas. @@ -1058,22 +1058,22 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. Format partition %1 (file system: %2, size: %3 MB) on %4. - Suženklinti skaidinį %1 (failų sistema: %2, dydis: %3 MB) diske %4. + Formatuoti skaidinį %1 (failų sistema: %2, dydis: %3 MB) diske %4. Format <strong>%3MB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - Suženklinti <strong>%3MB</strong> skaidinį <strong>%1</strong> su failų sistema <strong>%2</strong>. + Formatuoti <strong>%3MB</strong> skaidinį <strong>%1</strong> su failų sistema <strong>%2</strong>. Formatting partition %1 with file system %2. - Suženklinamas skaidinys %1 su %2 failų sistema. + Formatuojamas skaidinys %1 su %2 failų sistema. The installer failed to format partition %1 on disk '%2'. - Diegimo programai nepavyko suženklinti „%2“ disko skaidinio %1. + Diegimo programai nepavyko formatuoti „%2“ disko skaidinio %1. @@ -1129,12 +1129,12 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. KeyboardPage - + Set keyboard model to %1.<br/> Nustatyti klaviatūros modelį kaip %1.<br/> - + Set keyboard layout to %1/%2. Nustatyti klaviatūros išdėstymą kaip %1/%2. @@ -1237,7 +1237,7 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. <a href="%1">view license agreement</a> - <a href="%1">žiūrėti licenciją</a> + <a href="%1">žiūrėti licencijos sutartį</a> @@ -1296,7 +1296,7 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. Įkeliami vietos duomenys... - + Location Vieta @@ -1339,13 +1339,13 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. Loginio sektoriaus dydžiai pradinėje ir kopijavimo paskirties vietoje yra nevienodi. Šiuo metu tai yra nepalaikoma. - + Source and target for copying do not overlap: Rollback is not required. Kopijavimo pradinė ir paskirties vietos nepersikloja. Ankstesnės būsenos atstatymas nereikalingas. - - + + Could not open device %1 to rollback copying. Nepavyko atidaryti įrenginio %1, ankstesnės būsenos kopijavimui. @@ -1353,17 +1353,18 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. NetInstallPage - + Name Pavadinimas - + Description Aprašas - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) Tinklo diegimas. (Išjungta: Nepavyksta gauti paketų sąrašus, patikrinkite savo tinklo ryšį) @@ -1467,42 +1468,42 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. PartitionLabelsView - + Root Šaknies - + Home Namų - + Boot Paleidimo - + EFI system EFI sistema - + Swap Sukeitimų (swap) - + New partition for %1 Naujas skaidinys, skirtas %1 - + New partition Naujas skaidinys - + %1 %2 %1 %2 @@ -1577,7 +1578,7 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. &Delete - Ša&linti + Iš&trinti @@ -1702,22 +1703,22 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. Numatytasis - + unknown nežinoma - + extended išplėsta - + unformatted nesutvarkyta - + swap sukeitimų (swap) @@ -1805,57 +1806,57 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. RequirementsChecker - + Gathering system information... Renkama sistemos informacija... - + has at least %1 GB available drive space turi bent %1 GB laisvos vietos diske - + There is not enough drive space. At least %1 GB is required. Neužtenka vietos diske. Reikia bent %1 GB. - + has at least %1 GB working memory turi bent %1 GB darbinės atminties - + The system does not have enough working memory. At least %1 GB is required. Sistemai neužtenka darbinės atminties. Reikia bent %1 GB. - + is plugged in to a power source prijungta prie maitinimo šaltinio - + The system is not plugged in to a power source. Sistema nėra prijungta prie maitinimo šaltinio. - + is connected to the Internet prijungta prie Interneto - + The system is not connected to the Internet. Sistema nėra prijungta prie Interneto. - + The installer is not running with administrator rights. Diegimo programa yra vykdoma be administratoriaus teisių. - + The screen is too small to display the installer. Ekranas yra per mažas, kad būtų parodyta diegimo programa. @@ -1910,12 +1911,12 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. ScanningDialog - + Scanning storage devices... Peržiūrimi atminties įrenginiai... - + Partitioning Skaidymas @@ -2094,42 +2095,42 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. SetPasswordJob - + Set password for user %1 Nustatyti naudotojo %1 slaptažodį - + Setting password for user %1. Nustatomas slaptažodis naudotojui %1. - + Bad destination system path. Neteisingas paskirties sistemos kelias. - + rootMountPoint is %1 šaknies prijungimo vieta yra %1 - + Cannot disable root account. Nepavyksta išjungti administratoriaus (root) paskyros. - + passwd terminated with error code %1. komanda passwd nutraukė darbą dėl klaidos kodo %1. - + Cannot set password for user %1. Nepavyko nustatyti slaptažodžio naudotojui %1. - + usermod terminated with error code %1. komanda usermod nutraukė darbą dėl klaidos kodo %1. @@ -2175,7 +2176,7 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. SummaryPage - + This is an overview of what will happen once you start the install procedure. Tai yra apžvalga to, kas įvyks, prasidėjus diegimo procedūrai. @@ -2191,41 +2192,51 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. 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! + + + Password is too short + Slaptažodis yra per trumpas + + + + Password is too long + Slaptažodis yra per ilgas + UsersViewStep - + Users Naudotojai diff --git a/lang/calamares_mr.ts b/lang/calamares_mr.ts index 0fdff01e4..1bcaa1568 100644 --- a/lang/calamares_mr.ts +++ b/lang/calamares_mr.ts @@ -22,27 +22,27 @@ Master Boot Record of %1 - + %1 च्या मुख्य आरंभ अभिलेखामधे Boot Partition - + आरंभक विभाजन System Partition - + प्रणाली विभाजन Do not install a boot loader - + आरंभ सूचक अधिष्ठापित करु नका %1 (%2) - + %1 (%2) @@ -50,7 +50,7 @@ Form - + स्वरुप @@ -65,33 +65,33 @@ Modules - + मोडयुल्स Type: - + प्रकार : none - + कोणतेही नाहीत Interface: - + अंतराफलक : Tools - + साधने Debug information - + दोषमार्जन माहिती @@ -99,7 +99,7 @@ Install - + अधिष्ठापना @@ -107,7 +107,7 @@ Done - + पूर्ण झाली @@ -115,12 +115,12 @@ Run command %1 %2 - + %1 %2 आज्ञा चालवा Running command %1 %2 - + %1 %2 आज्ञा चालवला जातोय @@ -137,17 +137,17 @@ Output: External command failed to start - + बाह्य आज्ञा सुरु करण्यात अपयश Command %1 failed to start. - + %1 आज्ञा सुरु करण्यात अपयश Internal error when starting command - + आज्ञा सुरु करताना अंतर्गत त्रुटी @@ -157,26 +157,30 @@ Output: External command failed to finish - + बाह्य आज्ञा पूर्ण करताना अपयश Command %1 failed to finish in %2s. Output: %3 - + %1 ही आज्ञा %2s मधे पूर्ण करताना अपयश. +आउटपुट : +%3 External command finished with errors - + बाह्य आज्ञा त्रुट्यांसहित पूर्ण झाली Command %1 finished with exit code %2. Output: %3 - + %1 ही आज्ञा %2 या निर्गम कोडसहित पूर्ण झाली. +आउटपुट : +%3 @@ -184,7 +188,7 @@ Output: Running %1 operation. - + %1 क्रिया चालवला जातोय @@ -217,29 +221,29 @@ Output: &Back - + &मागे &Next - + &पुढे - + &Cancel - + &रद्द करा - + Cancel installation without changing the system. - + प्रणालीत बदल न करता अधिष्टापना रद्द करा. Cancel installation? - + अधिष्ठापना रद्द करायचे? @@ -250,57 +254,57 @@ The installer will quit and all changes will be lost. &Yes - + &होय &No - + &नाही - + &Close - + &बंद करा - + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + &आता अधिष्ठापित करा - + Go &back - + &मागे जा - + &Done - + &पूर्ण झाली - + The installation is complete. Close the installer. - + अधिष्ठापना संपूर्ण झाली. अधिष्ठापक बंद करा. - + Error - + त्रुटी - + Installation Failed - + अधिष्ठापना अयशस्वी झाली @@ -331,12 +335,12 @@ The installer will quit and all changes will be lost. %1 Installer - + %1 अधिष्ठापक Show debug information - + दोषमार्जन माहिती दर्शवा @@ -344,12 +348,12 @@ The installer will quit and all changes will be lost. Checking file system on partition %1. - + %1 या विभाजनावरील फाइल प्रणाली तपासत आहे. The file system check on partition %1 failed. - + %1 या विभाजनावरील प्रणाली विफल झाली. @@ -377,7 +381,7 @@ The installer will quit and all changes will be lost. System requirements - + प्रणालीची आवशक्यता @@ -385,12 +389,12 @@ The installer will quit and all changes will be lost. Form - + स्वरुप After: - + नंतर : @@ -398,12 +402,12 @@ The installer will quit and all changes will be lost. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -414,83 +418,83 @@ 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. - - - - + + + + <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. @@ -541,7 +545,7 @@ The installer will quit and all changes will be lost. Create a Partition - + विभाजन निर्माण करा @@ -551,12 +555,12 @@ The installer will quit and all changes will be lost. Partition &Type: - + विभाजन &प्रकार : &Primary - + &प्राथमिक @@ -591,12 +595,12 @@ The installer will quit and all changes will be lost. Logical - + तार्किक Primary - + प्राथमिक @@ -612,42 +616,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + %2 वर %1 हे नवीन विभाजन निर्माण करत आहे - + The installer failed to create partition on disk '%1'. - + Could not open device '%1'. - + Could not open partition table. - + The installer failed to create file system on partition %1. - + The installer failed to update partition table on disk '%1'. @@ -657,7 +661,7 @@ The installer will quit and all changes will be lost. Create Partition Table - + विभाजन कोष्टक निर्माण करा @@ -683,27 +687,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. - + Could not open device %1. @@ -746,32 +750,32 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -779,37 +783,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. - + Delete partition <strong>%1</strong>. - + Deleting partition %1. - + The installer failed to delete partition %1. - + Partition (%1) and device (%2) do not match. - + Could not open device %1. - + Could not open partition table. @@ -970,37 +974,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information - + Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. - + Setting up mount points. @@ -1031,17 +1035,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish - + Installation Complete - + The installation of %1 is complete. @@ -1122,12 +1126,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> - + Set keyboard layout to %1/%2. @@ -1289,7 +1293,7 @@ The installer will quit and all changes will be lost. - + Location @@ -1332,13 +1336,13 @@ The installer will quit and all changes will be lost. - + Source and target for copying do not overlap: Rollback is not required. - - + + Could not open device %1 to rollback copying. @@ -1346,17 +1350,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1460,42 +1465,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1695,22 +1700,22 @@ The installer will quit and all changes will be lost. - + unknown - + extended - + unformatted - + swap @@ -1798,57 +1803,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. - + is connected to the Internet - + The system is not connected to the Internet. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1903,12 +1908,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -1934,7 +1939,7 @@ The installer will quit and all changes will be lost. Internal Error - + अंतर्गत त्रूटी  @@ -2087,42 +2092,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 - + Setting password for user %1. - + Bad destination system path. - + rootMountPoint is %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. - + usermod terminated with error code %1. @@ -2132,7 +2137,7 @@ The installer will quit and all changes will be lost. Set timezone to %1/%2 - + %1/%2 हा वेळक्षेत्र निश्चित करा @@ -2147,7 +2152,7 @@ The installer will quit and all changes will be lost. Cannot set timezone. - + वेळक्षेत्र निश्चित करु शकत नाही @@ -2157,18 +2162,18 @@ The installer will quit and all changes will be lost. Cannot set timezone, - + वेळक्षेत्र निश्चित करु शकत नाही, Cannot open /etc/timezone for writing - + /etc/timezone लिहिण्याकरिता उघडू शकत नाही SummaryPage - + This is an overview of what will happen once you start the install procedure. @@ -2178,49 +2183,59 @@ The installer will quit and all changes will be lost. Summary - + सारांश 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! - + तुमचा परवलीशब्द जुळत नाही + + + + Password is too short + परवलीशब्द खूप लहान आहे + + + + Password is too long + परवलीशब्द खूप लांब आहे UsersViewStep - + Users - + वापरकर्ते @@ -2228,47 +2243,47 @@ The installer will quit and all changes will be lost. Form - + स्वरुप &Language: - + &भाषा : &Release notes - + &प्रकाशन टिपा &Known issues - + &ज्ञात त्रुटी &Support - + %1 पाठबळ &About - + &विषयी <h1>Welcome to the %1 installer.</h1> - + <h1>‌%1 अधिष्ठापकमधे स्वागत आहे.</h1> <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>‌%1 साठी असलेल्या अधिष्ठापकमध्ये स्वागत आहे.</h1> About %1 installer - + %1 अधिष्ठापक बद्दल @@ -2278,7 +2293,7 @@ The installer will quit and all changes will be lost. %1 support - + %1 पाठबळ @@ -2286,7 +2301,7 @@ The installer will quit and all changes will be lost. Welcome - + स्वागत \ No newline at end of file diff --git a/lang/calamares_nb.ts b/lang/calamares_nb.ts index 653e83df8..815da987b 100644 --- a/lang/calamares_nb.ts +++ b/lang/calamares_nb.ts @@ -37,7 +37,7 @@ Do not install a boot loader - + Ikke installer en oppstartslaster @@ -81,12 +81,12 @@ Interface: - + Grensesnitt: Tools - + Verktøy @@ -99,7 +99,7 @@ Install - + Installer @@ -232,13 +232,13 @@ Output: - + &Cancel &Avbryt - + Cancel installation without changing the system. @@ -265,47 +265,47 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. - + &Close - + Continue with setup? Fortsette å sette opp? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> %1 vil nå gjøre endringer på harddisken, for å installere %2. <br/><strong>Du vil ikke kunne omgjøre disse endringene.</strong> - + &Install now &Installer nå - + Go &back Gå &tilbake - + &Done - + The installation is complete. Close the installer. - + Error Feil - + Installation Failed Installasjon feilet @@ -405,12 +405,12 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -421,83 +421,83 @@ 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. - - - - + + + + <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. @@ -619,42 +619,42 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. - + Could not open device '%1'. Klarte ikke å åpne enheten '%1'. - + Could not open partition table. Klarte ikke å åpne partisjonstabellen. - + The installer failed to create file system on partition %1. Lyktes ikke med å opprette filsystem på partisjon %1 - + The installer failed to update partition table on disk '%1'. @@ -690,27 +690,27 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. CreatePartitionTableJob - + Create new %1 partition table on %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. - + Could not open device %1. @@ -753,32 +753,32 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. - + Cannot create user %1. Klarte ikke å opprette bruker %1 - + useradd terminated with error code %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -786,37 +786,37 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. DeletePartitionJob - + Delete partition %1. - + Delete partition <strong>%1</strong>. - + Deleting partition %1. - + The installer failed to delete partition %1. - + Partition (%1) and device (%2) do not match. - + Could not open device %1. - + Could not open partition table. @@ -977,37 +977,37 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. FillGlobalStorageJob - + Set partition information - + Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. - + Setting up mount points. @@ -1038,17 +1038,17 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. FinishedViewStep - + Finish - + Installation Complete - + The installation of %1 is complete. @@ -1129,12 +1129,12 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. KeyboardPage - + Set keyboard model to %1.<br/> - + Set keyboard layout to %1/%2. @@ -1296,7 +1296,7 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. - + Location @@ -1339,13 +1339,13 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. - + Source and target for copying do not overlap: Rollback is not required. - - + + Could not open device %1 to rollback copying. @@ -1353,17 +1353,18 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1467,42 +1468,42 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1702,22 +1703,22 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. - + unknown - + extended - + unformatted - + swap @@ -1805,57 +1806,57 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. RequirementsChecker - + Gathering system information... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. - + is connected to the Internet - + The system is not connected to the Internet. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1910,12 +1911,12 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -2094,42 +2095,42 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. SetPasswordJob - + Set password for user %1 - + Setting password for user %1. - + Bad destination system path. - + rootMountPoint is %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. - + usermod terminated with error code %1. @@ -2175,7 +2176,7 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. SummaryPage - + This is an overview of what will happen once you start the install procedure. @@ -2191,41 +2192,51 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users diff --git a/lang/calamares_nl.ts b/lang/calamares_nl.ts index 246f086e7..ad636e9a4 100644 --- a/lang/calamares_nl.ts +++ b/lang/calamares_nl.ts @@ -232,13 +232,13 @@ Uitvoer: - + &Cancel &Afbreken - + Cancel installation without changing the system. Installatie afbreken zonder aanpassingen aan het systeem. @@ -265,47 +265,47 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. &Nee - + &Close &Sluiten - + Continue with setup? Doorgaan met installatie? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> Het %1 installatieprogramma zal nu aanpassingen maken aan je schijf om %2 te installeren.<br/><strong>Deze veranderingen kunnen niet ongedaan gemaakt worden.</strong> - + &Install now Nu &installeren - + Go &back Ga &terug - + &Done Voltooi&d - + The installation is complete. Close the installer. De installatie is voltooid. Sluit het installatie-programma. - + Error Fout - + Installation Failed Installatie Mislukt @@ -405,12 +405,12 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. <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. @@ -421,83 +421,83 @@ 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. - - - - + + + + <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. @@ -619,42 +619,42 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Maak nieuwe %2MB partitie aan op %4 (%3) met bestandsysteem %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Maak een nieuwe <strong>%2MB</strong> partitie aan op <strong>%4</strong> (%3) met bestandsysteem <strong>%1</strong>. - + Creating new %1 partition on %2. Nieuwe %1 partitie aanmaken op %2. - + The installer failed to create partition on disk '%1'. Het installatieprogramma kon geen partitie aanmaken op schijf '%1'. - + Could not open device '%1'. Kan apparaat %1 niet openen. - + Could not open partition table. Kon partitietabel niet open - + The installer failed to create file system on partition %1. Het installatieprogramma kon geen bestandssysteem aanmaken op partitie %1. - + The installer failed to update partition table on disk '%1'. Het installatieprogramma kon de partitietabel op schijf '%1' niet bijwerken . @@ -690,27 +690,27 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. CreatePartitionTableJob - + Create new %1 partition table on %2. Maak een nieuwe %1 partitietabel aan op %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Maak een nieuwe <strong>%1</strong> partitietabel aan op <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Nieuwe %1 partitietabel aanmaken op %2. - + The installer failed to create a partition table on %1. Het installatieprogramma kon geen partitietabel aanmaken op %1. - + Could not open device %1. Kon apparaat %1 niet openen. @@ -753,32 +753,32 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Kan het bestand groups niet lezen. - + Cannot create user %1. Kan gebruiker %1 niet aanmaken. - + useradd terminated with error code %1. useradd is gestopt met foutcode %1. - + Cannot add user %1 to groups: %2. Kan gebruiker %1 niet toevoegen aan groepen: %2. - + usermod terminated with error code %1. usermod is gestopt met foutcode %1. - + Cannot set home directory ownership for user %1. Kan eigendomsrecht gebruikersmap niet instellen voor gebruiker %1. - + chown terminated with error code %1. chown is gestopt met foutcode %1. @@ -786,37 +786,37 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. DeletePartitionJob - + Delete partition %1. Verwijder partitie %1. - + Delete partition <strong>%1</strong>. Verwijder partitie <strong>%1</strong>. - + Deleting partition %1. Partitie %1 verwijderen. - + The installer failed to delete partition %1. Het installatieprogramma kon partitie %1 niet verwijderen. - + Partition (%1) and device (%2) do not match. Partitie (%1) en apparaat (%2) komen niet overeen. - + Could not open device %1. Kon apparaat %1 niet openen. - + Could not open partition table. Kon de partitietabel niet openen. @@ -977,37 +977,37 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. FillGlobalStorageJob - + Set partition information Instellen partitie-informatie - + Install %1 on <strong>new</strong> %2 system partition. Installeer %1 op <strong>nieuwe</strong> %2 systeempartitie. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Maak <strong>nieuwe</strong> %2 partitie met aankoppelpunt <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Installeer %2 op %3 systeempartitie <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Stel %3 partitie <strong>%1</strong> in met aankoppelpunt <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Installeer bootloader op <strong>%1</strong>. - + Setting up mount points. Aankoppelpunten instellen. @@ -1038,17 +1038,17 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. FinishedViewStep - + Finish Beëindigen - + Installation Complete Installatie Afgerond. - + The installation of %1 is complete. De installatie van %1 is afgerond. @@ -1129,12 +1129,12 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. KeyboardPage - + Set keyboard model to %1.<br/> Instellen toetsenbord model naar %1.<br/> - + Set keyboard layout to %1/%2. Instellen toetsenbord lay-out naar %1/%2. @@ -1296,7 +1296,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Laden van locatiegegevens... - + Location Locatie @@ -1339,13 +1339,13 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. De logische sector afmetingen in de bron en doel voor kopiëren zijn niet hetzelfde. Dit wordt momenteel niet ondersteund. - + Source and target for copying do not overlap: Rollback is not required. Bron en doel voor het kopiëren overlappen niet: Terugdraaien is niet vereist. - - + + Could not open device %1 to rollback copying. Kan apparaat %1 niet openen om het kopiëren terug te draaien. @@ -1353,17 +1353,18 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. NetInstallPage - + Name Naam - + Description Beschrijving - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) Netwerkinstallatie. (Uitgeschakeld: kon de pakketlijsten niet binnenhalen, controleer de netwerkconnectie) @@ -1467,42 +1468,42 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. PartitionLabelsView - + Root Root - + Home Home - + Boot Boot - + EFI system EFI systeem - + Swap Wisselgeheugen - + New partition for %1 Nieuwe partitie voor %1 - + New partition Nieuwe partitie - + %1 %2 %1 %2 @@ -1702,22 +1703,22 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Standaard - + unknown onbekend - + extended uitgebreid - + unformatted niet-geformateerd - + swap wisselgeheugen @@ -1805,57 +1806,57 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. RequirementsChecker - + Gathering system information... Systeeminformatie verzamelen... - + has at least %1 GB available drive space tenminste %1 GB vrije schijfruimte heeft - + There is not enough drive space. At least %1 GB is required. Er is onvoldoende vrije schijfruimte. Tenminste %1 GB is vereist. - + has at least %1 GB working memory tenminste %1 GB werkgeheugen heeft - + The system does not have enough working memory. At least %1 GB is required. Dit systeem heeft onvoldoende werkgeheugen. Tenminste %1 GB is vereist. - + is plugged in to a power source aangesloten is op netstroom - + The system is not plugged in to a power source. Dit systeem is niet aangesloten op netstroom. - + is connected to the Internet verbonden is met het Internet - + The system is not connected to the Internet. Dit systeem is niet verbonden met het Internet. - + The installer is not running with administrator rights. Het installatieprogramma draait zonder administratorrechten. - + The screen is too small to display the installer. Het schem is te klein on het installatieprogramma te vertonen. @@ -1910,12 +1911,12 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. ScanningDialog - + Scanning storage devices... Opslagmedia inlezen... - + Partitioning Partitionering @@ -2094,42 +2095,42 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. SetPasswordJob - + Set password for user %1 Instellen wachtwoord voor gebruiker %1 - + Setting password for user %1. Wachtwoord instellen voor gebruiker %1. - + Bad destination system path. Onjuiste bestemming systeempad. - + rootMountPoint is %1 rootMountPoint is %1 - + Cannot disable root account. Kan root account niet uitschakelen. - + passwd terminated with error code %1. passwd is afgesloten met foutcode %1. - + Cannot set password for user %1. Kan het wachtwoord niet instellen voor gebruiker %1 - + usermod terminated with error code %1. usermod beëindigd met foutcode %1. @@ -2175,7 +2176,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. SummaryPage - + This is an overview of what will happen once you start the install procedure. Dit is een overzicht van wat zal gebeuren wanneer je de installatieprocedure start. @@ -2191,41 +2192,51 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Gebruikers diff --git a/lang/calamares_pl.ts b/lang/calamares_pl.ts index 806c28a7a..7a7a3a603 100644 --- a/lang/calamares_pl.ts +++ b/lang/calamares_pl.ts @@ -232,13 +232,13 @@ Wyjście: - + &Cancel &Anuluj - + Cancel installation without changing the system. Anuluj instalację bez dokonywania zmian w systemie. @@ -265,47 +265,47 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.&Nie - + &Close Zam&knij - + Continue with setup? Kontynuować z programem instalacyjnym? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> Instalator %1 zamierza przeprowadzić zmiany na Twoim dysku, aby zainstalować %2.<br/><strong>Nie będziesz mógł cofnąć tych zmian.</strong> - + &Install now &Zainstaluj teraz - + Go &back &Cofnij się - + &Done &Ukończono - + The installation is complete. Close the installer. Instalacja ukończona pomyślnie. Możesz zamknąć instalator. - + Error Błąd - + Installation Failed Wystąpił błąd instalacji @@ -405,12 +405,12 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.<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. @@ -421,83 +421,83 @@ 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. - - - - + + + + <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. @@ -619,42 +619,42 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Utwórz nową partycję %2MB na %4 (%3) z systemem plików %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Utwórz nową partycję <strong>%2MB</strong> na <strong>%4</strong> (%3) z systemem plików <strong>%1</strong>. - + Creating new %1 partition on %2. Tworzenie nowej partycji %1 na %2. - + The installer failed to create partition on disk '%1'. Instalator nie mógł utworzyć partycji na dysku '%1'. - + Could not open device '%1'. Nie udało się otworzyć urządzenia '%1'. - + Could not open partition table. Nie udało się otworzyć tablicy partycji. - + The installer failed to create file system on partition %1. Instalator nie mógł utworzyć systemu plików na partycji %1. - + The installer failed to update partition table on disk '%1'. Instalator nie mógł zaktualizować tablicy partycji na dysku '%1'. @@ -690,27 +690,27 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. CreatePartitionTableJob - + Create new %1 partition table on %2. Utwórz nową tablicę partycję %1 na %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Utwórz nową tabelę partycji <strong>%1</strong> na <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Tworzenie nowej tablicy partycji %1 na %2. - + The installer failed to create a partition table on %1. Instalator nie mógł utworzyć tablicy partycji na %1. - + Could not open device %1. Nie udało się otworzyć urządzenia %1. @@ -753,32 +753,32 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Nie można otworzyć pliku groups do odczytu. - + Cannot create user %1. Nie można utworzyć użytkownika %1. - + useradd terminated with error code %1. Polecenie useradd zostało przerwane z kodem błędu %1. - + Cannot add user %1 to groups: %2. Nie można dodać użytkownika %1 do grup: %2 - + usermod terminated with error code %1. usermod zakończony z kodem błędu %1. - + Cannot set home directory ownership for user %1. Nie można ustawić właściciela katalogu domowego dla użytkownika %1. - + chown terminated with error code %1. Polecenie chown zostało przerwane z kodem błędu %1. @@ -786,37 +786,37 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. DeletePartitionJob - + Delete partition %1. Usuń partycję %1. - + Delete partition <strong>%1</strong>. Usuń partycję <strong>%1</strong>. - + Deleting partition %1. Usuwanie partycji %1. - + The installer failed to delete partition %1. Instalator nie mógł usunąć partycji %1. - + Partition (%1) and device (%2) do not match. Partycja (%1) i urządzenie (%2) nie pasują do siebie. - + Could not open device %1. Nie udało się otworzyć urządzenia %1. - + Could not open partition table. Nie udało się otworzyć tablicy partycji. @@ -977,37 +977,37 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. FillGlobalStorageJob - + Set partition information Ustaw informacje partycji - + Install %1 on <strong>new</strong> %2 system partition. Zainstaluj %1 na <strong>nowej</strong> partycji systemowej %2. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Ustaw <strong>nową</strong> partycję %2 z punktem montowania <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Zainstaluj %2 na partycji systemowej %3 <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Ustaw partycję %3 <strong>%1</strong> z punktem montowania <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Zainstaluj program rozruchowy na <strong>%1</strong>. - + Setting up mount points. Ustawianie punktów montowania. @@ -1038,17 +1038,17 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. FinishedViewStep - + Finish Koniec - + Installation Complete Instalacja zakończona - + The installation of %1 is complete. Instalacja %1 ukończyła się pomyślnie. @@ -1129,12 +1129,12 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. KeyboardPage - + Set keyboard model to %1.<br/> Ustaw model klawiatury na %1.<br/> - + Set keyboard layout to %1/%2. Ustaw model klawiatury na %1/%2. @@ -1296,7 +1296,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Wczytywanie danych położenia - + Location Położenie @@ -1339,13 +1339,13 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Rozmiary sektora logicznego w źródle i w celu kopiowania są różne. Obecnie nie jest to wspierane. - + Source and target for copying do not overlap: Rollback is not required. Źródło i cel kopiowania nie nachodzą na siebie: Przywracanie nie jest wymagane. - - + + Could not open device %1 to rollback copying. Nie można otworzyć urządzenia %1, by wykonać przywracanie. @@ -1353,17 +1353,18 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. NetInstallPage - + Name Nazwa - + Description Opis - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) Instalacja sieciowa. (Wyłączona: Nie można pobrać listy pakietów, sprawdź swoje połączenie z siecią) @@ -1467,42 +1468,42 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. PartitionLabelsView - + Root Systemowa - + Home Domowa - + Boot Rozruchowa - + EFI system System EFI - + Swap Przestrzeń wymiany - + New partition for %1 Nowa partycja dla %1 - + New partition Nowa partycja - + %1 %2 %1 %2 @@ -1702,22 +1703,22 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Domyślnie - + unknown nieznany - + extended rozszerzona - + unformatted niesformatowany - + swap przestrzeń wymiany @@ -1805,57 +1806,57 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. RequirementsChecker - + Gathering system information... Zbieranie informacji o systemie... - + has at least %1 GB available drive space ma przynajmniej %1 GB dostępnego miejsca na dysku - + There is not enough drive space. At least %1 GB is required. Nie ma wystarczającej ilości miejsca na dysku. Wymagane jest przynajmniej %1 GB. - + has at least %1 GB working memory ma przynajmniej %1 GB pamięci roboczej - + The system does not have enough working memory. At least %1 GB is required. System nie posiada wystarczającej ilości pamięci roboczej. Wymagane jest przynajmniej %1 GB. - + is plugged in to a power source jest podłączony do źródła zasilania - + The system is not plugged in to a power source. System nie jest podłączony do źródła zasilania. - + is connected to the Internet jest podłączony do Internetu - + The system is not connected to the Internet. System nie jest podłączony do Internetu. - + The installer is not running with administrator rights. Instalator jest uruchomiony bez praw administratora. - + The screen is too small to display the installer. Zbyt niska rozdzielczość ekranu, aby wyświetlić instalator. @@ -1910,12 +1911,12 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. ScanningDialog - + Scanning storage devices... Skanowanie urządzeń przechowywania... - + Partitioning Partycjonowanie @@ -2094,42 +2095,42 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. SetPasswordJob - + Set password for user %1 Ustaw hasło dla użytkownika %1 - + Setting password for user %1. Ustawianie hasła użytkownika %1. - + Bad destination system path. Błędna ścieżka docelowa systemu. - + rootMountPoint is %1 Punkt montowania / to %1 - + Cannot disable root account. Nie można wyłączyć konta administratora. - + passwd terminated with error code %1. Zakończono passwd z kodem błędu %1. - + Cannot set password for user %1. Nie można ustawić hasła dla użytkownika %1. - + usermod terminated with error code %1. Polecenie usermod przerwane z kodem błędu %1. @@ -2175,7 +2176,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. SummaryPage - + This is an overview of what will happen once you start the install procedure. To jest podsumowanie czynności, które zostaną wykonane po rozpoczęciu przez Ciebie instalacji. @@ -2191,41 +2192,51 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. 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! + + + Password is too short + Hasło jest zbyt krótkie + + + + Password is too long + Hasło jest zbyt długie + UsersViewStep - + Users Użytkownicy diff --git a/lang/calamares_pl_PL.ts b/lang/calamares_pl_PL.ts index 462dd1f70..0b8e4e7e3 100644 --- a/lang/calamares_pl_PL.ts +++ b/lang/calamares_pl_PL.ts @@ -232,13 +232,13 @@ Wyjście: - + &Cancel &Anuluj - + Cancel installation without changing the system. @@ -265,47 +265,47 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. - + &Close - + Continue with setup? Kontynuować instalację? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now &Zainstaluj - + Go &back &Wstecz - + &Done - + The installation is complete. Close the installer. - + Error Błąd - + Installation Failed Wystąpił błąd instalacji @@ -405,12 +405,12 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -421,83 +421,83 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. - - - + + + 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. - - - - + + + + <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. @@ -619,42 +619,42 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. Instalator nie mógł utworzyć partycji na dysku '%1'. - + Could not open device '%1'. Nie udało się otworzyć urządzenia '%1'. - + Could not open partition table. Nie udało się otworzyć tablicy partycji. - + The installer failed to create file system on partition %1. Instalator nie mógł utworzyć systemu plików na partycji %1. - + The installer failed to update partition table on disk '%1'. Instalator nie mógł zaktualizować tablicy partycji na dysku '%1'. @@ -690,27 +690,27 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. CreatePartitionTableJob - + Create new %1 partition table on %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. Instalator nie mógł utworzyć tablicy partycji na %1. - + Could not open device %1. Nie udało się otworzyć urządzenia %1. @@ -753,32 +753,32 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone.Nie można otworzyć pliku groups do oczytu. - + Cannot create user %1. Nie można utworzyć użytkownika %1. - + useradd terminated with error code %1. useradd przerwany z kodem błędu %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. Nie można ustawić właściciela folderu domowego dla użytkownika %1. - + chown terminated with error code %1. chown przerwany z kodem błędu %1. @@ -786,37 +786,37 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. DeletePartitionJob - + Delete partition %1. - + Delete partition <strong>%1</strong>. - + Deleting partition %1. - + The installer failed to delete partition %1. Instalator nie mógł usunąć partycji %1. - + Partition (%1) and device (%2) do not match. Partycja (%1) i urządzenie (%2) są niezgodne. - + Could not open device %1. Nie udało się otworzyć urządzenia %1. - + Could not open partition table. Nie udało się otworzyć tablicy partycji. @@ -977,37 +977,37 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. FillGlobalStorageJob - + Set partition information Ustaw informacje partycji - + Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. - + Setting up mount points. @@ -1038,17 +1038,17 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. FinishedViewStep - + Finish - + Installation Complete - + The installation of %1 is complete. @@ -1129,12 +1129,12 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. KeyboardPage - + Set keyboard model to %1.<br/> Model klawiatury %1.<br/> - + Set keyboard layout to %1/%2. Model klawiatury %1/%2. @@ -1296,7 +1296,7 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone.Wczytywanie danych położenia - + Location Położenie @@ -1339,13 +1339,13 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone.Rozmiary sektora logicznego w źródle i celu kopiowania są różne. Obecnie nie jest to wspierane. - + Source and target for copying do not overlap: Rollback is not required. Źródło i cel kopiowania nie nachodzą na siebie: Przywracanie nie jest wymagane. - - + + Could not open device %1 to rollback copying. Nie można otworzyć urządzenia %1, by wykonać przywracanie. @@ -1353,17 +1353,18 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1467,42 +1468,42 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1702,22 +1703,22 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone.Domyślnie - + unknown - + extended - + unformatted - + swap @@ -1805,57 +1806,57 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. RequirementsChecker - + Gathering system information... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. - + is connected to the Internet - + The system is not connected to the Internet. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1910,12 +1911,12 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -2094,42 +2095,42 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. SetPasswordJob - + Set password for user %1 Ustaw hasło użytkownika %1 - + Setting password for user %1. - + Bad destination system path. Błędna ścieżka docelowa. - + rootMountPoint is %1 Punkt montowania / to %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. Nie można ustawić hasła dla użytkownika %1. - + usermod terminated with error code %1. usermod przerwany z kodem błędu %1. @@ -2175,7 +2176,7 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. SummaryPage - + This is an overview of what will happen once you start the install procedure. @@ -2191,41 +2192,51 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. 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! Twoje hasła są niezgodne! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Użytkownicy diff --git a/lang/calamares_pt_BR.ts b/lang/calamares_pt_BR.ts index bebf1c8b7..9e5f0029b 100644 --- a/lang/calamares_pt_BR.ts +++ b/lang/calamares_pt_BR.ts @@ -232,13 +232,13 @@ Saída: - + &Cancel &Cancelar - + Cancel installation without changing the system. Cancelar instalação sem modificar o sistema. @@ -265,47 +265,47 @@ O instalador será fechado e todas as alterações serão perdidas.&Não - + &Close &Fechar - + Continue with setup? Continuar com configuração? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> O instalador %1 está prestes a fazer alterações no disco a fim de instalar %2.<br/><strong>Você não será capaz de desfazer estas mudanças.</strong> - + &Install now &Instalar agora - + Go &back Voltar - + &Done Completo - + The installation is complete. Close the installer. A instalação está completa. Feche o instalador. - + Error Erro - + Installation Failed Falha na Instalação @@ -407,12 +407,12 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.<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. @@ -423,83 +423,83 @@ A instalação pode continuar, mas alguns recursos podem ser desativados. - - - + + + 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. O que 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 gostaria de fazer?<br/>Você poderá revisar e confirmar suas opções antes que as alterações sejam feitas no dispositivo de armazenamento. - - - - + + + + <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 irá 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 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 gostaria de fazer?<br/>Você poderá revisar e confirmar suas opções antes que as alterações sejam feitas no dispositivo de armazenamento. @@ -621,42 +621,42 @@ A instalação pode continuar, mas alguns recursos podem ser desativados. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Criar nova partição de %2MB em %4 (%3) com o sistema de arquivos %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Criar nova partição de <strong>%2MB</strong> em <strong>%4</strong> (%3) com o sistema de arquivos <strong>%1</strong>. - + Creating new %1 partition on %2. Criando nova partição %1 em %2. - + The installer failed to create partition on disk '%1'. O instalador não conseguiu criar partições no disco '%1'. - + Could not open device '%1'. Não foi possível abrir o dispositivo '%1'. - + Could not open partition table. Não foi possível abrir a tabela de partições. - + The installer failed to create file system on partition %1. O instalador não conseguiu criar o sistema de arquivos na partição %1. - + The installer failed to update partition table on disk '%1'. O instalador falhou ao atualizar a tabela de partições no disco '%1'. @@ -692,27 +692,27 @@ A instalação pode continuar, mas alguns recursos podem ser desativados. CreatePartitionTableJob - + Create new %1 partition table on %2. Criar nova tabela de partições %1 em %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Criar nova tabela de partições <strong>%1</strong> em <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Criando nova tabela de partições %1 em %2. - + The installer failed to create a partition table on %1. O instalador não conseguiu criar uma tabela de partições em %1. - + Could not open device %1. Não foi possível abrir o dispositivo %1. @@ -755,32 +755,32 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.Não foi possível abrir arquivos do grupo para leitura. - + Cannot create user %1. Impossível criar o usuário %1. - + useradd terminated with error code %1. useradd terminou com código de erro %1. - + Cannot add user %1 to groups: %2. Não foi possível adicionar o usuário %1 aos grupos: %2. - + usermod terminated with error code %1. O usermod terminou com o código de erro %1. - + Cannot set home directory ownership for user %1. Impossível definir proprietário da pasta pessoal para o usuário %1. - + chown terminated with error code %1. chown terminou com código de erro %1. @@ -788,37 +788,37 @@ A instalação pode continuar, mas alguns recursos podem ser desativados. DeletePartitionJob - + Delete partition %1. Excluir a partição %1. - + Delete partition <strong>%1</strong>. Excluir a partição <strong>%1</strong>. - + Deleting partition %1. Excluindo a partição %1. - + The installer failed to delete partition %1. O instalador não conseguiu excluir a partição %1. - + Partition (%1) and device (%2) do not match. Partição (%1) e dispositivo (%2) não correspondem. - + Could not open device %1. Não foi possível abrir o dispositivo %1. - + Could not open partition table. Não foi possível abrir a tabela de partições. @@ -979,37 +979,37 @@ A instalação pode continuar, mas alguns recursos podem ser desativados. FillGlobalStorageJob - + Set partition information Definir informações da partição - + Install %1 on <strong>new</strong> %2 system partition. Instalar %1 em <strong>nova</strong> partição %2 do sistema. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Configurar <strong>nova</strong> partição %2 com ponto de montagem <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Instalar %2 em partição %3 do sistema <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Configurar partição %3 <strong>%1</strong> com ponto de montagem <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Instalar gerenciador de inicialização em <strong>%1</strong>. - + Setting up mount points. Configurando pontos de montagem. @@ -1040,17 +1040,17 @@ A instalação pode continuar, mas alguns recursos podem ser desativados. FinishedViewStep - + Finish Concluir - + Installation Complete Instalação Completa - + The installation of %1 is complete. A instalação do %1 está completa. @@ -1131,12 +1131,12 @@ A instalação pode continuar, mas alguns recursos podem ser desativados. KeyboardPage - + Set keyboard model to %1.<br/> Definir o modelo de teclado para %1.<br/> - + Set keyboard layout to %1/%2. Definir o layout do teclado para %1/%2. @@ -1298,7 +1298,7 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.Carregando dados de localização... - + Location Localização @@ -1341,13 +1341,13 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.O tamanho de setor lógico do destino e da fonte não são os mesmos. Esta operação não é suportada atualmente. - + Source and target for copying do not overlap: Rollback is not required. Origem e alvo da cópia não coincidem: a reversão não é necessária. - - + + Could not open device %1 to rollback copying. Não foi possível abrir o dispositivo %1 para reverter a cópia. @@ -1355,17 +1355,18 @@ A instalação pode continuar, mas alguns recursos podem ser desativados. NetInstallPage - + Name Nome - + Description Descrição - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) Instalação pela Rede. (Desabilitada: Não foi possível adquirir lista de pacotes, verifique sua conexão com a internet) @@ -1469,42 +1470,42 @@ A instalação pode continuar, mas alguns recursos podem ser desativados. PartitionLabelsView - + Root Root - + Home Home - + Boot Inicialização - + EFI system Sistema EFI - + Swap Swap - + New partition for %1 Nova partição para %1 - + New partition Nova partição - + %1 %2 %1 %2 @@ -1704,22 +1705,22 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.Padrão - + unknown desconhecido - + extended estendida - + unformatted não formatado - + swap swap @@ -1807,57 +1808,57 @@ A instalação pode continuar, mas alguns recursos podem ser desativados. RequirementsChecker - + Gathering system information... Coletando informações do sistema... - + has at least %1 GB available drive space tenha pelo menos %1 GB de espaço disponível no dispositivo - + There is not enough drive space. At least %1 GB is required. Não há espaço suficiente no armazenamento. Pelo menos %1 GB é necessário. - + has at least %1 GB working memory tenha pelo menos %1 GB de memória - + The system does not have enough working memory. At least %1 GB is required. O sistema não tem memória de trabalho suficiente. Pelo menos %1 GB é necessário. - + is plugged in to a power source está conectado a uma fonte de energia - + The system is not plugged in to a power source. O sistema não está conectado a uma fonte de energia. - + is connected to the Internet está conectado à Internet - + The system is not connected to the Internet. O sistema não está conectado à Internet. - + The installer is not running with administrator rights. O instalador não está sendo executado com permissões de administrador. - + The screen is too small to display the installer. A tela é muito pequena para exibir o instalador. @@ -1912,12 +1913,12 @@ A instalação pode continuar, mas alguns recursos podem ser desativados. ScanningDialog - + Scanning storage devices... Localizando dispositivos de armazenamento... - + Partitioning Particionando @@ -2096,42 +2097,42 @@ A instalação pode continuar, mas alguns recursos podem ser desativados. SetPasswordJob - + Set password for user %1 Definir senha para usuário %1 - + Setting password for user %1. Definindo senha para usuário %1 - + Bad destination system path. O caminho para o sistema está mal direcionado. - + rootMountPoint is %1 rootMountPoint é %1 - + Cannot disable root account. Não é possível desativar a conta root. - + passwd terminated with error code %1. passwd terminado com código de erro %1. - + Cannot set password for user %1. Não foi possível definir senha para o usuário %1. - + usermod terminated with error code %1. usermod terminou com código de erro %1. @@ -2177,7 +2178,7 @@ A instalação pode continuar, mas alguns recursos podem ser desativados. SummaryPage - + This is an overview of what will happen once you start the install procedure. Este é um resumo do que acontecerá assim que o processo de instalação for iniciado. @@ -2193,41 +2194,51 @@ A instalação pode continuar, mas alguns recursos podem ser desativados. 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! + + + Password is too short + A senha é muito curta + + + + Password is too long + A senha é muito longa + UsersViewStep - + Users Usuários diff --git a/lang/calamares_pt_PT.ts b/lang/calamares_pt_PT.ts index 6068a7ab0..7f4bcee6a 100644 --- a/lang/calamares_pt_PT.ts +++ b/lang/calamares_pt_PT.ts @@ -232,13 +232,13 @@ Saída: - + &Cancel &Cancelar - + Cancel installation without changing the system. Cancelar instalar instalação sem modificar o sistema. @@ -265,47 +265,47 @@ O instalador será encerrado e todas as alterações serão perdidas.&Não - + &Close &Fechar - + Continue with setup? Continuar com a configuração? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> O %1 instalador está prestes a fazer alterações ao seu disco em ordem para instalar %2.<br/><strong>Não será capaz de desfazer estas alterações.</strong> - + &Install now &Instalar agora - + Go &back Voltar &atrás - + &Done &Feito - + The installation is complete. Close the installer. A instalação está completa. Feche o instalador. - + Error Erro - + Installation Failed Falha na Instalação @@ -405,12 +405,12 @@ O instalador será encerrado e todas as alterações serão perdidas.<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. @@ -421,83 +421,83 @@ 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. - - - - + + + + <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. @@ -619,42 +619,42 @@ O instalador será encerrado e todas as alterações serão perdidas. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Criar nova partição de %2MB em %4 (%3) com sistema de ficheiros %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Criar nova partição de <strong>%2MB</strong> em <strong>%4</strong> (%3) com sistema de ficheiros <strong>%1</strong>. - + Creating new %1 partition on %2. Criando nova partição %1 em %2. - + The installer failed to create partition on disk '%1'. O instalador falhou a criação da partição no disco '%1'. - + Could not open device '%1'. Não foi possível abrir o dispositivo '%1'. - + Could not open partition table. Não foi possível abrir a tabela de partições. - + The installer failed to create file system on partition %1. O instalador falhou a criação do sistema de ficheiros na partição %1. - + The installer failed to update partition table on disk '%1'. O instalador falhou ao atualizar a tabela de partições no disco '%1'. @@ -690,27 +690,27 @@ O instalador será encerrado e todas as alterações serão perdidas. CreatePartitionTableJob - + Create new %1 partition table on %2. Criar nova %1 tabela de partições em %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Criar nova <strong>%1</strong> tabela de partições <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. A criar nova %1 tabela de partições em %2. - + The installer failed to create a partition table on %1. O instalador falhou a criação de uma tabela de partições em %1. - + Could not open device %1. Não foi possível abrir o dispositivo %1. @@ -753,32 +753,32 @@ O instalador será encerrado e todas as alterações serão perdidas.Impossível abrir ficheiro dos grupos para leitura. - + Cannot create user %1. Não é possível criar utilizador %1. - + useradd terminated with error code %1. useradd terminou com código de erro %1. - + Cannot add user %1 to groups: %2. Não é possível adicionar o utilizador %1 aos grupos: %2. - + usermod terminated with error code %1. usermod terminou com código de erro %1. - + Cannot set home directory ownership for user %1. Impossível definir permissão da pasta pessoal para o utilizador %1. - + chown terminated with error code %1. chown terminou com código de erro %1. @@ -786,37 +786,37 @@ O instalador será encerrado e todas as alterações serão perdidas. DeletePartitionJob - + Delete partition %1. Apagar partição %1. - + Delete partition <strong>%1</strong>. Apagar partição <strong>%1</strong>. - + Deleting partition %1. A apagar a partição %1. - + The installer failed to delete partition %1. O instalador não conseguiu apagar a partição %1. - + Partition (%1) and device (%2) do not match. Partição (%1) e dispositivo (%2) não correspondem. - + Could not open device %1. Não foi possível abrir o dispositivo %1. - + Could not open partition table. Não foi possível abrir tabela de partições. @@ -977,37 +977,37 @@ O instalador será encerrado e todas as alterações serão perdidas. FillGlobalStorageJob - + Set partition information Definir informação da partição - + Install %1 on <strong>new</strong> %2 system partition. Instalar %1 na <strong>nova</strong> %2 partição de sistema. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Criar <strong>nova</strong> %2 partição com ponto de montagem <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Instalar %2 em %3 partição de sistema <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Criar %3 partitição <strong>%1</strong> com ponto de montagem <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Instalar carregador de arranque em <strong>%1</strong>. - + Setting up mount points. Definindo pontos de montagem. @@ -1038,17 +1038,17 @@ O instalador será encerrado e todas as alterações serão perdidas. FinishedViewStep - + Finish Finalizar - + Installation Complete Instalação Completa - + The installation of %1 is complete. A instalação de %1 está completa. @@ -1129,12 +1129,12 @@ O instalador será encerrado e todas as alterações serão perdidas. KeyboardPage - + Set keyboard model to %1.<br/> Definir o modelo do teclado para %1.<br/> - + Set keyboard layout to %1/%2. Definir esquema do teclado para %1/%2. @@ -1162,12 +1162,12 @@ O instalador será encerrado e todas as alterações serão perdidas. &Cancel - + &Cancelar &OK - + &OK @@ -1296,7 +1296,7 @@ O instalador será encerrado e todas as alterações serão perdidas.A carregar dados de localização... - + Location Localização @@ -1339,13 +1339,13 @@ O instalador será encerrado e todas as alterações serão perdidas.O tamanho dos setores lógicos para copiar na fonte e no destino não são os mesmos. Isto não é suportado actualmente. - + Source and target for copying do not overlap: Rollback is not required. Fonte e alvo para cópia não se sobrepõem: A reversão não é necessária. - - + + Could not open device %1 to rollback copying. Não foi possível abrir o dispositivo %1 para reverter a cópia. @@ -1353,17 +1353,18 @@ O instalador será encerrado e todas as alterações serão perdidas. NetInstallPage - + Name Nome - + Description Descrição - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) Instalaçao de Rede. (Desativada: Incapaz de buscar listas de pacotes, verifique a sua ligação de rede) @@ -1467,42 +1468,42 @@ O instalador será encerrado e todas as alterações serão perdidas. PartitionLabelsView - + Root Root - + Home Home - + Boot Arranque - + EFI system Sistema EFI - + Swap Swap - + New partition for %1 Nova partição para %1 - + New partition Nova partição - + %1 %2 %1 %2 @@ -1702,22 +1703,22 @@ O instalador será encerrado e todas as alterações serão perdidas.Padrão - + unknown desconhecido - + extended estendido - + unformatted não formatado - + swap swap @@ -1805,57 +1806,57 @@ O instalador será encerrado e todas as alterações serão perdidas. RequirementsChecker - + Gathering system information... A recolher informação de sistema... - + has at least %1 GB available drive space tem pelo menos %1 GB de espaço livre em disco - + There is not enough drive space. At least %1 GB is required. Não existe espaço livre suficiente em disco. É necessário pelo menos %1 GB. - + has at least %1 GB working memory tem pelo menos %1 GB de memória disponível - + The system does not have enough working memory. At least %1 GB is required. O sistema não tem memória disponível suficiente. É necessário pelo menos %1 GB. - + is plugged in to a power source está ligado a uma fonte de energia - + The system is not plugged in to a power source. O sistema não está ligado a uma fonte de energia. - + is connected to the Internet está ligado à internet - + The system is not connected to the Internet. O sistema não está ligado à internet. - + The installer is not running with administrator rights. O instalador não está a correr com permissões de administrador. - + The screen is too small to display the installer. O ecrã tem um tamanho demasiado pequeno para mostrar o instalador. @@ -1910,12 +1911,12 @@ O instalador será encerrado e todas as alterações serão perdidas. ScanningDialog - + Scanning storage devices... A examinar dispositivos de armazenamento... - + Partitioning Particionamento @@ -2094,42 +2095,42 @@ O instalador será encerrado e todas as alterações serão perdidas. SetPasswordJob - + Set password for user %1 Definir palavra-passe para o utilizador %1 - + Setting password for user %1. A definir palavra-passe para o utilizador %1. - + Bad destination system path. Mau destino do caminho do sistema. - + rootMountPoint is %1 rootMountPoint é %1 - + Cannot disable root account. Não é possível desativar a conta root. - + passwd terminated with error code %1. passwd terminado com código de erro %1. - + Cannot set password for user %1. Não é possível definir a palavra-passe para o utilizador %1. - + usermod terminated with error code %1. usermod terminou com código de erro %1. @@ -2175,7 +2176,7 @@ O instalador será encerrado e todas as alterações serão perdidas. SummaryPage - + This is an overview of what will happen once you start the install procedure. Isto é uma visão geral do que acontecerá assim que iniciar o procedimento de instalação. @@ -2191,41 +2192,51 @@ O instalador será encerrado e todas as alterações serão perdidas. 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! + + + Password is too short + A palavra-passe é demasiado curta + + + + Password is too long + A palavra-passe é demasiado longa + UsersViewStep - + Users Utilizadores diff --git a/lang/calamares_ro.ts b/lang/calamares_ro.ts index 9bcbe3aba..27b67414c 100644 --- a/lang/calamares_ro.ts +++ b/lang/calamares_ro.ts @@ -232,13 +232,13 @@ Rezultat: - + &Cancel &Anulează - + Cancel installation without changing the system. @@ -265,47 +265,47 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. - + &Close - + Continue with setup? Continuați configurarea? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> Programul de instalare %1 este pregătit să facă schimbări pe discul dumneavoastră pentru a instala %2.<br/><strong>Nu veți putea anula aceste schimbări.</strong> - + &Install now &Instalează acum - + Go &back Î&napoi - + &Done - + The installation is complete. Close the installer. - + Error Eroare - + Installation Failed Instalare eșuată @@ -405,12 +405,12 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.<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. @@ -421,83 +421,83 @@ 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. - - - - + + + + <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. @@ -619,42 +619,42 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Creează o nouă partiție de %2MB pe %4 (3%) cu sistemul de operare %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Creează o nouă partiție de <strong>%2MB</strong> pe <strong>%4</strong> (%3) cu sistemul de fișiere <strong>%1</strong>. - + Creating new %1 partition on %2. Se creează nouă partiție %1 pe %2. - + The installer failed to create partition on disk '%1'. Programul de instalare nu a putut crea partiția pe discul „%1”. - + Could not open device '%1'. Nu se poate deschide dispozitivul „%1”. - + Could not open partition table. Nu se poate deschide tabela de partiții. - + The installer failed to create file system on partition %1. Programul de instalare nu a putut crea sistemul de fișiere pe partiția %1. - + The installer failed to update partition table on disk '%1'. Programul de instalare nu a putut actualiza tabela de partiții pe discul „%1”. @@ -690,27 +690,27 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. CreatePartitionTableJob - + Create new %1 partition table on %2. Creați o nouă tabelă de partiții %1 pe %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Creați o nouă tabelă de partiții <strong>%1</strong> pe <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Se creează o nouă tabelă de partiții %1 pe %2. - + The installer failed to create a partition table on %1. Programul de instalare nu a putut crea o tabelă de partiții pe %1. - + Could not open device %1. Nu se poate deschide dispozitivul %1. @@ -753,32 +753,32 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.Nu se poate deschide fișierul groups pentru citire. - + Cannot create user %1. Nu se poate crea utilizatorul %1. - + useradd terminated with error code %1. useradd s-a terminat cu codul de eroare %1. - + Cannot add user %1 to groups: %2. Nu s-a reușit adăugarea utilizatorului %1 la grupurile: %2 - + usermod terminated with error code %1. usermod s-a terminat cu codul de eroare %1. - + Cannot set home directory ownership for user %1. Nu se poate seta apartenența dosarului home pentru utilizatorul %1. - + chown terminated with error code %1. chown s-a terminat cu codul de eroare %1. @@ -786,37 +786,37 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. DeletePartitionJob - + Delete partition %1. Șterge partiția %1. - + Delete partition <strong>%1</strong>. Șterge partiția <strong>%1</strong>. - + Deleting partition %1. Se șterge partiția %1. - + The installer failed to delete partition %1. Programul de instalare nu a putut șterge partiția %1. - + Partition (%1) and device (%2) do not match. Partiția (%1) și dispozitivul (%2) nu se potrivesc. - + Could not open device %1. Nu se poate deschide dispozitivul %1. - + Could not open partition table. Nu se poate deschide tabela de partiții. @@ -977,37 +977,37 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. FillGlobalStorageJob - + Set partition information Setează informația pentru partiție - + Install %1 on <strong>new</strong> %2 system partition. Instalează %1 pe <strong>noua</strong> partiție de sistem %2. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Setează <strong>noua</strong> partiție %2 cu punctul de montare <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Instalează %2 pe partiția de sistem %3 <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Setează partiția %3 <strong>%1</strong> cu punctul de montare <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Instalează bootloader-ul pe <strong>%1</strong>. - + Setting up mount points. Se setează puncte de montare. @@ -1038,17 +1038,17 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. FinishedViewStep - + Finish Termină - + Installation Complete - + The installation of %1 is complete. @@ -1129,12 +1129,12 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. KeyboardPage - + Set keyboard model to %1.<br/> Setează modelul tastaturii la %1.<br/> - + Set keyboard layout to %1/%2. Setează aranjamentul de tastatură la %1/%2. @@ -1296,7 +1296,7 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.Se încarcă datele locației... - + Location Locație @@ -1339,13 +1339,13 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.Mărimile sectoarelor logice din sursa și ținta copierii nu sunt identice. Nu există suport momentan. - + Source and target for copying do not overlap: Rollback is not required. Sursa și ținta copierii nu se suprapun: nu este necesară retragerea schimbărilor. - - + + Could not open device %1 to rollback copying. Nu se poate deschide dispozitivul %1 pentru retragerea copierii. @@ -1353,17 +1353,18 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. NetInstallPage - + Name Nume - + Description Despre - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) Instalarea rețelei. (Dezactivat: Nu se pot obține listele de pachete, verificați conexiunea la rețea) @@ -1467,42 +1468,42 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. PartitionLabelsView - + Root Root - + Home Home - + Boot Boot - + EFI system Sistem EFI - + Swap Swap - + New partition for %1 Noua partiție pentru %1 - + New partition Noua partiție - + %1 %2 %1 %2 @@ -1702,22 +1703,22 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.Implicit - + unknown necunoscut - + extended extins - + unformatted neformatat - + swap swap @@ -1805,57 +1806,57 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. RequirementsChecker - + Gathering system information... Se adună informații despre sistem... - + has at least %1 GB available drive space are cel puțin %1 spațiu disponibil - + There is not enough drive space. At least %1 GB is required. Nu este suficient spațiu disponibil. Sunt necesari cel puțin %1 GB. - + has at least %1 GB working memory are cel puțin %1 GB de memorie utilizabilă - + The system does not have enough working memory. At least %1 GB is required. Sistemul nu are suficientă memorie utilizabilă. Sunt necesari cel puțin %1 GB. - + is plugged in to a power source este alimentat cu curent - + The system is not plugged in to a power source. Sistemul nu este alimentat cu curent. - + is connected to the Internet este conectat la Internet - + The system is not connected to the Internet. Sistemul nu este conectat la Internet. - + The installer is not running with administrator rights. Programul de instalare nu rulează cu privilegii de administrator. - + The screen is too small to display the installer. @@ -1910,12 +1911,12 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. ScanningDialog - + Scanning storage devices... Se scanează dispozitivele de stocare... - + Partitioning Partiționare @@ -2094,42 +2095,42 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. SetPasswordJob - + Set password for user %1 Setează parola pentru utilizatorul %1 - + Setting password for user %1. Se setează parola pentru utilizatorul %1. - + Bad destination system path. Cale de sistem destinație proastă. - + rootMountPoint is %1 rootMountPoint este %1 - + Cannot disable root account. Nu pot dezactiva contul root - + passwd terminated with error code %1. eroare la setarea parolei cod %1 - + Cannot set password for user %1. Nu se poate seta parola pentru utilizatorul %1. - + usermod terminated with error code %1. usermod s-a terminat cu codul de eroare %1. @@ -2175,7 +2176,7 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. SummaryPage - + This is an overview of what will happen once you start the install procedure. Acesta este un rezumat a ce se va întâmpla după ce începeți procedura de instalare. @@ -2191,41 +2192,51 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Utilizatori diff --git a/lang/calamares_ru.ts b/lang/calamares_ru.ts index 4f7ca92f0..c521c713b 100644 --- a/lang/calamares_ru.ts +++ b/lang/calamares_ru.ts @@ -232,13 +232,13 @@ Output: - + &Cancel О&тмена - + Cancel installation without changing the system. @@ -264,47 +264,47 @@ The installer will quit and all changes will be lost. &Нет - + &Close &Закрыть - + Continue with setup? Продолжить установку? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> Программа установки %1 готова внести изменения на Ваш диск, чтобы установить %2.<br/><strong>Отменить эти изменения будет невозможно.</strong> - + &Install now Приступить к &установке - + Go &back &Назад - + &Done - + The installation is complete. Close the installer. Установка завершена. Закройте установщик. - + Error Ошибка - + Installation Failed Установка завершилась неудачей @@ -404,12 +404,12 @@ The installer will quit and all changes will be lost. <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. @@ -420,83 +420,83 @@ 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/>Вы сможете изменить или подтвердить свой выбор до того, как на устройстве будут сделаны какие-либо изменения. - - - - + + + + <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/>Вы сможете изменить или подтвердить свой выбор до того, как на устройстве будут сделаны какие-либо изменения. @@ -618,42 +618,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Создать новый раздел %2 MB на %4 (%3) с файловой системой %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Создать новый раздел <strong>%2 MB</strong> на <strong>%4</strong> (%3) с файловой системой <strong>%1</strong>. - + Creating new %1 partition on %2. Создается новый %1 раздел на %2. - + The installer failed to create partition on disk '%1'. Программа установки не смогла создать раздел на диске '%1'. - + Could not open device '%1'. Не удалось открыть устройство '%1'. - + Could not open partition table. Не удалось открыть таблицу разделов. - + The installer failed to create file system on partition %1. Программа установки не смогла создать файловую систему на разделе %1. - + The installer failed to update partition table on disk '%1'. Программа установки не смогла обновить таблицу разделов на диске '%1'. @@ -689,27 +689,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. Создать новую таблицу разделов %1 на %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Создать новую таблицу разделов <strong>%1</strong> на <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Создается новая таблица разделов %1 на %2. - + The installer failed to create a partition table on %1. Программа установки не смогла создать таблицу разделов на %1. - + Could not open device %1. Не удалось открыть устройство %1. @@ -752,32 +752,32 @@ The installer will quit and all changes will be lost. Не удалось открыть файл groups для чтения. - + Cannot create user %1. Не удалось создать учетную запись пользователя %1. - + useradd terminated with error code %1. Команда useradd завершилась с кодом ошибки %1. - + Cannot add user %1 to groups: %2. Не удается добавить пользователя %1 в группы: %2. - + usermod terminated with error code %1. Команда usermod завершилась с кодом ошибки %1. - + Cannot set home directory ownership for user %1. Не удалось задать владельца домашней папки пользователя %1. - + chown terminated with error code %1. Команда chown завершилась с кодом ошибки %1. @@ -785,37 +785,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. Удалить раздел %1. - + Delete partition <strong>%1</strong>. Удалить раздел <strong>%1</strong>. - + Deleting partition %1. Удаляется раздел %1. - + The installer failed to delete partition %1. Программе установки не удалось удалить раздел %1. - + Partition (%1) and device (%2) do not match. Раздел (%1) и устройство (%2) не совпадают. - + Could not open device %1. Не удалось открыть устройство %1. - + Could not open partition table. Не удалось открыть таблицу разделов. @@ -976,37 +976,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information Установить сведения о разделе - + Install %1 on <strong>new</strong> %2 system partition. Установить %1 на <strong>новый</strong> системный раздел %2. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Настроить <strong>новый</strong> %2 раздел с точкой монтирования <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Установить %2 на %3 системный раздел <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Настроить %3 раздел <strong>%1</strong> с точкой монтирования <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Установить загрузчик на <strong>%1</strong>. - + Setting up mount points. Настраиваются точки монтирования. @@ -1037,17 +1037,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish Завершить - + Installation Complete - + The installation of %1 is complete. @@ -1128,12 +1128,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> Установить модель клавиатуры на %1.<br/> - + Set keyboard layout to %1/%2. Установить раскладку клавиатуры на %1/%2. @@ -1295,7 +1295,7 @@ The installer will quit and all changes will be lost. Загружаю данные о местоположениях... - + Location Местоположение @@ -1338,13 +1338,13 @@ The installer will quit and all changes will be lost. Размеры логических секторов на источнике и цели не совпадают. Такое перемещение пока не поддерживается. - + Source and target for copying do not overlap: Rollback is not required. Источник и цель для копирования не перекрывают друг друга. Создание отката не требуется. - - + + Could not open device %1 to rollback copying. Не могу открыть устройство %1 для копирования отката. @@ -1352,17 +1352,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name Имя - + Description Описание - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) Установка по сети. (Отключено: не удается получить список пакетов, проверьте сетевое подключение) @@ -1466,42 +1467,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root Root - + Home Home - + Boot Boot - + EFI system Система EFI - + Swap Swap - + New partition for %1 Новый раздел для %1 - + New partition Новый раздел - + %1 %2 %1 %2 @@ -1701,22 +1702,22 @@ The installer will quit and all changes will be lost. По умолчанию - + unknown неизвестный - + extended расширенный - + unformatted неформатированный - + swap swap @@ -1804,57 +1805,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... Сбор информации о системе... - + has at least %1 GB available drive space доступно как минимум %1 ГБ свободного дискового пространства - + There is not enough drive space. At least %1 GB is required. Недостаточно места на дисках. Необходимо как минимум %1 ГБ. - + has at least %1 GB working memory доступно как минимум %1 ГБ оперативной памяти - + The system does not have enough working memory. At least %1 GB is required. Недостаточно оперативной памяти. Необходимо как минимум %1 ГБ. - + is plugged in to a power source подключено сетевое питание - + The system is not plugged in to a power source. Сетевое питание не подключено. - + is connected to the Internet присутствует выход в сеть Интернет - + The system is not connected to the Internet. Отсутствует выход в Интернет. - + The installer is not running with administrator rights. Программа установки не запущена с привилегиями администратора. - + The screen is too small to display the installer. Слишком маленький экран для окна установщика. @@ -1909,12 +1910,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... Сканируются устройства хранения... - + Partitioning Разметка @@ -2093,42 +2094,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 Задать пароль для пользователя %1 - + Setting password for user %1. Устанавливаю пароль для учетной записи %1. - + Bad destination system path. Неверный путь целевой системы. - + rootMountPoint is %1 Точка монтирования корневого раздела %1 - + Cannot disable root account. Невозможно отключить учетную запись root - + passwd terminated with error code %1. - + Cannot set password for user %1. Не удалось задать пароль для пользователя %1. - + usermod terminated with error code %1. Команда usermod завершилась с кодом ошибки %1. @@ -2174,7 +2175,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. Это обзор изменений, которые будут применены при запуске процедуры установки. @@ -2190,41 +2191,51 @@ The installer will quit and all changes will be lost. 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! Пароли не совпадают! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Пользователи diff --git a/lang/calamares_sk.ts b/lang/calamares_sk.ts index a515fd14c..4d01486d1 100644 --- a/lang/calamares_sk.ts +++ b/lang/calamares_sk.ts @@ -232,13 +232,13 @@ Výstup: - + &Cancel &Zrušiť - + Cancel installation without changing the system. Zruší inštaláciu bez zmeny systému. @@ -265,47 +265,47 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. _Nie - + &Close _Zavrieť - + Continue with setup? Pokračovať v inštalácii? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> Inštalátor distribúcie %1 sa chystá vykonať zmeny na vašom disku, aby nainštaloval distribúciu %2. <br/><strong>Tieto zmeny nebudete môcť vrátiť späť.</strong> - + &Install now &Inštalovať teraz - + Go &back Prejsť s&päť - + &Done _Dokončiť - + The installation is complete. Close the installer. Inštalácia je dokončená. Zatvorí inštalátor. - + Error Chyba - + Installation Failed Inštalácia zlyhala @@ -405,12 +405,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. <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. @@ -421,83 +421,83 @@ 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 vybratom ú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í. - - - - + + + + <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í. @@ -619,42 +619,42 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Vytvoriť nový %2MB oddiel na zariadení %4 (%3) so systémom súborov %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Vytvoriť nový <strong>%2MB</strong> oddiel na zariadení <strong>%4</strong> (%3) so systémom súborov <strong>%1</strong>. - + Creating new %1 partition on %2. Vytvára sa nový %1 oddiel na zariadení %2. - + The installer failed to create partition on disk '%1'. Inštalátor zlyhal pri vytváraní oddielu na disku „%1“. - + Could not open device '%1'. Nepodarilo sa otvoriť zariadenie „%1“. - + Could not open partition table. Nepodarilo sa otvoriť tabuľku oddielov. - + The installer failed to create file system on partition %1. Inštalátor zlyhal pri vytváraní systému súborov na oddieli %1. - + The installer failed to update partition table on disk '%1'. Inštalátor zlyhal pri aktualizovaní tabuľky oddielov na disku „%1“. @@ -690,27 +690,27 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. CreatePartitionTableJob - + Create new %1 partition table on %2. Vytvoriť novú tabuľku oddielov typu %1 na zariadení %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Vytvoriť novú <strong>%1</strong> tabuľku oddielov na zariadení <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Vytvára sa nová tabuľka oddielov typu %1 na zariadení %2. - + The installer failed to create a partition table on %1. Inštalátor zlyhal pri vytváraní tabuľky oddielov na zariadení %1. - + Could not open device %1. Nepodarilo sa otvoriť zariadenie %1. @@ -753,32 +753,32 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Nedá sa otvoriť súbor skupín na čítanie. - + Cannot create user %1. Nedá sa vytvoriť používateľ %1. - + useradd terminated with error code %1. Príkaz useradd ukončený s chybovým kódom %1. - + Cannot add user %1 to groups: %2. Nedá sa pridať používateľ %1 do skupín: %2. - + usermod terminated with error code %1. Príkaz usermod ukončený s chybovým kódom %1. - + Cannot set home directory ownership for user %1. Nedá sa nastaviť vlastníctvo domovského adresára pre používateľa %1. - + chown terminated with error code %1. Príkaz chown ukončený s chybovým kódom %1. @@ -786,37 +786,37 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. DeletePartitionJob - + Delete partition %1. Odstrániť oddiel %1. - + Delete partition <strong>%1</strong>. Odstrániť oddiel <strong>%1</strong>. - + Deleting partition %1. Odstraňuje sa oddiel %1. - + The installer failed to delete partition %1. Inštalátor zlyhal pri odstraňovaní oddielu %1. - + Partition (%1) and device (%2) do not match. Oddiel (%1) a zariadenie (%2) sa nezhodujú.. - + Could not open device %1. Nepodarilo sa otvoriť zariadenie %1. - + Could not open partition table. Nepodarilo sa otvoriť tabuľku oddielov. @@ -977,37 +977,37 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. FillGlobalStorageJob - + Set partition information Nastaviť informácie o oddieli - + Install %1 on <strong>new</strong> %2 system partition. Inštalovať distribúciu %1 na <strong>novom</strong> %2 systémovom oddieli. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Nastaviť <strong>nový</strong> %2 oddiel s bodom pripojenia <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Inštalovať distribúciu %2 na %3 systémovom oddieli <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Nastaviť %3 oddiel <strong>%1</strong> s bodom pripojenia <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Inštalovať zavádzač do <strong>%1</strong>. - + Setting up mount points. Nastavujú sa body pripojení. @@ -1038,17 +1038,17 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. FinishedViewStep - + Finish Dokončenie - + Installation Complete Inštalácia dokončená - + The installation of %1 is complete. Inštalácia distribúcie %1s je dokončená. @@ -1129,12 +1129,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. KeyboardPage - + Set keyboard model to %1.<br/> Nastavenie modelu klávesnice na %1.<br/> - + Set keyboard layout to %1/%2. Nastavenie rozloženia klávesnice na %1/%2. @@ -1296,7 +1296,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Načítavajú sa údaje umiestnenia... - + Location Umiestnenie @@ -1339,13 +1339,13 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Veľkosti logických sektorov v zdroji a cieli kopírovania nie sú rovnaké. Toto nie je momentálne podporované. - + Source and target for copying do not overlap: Rollback is not required. Zdroj a cieľ kopírovania sa neprekrývajú. Odvolanie nie je potrebné. - - + + Could not open device %1 to rollback copying. Nepodarilo sa otvoriť zariadenie %1 na odvolanie kopírovania. @@ -1353,17 +1353,18 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. NetInstallPage - + Name Názov - + Description Popis - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) Sieťová inštalácia. (Zakázaná: Nie je možné získať zoznamy balíkov. Skontrolujte vaše sieťové pripojenie.) @@ -1467,42 +1468,42 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. PartitionLabelsView - + Root Koreňový adresár - + Home Domovský adresár - + Boot Zavádzač - + EFI system Systém EFI - + Swap Odkladací priestor - + New partition for %1 Nový oddiel pre %1 - + New partition Nový oddiel - + %1 %2 %1 %2 @@ -1702,22 +1703,22 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Predvolený - + unknown neznámy - + extended rozšírený - + unformatted nenaformátovaný - + swap odkladací @@ -1805,57 +1806,57 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. RequirementsChecker - + Gathering system information... Zbierajú sa informácie o počítači... - + has at least %1 GB available drive space obsahuje aspoň %1 GB voľného miesta na disku - + There is not enough drive space. At least %1 GB is required. Nie je dostatok miesta na disku. Vyžaduje sa aspoň %1 GB. - + has at least %1 GB working memory obsahuje aspoň %1 GB voľnej operačnej pamäte - + The system does not have enough working memory. At least %1 GB is required. Počítač neobsahuje dostatok operačnej pamäte. Vyžaduje sa aspoň %1 GB. - + is plugged in to a power source je pripojený k zdroju napájania - + The system is not plugged in to a power source. Počítač nie je pripojený k zdroju napájania. - + is connected to the Internet je pripojený k internetu - + The system is not connected to the Internet. Počítač nie je pripojený k internetu. - + The installer is not running with administrator rights. Inštalátor nie je spustený s právami správcu. - + The screen is too small to display the installer. Obrazovka je príliš malá na to, aby bolo možné zobraziť inštalátor. @@ -1910,12 +1911,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. ScanningDialog - + Scanning storage devices... Prehľadávajú sa úložné zariadenia... - + Partitioning Rozdelenie oddielov @@ -2094,42 +2095,42 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. SetPasswordJob - + Set password for user %1 Nastavenie hesla pre používateľa %1 - + Setting password for user %1. Nastavuje sa heslo pre používateľa %1. - + Bad destination system path. Nesprávny cieľ systémovej cesty. - + rootMountPoint is %1 rootMountPoint je %1 - + Cannot disable root account. Nedá sa zakázať účet správcu. - + passwd terminated with error code %1. Príkaz passwd ukončený s chybovým kódom %1. - + Cannot set password for user %1. Nedá sa nastaviť heslo pre používateľa %1. - + usermod terminated with error code %1. Príkaz usermod ukončený s chybovým kódom %1. @@ -2175,7 +2176,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. SummaryPage - + This is an overview of what will happen once you start the install procedure. Toto je prehľad toho, čo sa stane, keď spustíte inštaláciu. @@ -2191,41 +2192,51 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. 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ú! + + + Password is too short + Heslo je príliš krátke + + + + Password is too long + Heslo je príliš dlhé + UsersViewStep - + Users Používatelia @@ -2293,7 +2304,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Welcome - Vitajte + Uvítanie \ No newline at end of file diff --git a/lang/calamares_sl.ts b/lang/calamares_sl.ts index 9a2165909..e99aaa233 100644 --- a/lang/calamares_sl.ts +++ b/lang/calamares_sl.ts @@ -232,13 +232,13 @@ Izpis: - + &Cancel - + Cancel installation without changing the system. @@ -265,47 +265,47 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. - + &Close - + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error Napaka - + Installation Failed Namestitev je spodletela @@ -405,12 +405,12 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -421,83 +421,83 @@ 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. - - - - + + + + <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. @@ -619,42 +619,42 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. Namestilniku ni uspelo ustvariti razdelka na disku '%1'. - + Could not open device '%1'. Ni mogoče odpreti naprave '%1'. - + Could not open partition table. Ni mogoče odpreti razpredelnice razdelkov. - + The installer failed to create file system on partition %1. Namestilniku ni uspelo ustvariti datotečnega sistema na razdelku %1. - + The installer failed to update partition table on disk '%1'. Namestilniku ni uspelo posodobiti razpredelnice razdelkov na disku '%1'. @@ -690,27 +690,27 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. CreatePartitionTableJob - + Create new %1 partition table on %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. Namestilniku ni uspelo ustvariti razpredelnice razdelkov na %1. - + Could not open device %1. Naprave %1 ni mogoče odpreti. @@ -753,32 +753,32 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. Datoteke skupin ni bilo mogoče odpreti za branje. - + Cannot create user %1. Ni mogoče ustvariti uporabnika %1. - + useradd terminated with error code %1. useradd se je prekinil s kodo napake %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. Ni mogoče nastaviti lastništva domače mape za uporabnika %1. - + chown terminated with error code %1. chown se je prekinil s kodo napake %1. @@ -786,37 +786,37 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. DeletePartitionJob - + Delete partition %1. - + Delete partition <strong>%1</strong>. - + Deleting partition %1. - + The installer failed to delete partition %1. Namestilniku ni uspelo izbrisati razdelka %1. - + Partition (%1) and device (%2) do not match. Razdelek (%1) in naprava (%2) si ne ustrezata. - + Could not open device %1. Ni mogoče odpreti naprave %1. - + Could not open partition table. Ni mogoče odpreti razpredelnice razdelkov. @@ -977,37 +977,37 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. FillGlobalStorageJob - + Set partition information Nastavi informacije razdelka - + Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. - + Setting up mount points. @@ -1038,17 +1038,17 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. FinishedViewStep - + Finish - + Installation Complete - + The installation of %1 is complete. @@ -1129,12 +1129,12 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. KeyboardPage - + Set keyboard model to %1.<br/> Nastavi model tipkovnice na %1.<br/> - + Set keyboard layout to %1/%2. Nastavi razporeditev tipkovnice na %1/%2. @@ -1296,7 +1296,7 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. Nalaganje podatkov položaja ... - + Location Položaj @@ -1339,13 +1339,13 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. Velikosti logičnih sektorjev v viru in cilju za kopiranje niso enake. To trenutno ni podprto. - + Source and target for copying do not overlap: Rollback is not required. Vir in cilj za kopiranje se ne prekrivata: razveljavitev ni potrebna. - - + + Could not open device %1 to rollback copying. Ni mogoče odpreti naprave %1 za razveljavitev kopiranja. @@ -1353,17 +1353,18 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1467,42 +1468,42 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1702,22 +1703,22 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. Privzeto - + unknown - + extended - + unformatted - + swap @@ -1805,57 +1806,57 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. RequirementsChecker - + Gathering system information... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. - + is connected to the Internet - + The system is not connected to the Internet. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1910,12 +1911,12 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -2094,42 +2095,42 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. SetPasswordJob - + Set password for user %1 - + Setting password for user %1. - + Bad destination system path. - + rootMountPoint is %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. - + usermod terminated with error code %1. @@ -2175,7 +2176,7 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. SummaryPage - + This is an overview of what will happen once you start the install procedure. @@ -2191,41 +2192,51 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users diff --git a/lang/calamares_sr.ts b/lang/calamares_sr.ts index b0c88e99b..cef3918f3 100644 --- a/lang/calamares_sr.ts +++ b/lang/calamares_sr.ts @@ -232,13 +232,13 @@ Output: - + &Cancel &Откажи - + Cancel installation without changing the system. @@ -265,47 +265,47 @@ The installer will quit and all changes will be lost. - + &Close - + Continue with setup? Наставити са подешавањем? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now &Инсталирај сада - + Go &back Иди &назад - + &Done - + The installation is complete. Close the installer. - + Error Грешка - + Installation Failed Инсталација није успела @@ -405,12 +405,12 @@ The installer will quit and all changes will be lost. <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. @@ -421,83 +421,83 @@ 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. - - - - + + + + <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. @@ -619,42 +619,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. Инсталација није успела да направи партицију на диску '%1'. - + Could not open device '%1'. Није могуће отворити уређај '%1'. - + Could not open partition table. Није могуће отворити табелу партиција - + The installer failed to create file system on partition %1. Инсталација није успела да направи фајл систем на партицији %1. - + The installer failed to update partition table on disk '%1'. Инсталација није успела да ажурира табелу партиција на диску '%1'. @@ -690,27 +690,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. Инсталација није успела да направи табелу партиција на %1. - + Could not open device %1. Није могуће отворити уређај %1. @@ -753,32 +753,32 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. Није могуће направити корисника %1. - + useradd terminated with error code %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -786,37 +786,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. - + Delete partition <strong>%1</strong>. - + Deleting partition %1. - + The installer failed to delete partition %1. - + Partition (%1) and device (%2) do not match. - + Could not open device %1. - + Could not open partition table. @@ -977,37 +977,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information - + Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. - + Setting up mount points. @@ -1038,17 +1038,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish Заврши - + Installation Complete - + The installation of %1 is complete. @@ -1129,12 +1129,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> - + Set keyboard layout to %1/%2. @@ -1296,7 +1296,7 @@ The installer will quit and all changes will be lost. - + Location Локација @@ -1339,13 +1339,13 @@ The installer will quit and all changes will be lost. - + Source and target for copying do not overlap: Rollback is not required. - - + + Could not open device %1 to rollback copying. @@ -1353,17 +1353,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name Назив - + Description Опис - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1467,42 +1468,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1702,22 +1703,22 @@ The installer will quit and all changes will be lost. подразумевано - + unknown непознато - + extended проширена - + unformatted неформатирана - + swap @@ -1805,57 +1806,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. - + is connected to the Internet - + The system is not connected to the Internet. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1910,12 +1911,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... - + Partitioning Партиционисање @@ -2094,42 +2095,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 - + Setting password for user %1. - + Bad destination system path. - + rootMountPoint is %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. - + usermod terminated with error code %1. @@ -2175,7 +2176,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. @@ -2191,41 +2192,51 @@ The installer will quit and all changes will be lost. 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! Лозинке се не поклапају! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Корисници diff --git a/lang/calamares_sr@latin.ts b/lang/calamares_sr@latin.ts index 5d39c973e..285bf6e52 100644 --- a/lang/calamares_sr@latin.ts +++ b/lang/calamares_sr@latin.ts @@ -232,13 +232,13 @@ Povratna poruka: - + &Cancel &Prekini - + Cancel installation without changing the system. @@ -265,47 +265,47 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. - + &Close - + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error Greška - + Installation Failed Neuspješna instalacija @@ -405,12 +405,12 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -421,83 +421,83 @@ 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. - - - - + + + + <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. @@ -619,42 +619,42 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. Instaler nije uspeo napraviti particiju na disku '%1'. - + Could not open device '%1'. Nemoguće otvoriti uređaj '%1'. - + Could not open partition table. Nemoguće otvoriti tabelu particija. - + The installer failed to create file system on partition %1. Instaler ne može napraviti fajl sistem na particiji %1. - + The installer failed to update partition table on disk '%1'. Instaler ne može promjeniti tabelu particija na disku '%1'. @@ -690,27 +690,27 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. CreatePartitionTableJob - + Create new %1 partition table on %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. Instaler nije uspjeo da napravi tabelu particija na %1. - + Could not open device %1. Nemoguće otvoriti uređaj %1. @@ -753,32 +753,32 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. Nemoguće otvoriti groups fajl - + Cannot create user %1. Nemoguće napraviti korisnika %1. - + useradd terminated with error code %1. Komanda useradd prekinuta sa kodom greške %1 - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. Nemoguće postaviti vlasništvo nad početnim direktorijumom za korisnika %1. - + chown terminated with error code %1. Komanda chown prekinuta sa kodom greške %1. @@ -786,37 +786,37 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. DeletePartitionJob - + Delete partition %1. - + Delete partition <strong>%1</strong>. - + Deleting partition %1. - + The installer failed to delete partition %1. Instaler nije uspjeo obrisati particiju %1. - + Partition (%1) and device (%2) do not match. Particija (%1) i uređaj (%2) se ne slažu. - + Could not open device %1. Nemoguće otvoriti uređaj %1. - + Could not open partition table. Nemoguće otvoriti tabelu particija. @@ -977,37 +977,37 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. FillGlobalStorageJob - + Set partition information - + Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. - + Setting up mount points. @@ -1038,17 +1038,17 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. FinishedViewStep - + Finish - + Installation Complete - + The installation of %1 is complete. @@ -1129,12 +1129,12 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. KeyboardPage - + Set keyboard model to %1.<br/> - + Set keyboard layout to %1/%2. @@ -1296,7 +1296,7 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. Očitavam podatke o lokaciji... - + Location Lokacija @@ -1339,13 +1339,13 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. - + Source and target for copying do not overlap: Rollback is not required. - - + + Could not open device %1 to rollback copying. @@ -1353,17 +1353,18 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1467,42 +1468,42 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1702,22 +1703,22 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. - + unknown - + extended - + unformatted - + swap @@ -1805,57 +1806,57 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. RequirementsChecker - + Gathering system information... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. - + is connected to the Internet - + The system is not connected to the Internet. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1910,12 +1911,12 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -2094,42 +2095,42 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. SetPasswordJob - + Set password for user %1 - + Setting password for user %1. - + Bad destination system path. - + rootMountPoint is %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. - + usermod terminated with error code %1. @@ -2175,7 +2176,7 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. SummaryPage - + This is an overview of what will happen once you start the install procedure. @@ -2191,41 +2192,51 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. 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 + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Korisnici diff --git a/lang/calamares_sv.ts b/lang/calamares_sv.ts index eabe4119b..c5536cb35 100644 --- a/lang/calamares_sv.ts +++ b/lang/calamares_sv.ts @@ -232,13 +232,13 @@ Utdata: - + &Cancel Avbryt - + Cancel installation without changing the system. @@ -265,47 +265,47 @@ Alla ändringar kommer att gå förlorade. - + &Close - + Continue with setup? Fortsätt med installation? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> %1-installeraren är på väg att göra ändringar för att installera %2.<br/><strong>Du kommer inte att kunna ångra dessa ändringar!strong> - + &Install now &Installera nu - + Go &back Gå &bakåt - + &Done - + The installation is complete. Close the installer. - + Error Fel - + Installation Failed Installationen misslyckades @@ -405,12 +405,12 @@ Alla ändringar kommer att gå förlorade. <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. @@ -421,83 +421,83 @@ 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. - - - - + + + + <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. @@ -619,42 +619,42 @@ Alla ändringar kommer att gå förlorade. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. Skapa ny %2MB partition på %4 (%3) med filsystem %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Skapa ny <strong>%2MB</strong> partition på <strong>%4 (%3)</strong> med filsystem <strong>%1</strong>. - + Creating new %1 partition on %2. Skapar ny %1 partition på %2. - + The installer failed to create partition on disk '%1'. Installationsprogrammet kunde inte skapa partition på disk '%1'. - + Could not open device '%1'. Kunde inte öppna enhet '%1'. - + Could not open partition table. Kunde inte öppna partitionstabell. - + The installer failed to create file system on partition %1. Installationsprogrammet kunde inte skapa filsystem på partition %1. - + The installer failed to update partition table on disk '%1'. Installationsprogrammet kunde inte uppdatera partitionstabell på disk '%1'. @@ -690,27 +690,27 @@ Alla ändringar kommer att gå förlorade. CreatePartitionTableJob - + Create new %1 partition table on %2. Skapa ny %1 partitionstabell på %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Skapa ny <strong>%1</strong> partitionstabell på <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Skapar ny %1 partitionstabell på %2. - + The installer failed to create a partition table on %1. Installationsprogrammet kunde inte skapa en partitionstabell på %1. - + Could not open device %1. Kunde inte öppna enhet %1. @@ -753,32 +753,32 @@ Alla ändringar kommer att gå förlorade. Kunde inte öppna gruppfilen för läsning. - + Cannot create user %1. Kunde inte skapa användaren %1. - + useradd terminated with error code %1. useradd stoppades med felkod %1. - + Cannot add user %1 to groups: %2. Kan inte lägga till användare %1 till grupper: %2. - + usermod terminated with error code %1. usermod avslutade med felkod %1. - + Cannot set home directory ownership for user %1. Kunde inte ge användaren %1 äganderätt till sin hemkatalog. - + chown terminated with error code %1. chown stoppades med felkod %1. @@ -786,37 +786,37 @@ Alla ändringar kommer att gå förlorade. DeletePartitionJob - + Delete partition %1. Ta bort partition %1. - + Delete partition <strong>%1</strong>. Ta bort partition <strong>%1</strong>. - + Deleting partition %1. Tar bort partition %1. - + The installer failed to delete partition %1. Installationsprogrammet kunde inte ta bort partition %1. - + Partition (%1) and device (%2) do not match. Partition (%1) och enhet (%2) matchar inte. - + Could not open device %1. Kunde inte öppna enhet %1. - + Could not open partition table. Kunde inte öppna partitionstabell. @@ -977,37 +977,37 @@ Alla ändringar kommer att gå förlorade. FillGlobalStorageJob - + Set partition information Ange partitionsinformation - + Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Installera uppstartshanterare på <strong>%1</strong>. - + Setting up mount points. Ställer in monteringspunkter. @@ -1038,17 +1038,17 @@ Alla ändringar kommer att gå förlorade. FinishedViewStep - + Finish Slutför - + Installation Complete - + The installation of %1 is complete. @@ -1129,12 +1129,12 @@ Alla ändringar kommer att gå förlorade. KeyboardPage - + Set keyboard model to %1.<br/> Sätt tangenbordsmodell till %1.<br/> - + Set keyboard layout to %1/%2. Sätt tangentbordslayout till %1/%2. @@ -1162,12 +1162,12 @@ Alla ändringar kommer att gå förlorade. &Cancel - + &Avsluta &OK - + &Okej @@ -1185,17 +1185,17 @@ Alla ändringar kommer att gå förlorade. <h1>License Agreement</h1>This setup procedure will install proprietary software that is subject to licensing terms. - + <h1>Licensavtal</h1>Denna installationsprocedur kommer att installera proprietär mjukvara som omfattas av licensvillkor. Please review the End User License Agreements (EULAs) above.<br/>If you do not agree with the terms, the setup procedure cannot continue. - + Läs igenom End User Agreements (EULA:s) ovan.<br/>Om du inte accepterar villkoren kan inte installationsproceduren fortsätta. <h1>License Agreement</h1>This setup procedure can install proprietary software that is subject to licensing terms in order to provide additional features and enhance the user experience. - + <h1>Licensavtal</h1>Denna installationsprocedur kan installera proprietär mjukvara som omfattas av licensvillkor för att tillhandahålla ytterligare funktioner och förbättra användarupplevelsen. @@ -1253,7 +1253,7 @@ Alla ändringar kommer att gå förlorade. The system language will be set to %1. - + Systemspråket kommer ändras till %1. @@ -1285,7 +1285,7 @@ Alla ändringar kommer att gå förlorade. %1 (%2) Language (Country) - + %1 (%2) @@ -1296,7 +1296,7 @@ Alla ändringar kommer att gå förlorade. Laddar platsdata... - + Location Plats @@ -1339,13 +1339,13 @@ Alla ändringar kommer att gå förlorade. De logiska sektorstorlekarna i källan och målet för kopiering är inte den samma. Det finns just nu inget stöd för detta. - + Source and target for copying do not overlap: Rollback is not required. Källa och mål för kopiering överlappar inte: Ingen återställning krävs. - - + + Could not open device %1 to rollback copying. Kunde inte öppna enhet %1 för återställning av kopiering. @@ -1353,19 +1353,20 @@ Alla ändringar kommer att gå förlorade. NetInstallPage - + Name - + Namn - + Description - + Beskrivning - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) - + Nätverksinstallation. (Inaktiverad: Kan inte hämta paketlistor, kontrollera nätverksanslutningen) @@ -1373,7 +1374,7 @@ Alla ändringar kommer att gå förlorade. Package selection - + Paketval @@ -1467,42 +1468,42 @@ Alla ändringar kommer att gå förlorade. PartitionLabelsView - + Root Root - + Home Hem - + Boot Boot - + EFI system EFI-system - + Swap Swap - + New partition for %1 Ny partition för %1 - + New partition - + Ny partition - + %1 %2 %1 %2 @@ -1702,22 +1703,22 @@ Alla ändringar kommer att gå förlorade. Standard - + unknown okänd - + extended utökad - + unformatted oformaterad - + swap @@ -1805,59 +1806,59 @@ Alla ändringar kommer att gå förlorade. RequirementsChecker - + Gathering system information... Samlar systeminformation... - + has at least %1 GB available drive space har minst %1 GB tillgängligt utrymme på hårddisken - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory har minst %1 GB arbetsminne - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source är ansluten till en strömkälla - + The system is not plugged in to a power source. Systemet är inte anslutet till någon strömkälla. - + is connected to the Internet är ansluten till internet - + The system is not connected to the Internet. Systemet är inte anslutet till internet. - + The installer is not running with administrator rights. Installationsprogammet körs inte med administratörsrättigheter. - + The screen is too small to display the installer. - + Skärmen är för liten för att visa installationshanteraren. @@ -1910,12 +1911,12 @@ Alla ändringar kommer att gå förlorade. ScanningDialog - + Scanning storage devices... Skannar lagringsenheter... - + Partitioning Partitionering @@ -2094,42 +2095,42 @@ Alla ändringar kommer att gå förlorade. SetPasswordJob - + Set password for user %1 Ange lösenord för användare %1 - + Setting password for user %1. Ställer in lösenord för användaren %1. - + Bad destination system path. Ogiltig systemsökväg till målet. - + rootMountPoint is %1 rootMonteringspunkt är %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. Kan inte ställa in lösenord för användare %1. - + usermod terminated with error code %1. usermod avslutade med felkod %1. @@ -2175,7 +2176,7 @@ Alla ändringar kommer att gå förlorade. SummaryPage - + This is an overview of what will happen once you start the install procedure. Detta är en överblick av vad som kommer att ske när du startar installationsprocessen. @@ -2191,41 +2192,51 @@ Alla ändringar kommer att gå förlorade. 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Användare diff --git a/lang/calamares_th.ts b/lang/calamares_th.ts index 5c2f1a55a..e5016873e 100644 --- a/lang/calamares_th.ts +++ b/lang/calamares_th.ts @@ -232,13 +232,13 @@ Output: - + &Cancel &C ยกเลิก - + Cancel installation without changing the system. @@ -265,47 +265,47 @@ The installer will quit and all changes will be lost. - + &Close - + Continue with setup? ดำเนินการติดตั้งต่อหรือไม่? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> ตัวติดตั้ง %1 กำลังพยายามที่จะทำการเปลี่ยนแปลงในดิสก์ของคุณเพื่อติดตั้ง %2<br/><strong>คุณจะไม่สามารถยกเลิกการเปลี่ยนแปลงเหล่านี้ได้</strong> - + &Install now &ติดตั้งตอนนี้ - + Go &back กลั&บไป - + &Done - + The installation is complete. Close the installer. - + Error ข้อผิดพลาด - + Installation Failed การติดตั้งล้มเหลว @@ -405,12 +405,12 @@ The installer will quit and all changes will be lost. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -421,83 +421,83 @@ 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. - - - - + + + + <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. @@ -619,42 +619,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. ตัวติดตั้งไม่สามารถสร้างพาร์ทิชันบนดิสก์ '%1' - + Could not open device '%1'. ไม่สามารถเปิดอุปกรณ์ '%1' - + Could not open partition table. ไม่สามารถเปิดตารางพาร์ทิชัน - + The installer failed to create file system on partition %1. ตัวติดตั้งไม่สามารถสร้างระบบไฟล์บนพาร์ทิชัน %1 - + The installer failed to update partition table on disk '%1'. ตัวติดตั้งไม่สามารถอัพเดทตารางพาร์ทิชันบนดิสก์ '%1' @@ -690,27 +690,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. ตัวติดตั้งไม่สามารถสร้างตารางพาร์ทิชันบน %1 - + Could not open device %1. ไม่สามารถเปิดอุปกรณ์ %1 @@ -753,32 +753,32 @@ The installer will quit and all changes will be lost. ไม่สามารถเปิดไฟล์ groups เพื่ออ่านได้ - + Cannot create user %1. ไม่สามารถสร้างผู้ใช้ %1 - + useradd terminated with error code %1. useradd จบด้วยโค้ดข้อผิดพลาด %1 - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. ไม่สามารถตั้งค่าความเป็นเจ้าของไดเรคทอรี home สำหรับผู้ใช้ %1 - + chown terminated with error code %1. chown จบด้วยโค้ดข้อผิดพลาด %1 @@ -786,37 +786,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. - + Delete partition <strong>%1</strong>. - + Deleting partition %1. - + The installer failed to delete partition %1. ตัวติดตั้งไม่สามารถลบพาร์ทิชัน %1 - + Partition (%1) and device (%2) do not match. พาร์ทิชัน (%1) ไม่ตรงกับอุปกรณ์ (%2) - + Could not open device %1. ไม่สามารถเปิดอุปกรณ์ %1 - + Could not open partition table. ไม่สามารถเปิดตารางพาร์ทิชัน @@ -977,37 +977,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information ตั้งค่าข้อมูลพาร์ทิชัน - + Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. - + Setting up mount points. @@ -1038,17 +1038,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish - + Installation Complete - + The installation of %1 is complete. @@ -1129,12 +1129,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> ตั้งค่าโมเดลแป้นพิมพ์เป็น %1<br/> - + Set keyboard layout to %1/%2. ตั้งค่าแบบแป้นพิมพ์เป็น %1/%2 @@ -1296,7 +1296,7 @@ The installer will quit and all changes will be lost. กำลังโหลดข้อมูลตำแหน่ง... - + Location ตำแหน่ง @@ -1339,13 +1339,13 @@ The installer will quit and all changes will be lost. ในขณะนี้ไม่สนับสนุนการคัดลอกที่ขนาด logical sector ในต้นทางและเป้าหมายไม่เหมือนกัน - + Source and target for copying do not overlap: Rollback is not required. ต้นทางและเป้าหมายสำหรับการคัดลอกไม่ซ้อนทับกัน ไม่จำเป็นต้องใช้การย้อนกลับการคัดลอก - - + + Could not open device %1 to rollback copying. ไม่สามารถเปิดอุปกรณ์ %1 เพื่อย้อนกลับการคัดลอก @@ -1353,17 +1353,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1467,42 +1468,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1702,22 +1703,22 @@ The installer will quit and all changes will be lost. ค่าเริ่มต้น - + unknown - + extended - + unformatted - + swap @@ -1805,57 +1806,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. - + is connected to the Internet - + The system is not connected to the Internet. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1910,12 +1911,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -2094,42 +2095,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 ตั้งรหัสผ่านสำหรับผู้ใช้ %1 - + Setting password for user %1. - + Bad destination system path. path ของระบบเป้าหมายไม่ถูกต้อง - + rootMountPoint is %1 rootMountPoint คือ %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. ไม่สามารถตั้งค่ารหัสผ่านสำหรับผู้ใช้ %1 - + usermod terminated with error code %1. usermod จบด้วยโค้ดข้อผิดพลาด %1 @@ -2175,7 +2176,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. @@ -2191,41 +2192,51 @@ The installer will quit and all changes will be lost. 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! รหัสผ่านของคุณไม่ตรงกัน! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users ผู้ใช้ diff --git a/lang/calamares_tr_TR.ts b/lang/calamares_tr_TR.ts index ba9335279..a378d0b6e 100644 --- a/lang/calamares_tr_TR.ts +++ b/lang/calamares_tr_TR.ts @@ -232,13 +232,13 @@ Output: - + &Cancel &Vazgeç - + Cancel installation without changing the system. Sistemi değiştirmeden kurulumu iptal edin. @@ -265,47 +265,47 @@ Yükleyiciden çıkınca tüm değişiklikler kaybedilecek. &Hayır - + &Close &Kapat - + Continue with setup? Kuruluma devam et? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> %1 sistem yükleyici %2 yüklemek için diskinizde değişiklik yapacak.<br/><strong>Bu değişiklikleri geri almak mümkün olmayacak.</strong> - + &Install now &Şimdi yükle - + Go &back Geri &git - + &Done &Tamam - + The installation is complete. Close the installer. Yükleme işi tamamlandı. Sistem yükleyiciyi kapatın. - + Error Hata - + Installation Failed Kurulum Başarısız @@ -407,12 +407,12 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.<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. @@ -423,84 +423,84 @@ 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. - - - - + + + + <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. @@ -622,42 +622,42 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. %4 üzerinde (%3) ile %1 dosya sisteminde %2MB bölüm oluştur. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. <strong>%4</strong> üzerinde (%3) ile <strong>%1</strong> dosya sisteminde <strong>%2MB</strong> bölüm oluştur. - + Creating new %1 partition on %2. %2 üzerinde %1 yeni disk bölümü oluştur. - + The installer failed to create partition on disk '%1'. Yükleyici '%1' diski üzerinde yeni bölüm oluşturamadı. - + Could not open device '%1'. '%1' aygıtı açılamadı. - + Could not open partition table. Bölümleme tablosu açılamadı - + The installer failed to create file system on partition %1. Yükleyici %1 bölümünde dosya sistemi oluşturamadı. - + The installer failed to update partition table on disk '%1'. Yükleyici '%1' diskinde bölümleme tablosunu güncelleyemedi. @@ -693,27 +693,27 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir. CreatePartitionTableJob - + Create new %1 partition table on %2. %2 üzerinde %1 yeni disk tablosu oluştur. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). <strong>%2</strong> (%3) üzerinde <strong>%1</strong> yeni disk tablosu oluştur. - + Creating new %1 partition table on %2. %2 üzerinde %1 yeni disk tablosu oluştur. - + The installer failed to create a partition table on %1. Yükleyici %1 üzerinde yeni bir bölüm tablosu oluşturamadı. - + Could not open device %1. %1 aygıtı açılamadı. @@ -756,32 +756,32 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.groups dosyası okunamadı. - + Cannot create user %1. %1 Kullanıcısı oluşturulamadı... - + useradd terminated with error code %1. useradd komutu şu hata ile çöktü %1. - + Cannot add user %1 to groups: %2. %1 Kullanıcısı şu gruba eklenemedi: %2. - + usermod terminated with error code %1. usermod %1 hata koduyla çöktü. - + Cannot set home directory ownership for user %1. %1 Kullanıcısı için ev dizini sahipliği ayarlanamadı. - + chown terminated with error code %1. chown %1 hata koduyla sonlandırıldı. @@ -789,37 +789,37 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir. DeletePartitionJob - + Delete partition %1. %1 disk bölümünü sil. - + Delete partition <strong>%1</strong>. <strong>%1</strong> disk bölümünü sil. - + Deleting partition %1. %1 disk bölümü siliniyor. - + The installer failed to delete partition %1. Yükleyici %1 bölümünü silemedi. - + Partition (%1) and device (%2) do not match. Bölüm (%1) ve aygıt (%2) eşleşmedi. - + Could not open device %1. %1 aygıtı açılamadı. - + Could not open partition table. Bölüm tablosu açılamadı. @@ -980,37 +980,37 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir. FillGlobalStorageJob - + Set partition information Bölüm bilgilendirmesini ayarla - + Install %1 on <strong>new</strong> %2 system partition. %2 <strong>yeni</strong> sistem diskine %1 yükle. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. %2 <strong>yeni</strong> disk bölümünü <strong>%1</strong> ile ayarlayıp bağla. - + Install %2 on %3 system partition <strong>%1</strong>. %3 <strong>%1</strong> sistem diskine %2 yükle. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. %3 diskine<strong>%1</strong> ile <strong>%2</strong> bağlama noktası ayarla. - + Install boot loader on <strong>%1</strong>. <strong>%1</strong> üzerine sistem ön yükleyiciyi kur. - + Setting up mount points. Bağlama noktalarını ayarla. @@ -1041,17 +1041,17 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir. FinishedViewStep - + Finish Kurulum Tamam - + Installation Complete Kurulum Tamamlandı - + The installation of %1 is complete. Kurulum %1 oranında tamamlandı. @@ -1132,12 +1132,12 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir. KeyboardPage - + Set keyboard model to %1.<br/> %1 Klavye düzeni olarak seçildi.<br/> - + Set keyboard layout to %1/%2. Alt klavye türevi olarak %1/%2 seçildi. @@ -1299,7 +1299,7 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.Yerel verileri yükleniyor... - + Location Sistem Yereli @@ -1342,13 +1342,13 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.Kaynak ve hedefin mantıksal sektör boyutu kopyalama için aynı değil. Bu şu anda desteklenmiyor. - + Source and target for copying do not overlap: Rollback is not required. Kopyalamak için kaynak ve hedef eşleşmedi: Değişiklikler geri alınamadı. - - + + Could not open device %1 to rollback copying. %1 kopyalanıp geri alınırken aygıt açılamadı. @@ -1356,17 +1356,18 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir. NetInstallPage - + Name İsim - + Description Açıklama - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) Ağ Üzerinden Kurulum. (Devre Dışı: Paket listeleri alınamıyor, ağ bağlantısını kontrol ediniz) @@ -1470,42 +1471,42 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir. PartitionLabelsView - + Root Root - + Home Home - + Boot Boot - + EFI system EFI sistem - + Swap Swap-Takas - + New partition for %1 %1 için yeni disk bölümü - + New partition Yeni disk bölümü - + %1 %2 %1 %2 @@ -1706,22 +1707,22 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.Varsayılan - + unknown bilinmeyen - + extended uzatılmış - + unformatted biçimlenmemiş - + swap Swap-Takas @@ -1809,58 +1810,58 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir. RequirementsChecker - + Gathering system information... Sistem bilgileri toplanıyor... - + has at least %1 GB available drive space En az %1 GB disk alanı olduğundan... - + There is not enough drive space. At least %1 GB is required. Yeterli disk alanı mevcut değil. En az %1 GB disk alanı gereklidir. - + has at least %1 GB working memory En az %1 GB bellek bulunduğundan... - + The system does not have enough working memory. At least %1 GB is required. Yeterli ram bellek gereksinimi karşılanamıyor. En az %1 GB ram bellek gereklidir. - + is plugged in to a power source Bir güç kaynağına takılı olduğundan... - + The system is not plugged in to a power source. Sistem güç kaynağına bağlı değil. - + is connected to the Internet İnternete bağlı olduğundan... - + The system is not connected to the Internet. Sistem internete bağlı değil. - + The installer is not running with administrator rights. Sistem yükleyici yönetici haklarına sahip olmadan çalışmıyor. - + The screen is too small to display the installer. Ekran, sistem yükleyiciyi görüntülemek için çok küçük. @@ -1915,12 +1916,12 @@ Sistem güç kaynağına bağlı değil. ScanningDialog - + Scanning storage devices... Depolama aygıtları taranıyor... - + Partitioning Bölümleme @@ -2099,42 +2100,42 @@ Sistem güç kaynağına bağlı değil. SetPasswordJob - + Set password for user %1 %1 Kullanıcı için parola ayarla - + Setting password for user %1. %1 Kullanıcısı için parola ayarlanıyor. - + Bad destination system path. Hedef sistem yolu bozuk. - + rootMountPoint is %1 rootBağlamaNoktası %1 - + Cannot disable root account. root hesap devre dışı bırakılamaz. - + passwd terminated with error code %1. passwd %1 hata kodu ile sonlandı. - + Cannot set password for user %1. %1 Kullanıcısı için parola ayarlanamadı. - + usermod terminated with error code %1. usermod %1 hata koduyla çöktü. @@ -2180,7 +2181,7 @@ Sistem güç kaynağına bağlı değil. SummaryPage - + This is an overview of what will happen once you start the install procedure. Yükleme işlemleri başladıktan sonra yapılacak işlere genel bir bakış. @@ -2196,41 +2197,51 @@ 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! + + + Password is too short + Şifre çok kısa + + + + Password is too long + Şifre çok uzun + UsersViewStep - + Users Kullanıcı Tercihleri diff --git a/lang/calamares_uk.ts b/lang/calamares_uk.ts index a67caae8a..47d83f316 100644 --- a/lang/calamares_uk.ts +++ b/lang/calamares_uk.ts @@ -4,17 +4,17 @@ 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, якщо запущені у режимі сумісності. This system was started with an <strong>EFI</strong> boot environment.<br><br>To configure startup from an EFI environment, this installer must deploy a boot loader application, like <strong>GRUB</strong> or <strong>systemd-boot</strong> on an <strong>EFI System Partition</strong>. This is automatic, unless you choose manual partitioning, in which case you must choose it or create it on your own. - + Цю систему було запущено із завантажувальним середовищем <strong>EFI</strong>.<br><br>Щоб налаштувати завантаження з середовища EFI, установник повинен встановити на <strong>Системний Розділ EFI</strong> програму-завантажувач таку, як <strong>GRUB</strong> або <strong>systemd-boot</strong>. Це буде зроблено автоматично, якщо ви не обрали розподілення диску вручну. В останньому випадку вам потрібно обрати завантажувач або встановити його власноруч. This system was started with a <strong>BIOS</strong> boot environment.<br><br>To configure startup from a BIOS environment, this installer must install a boot loader, like <strong>GRUB</strong>, either at the beginning of a partition or on the <strong>Master Boot Record</strong> near the beginning of the partition table (preferred). This is automatic, unless you choose manual partitioning, in which case you must set it up on your own. - + Цю систему було запущено із завантажувальним середовищем <strong>BIOS</strong>.<br><br>Щоб налаштувати завантаження з середовища BIOS, установник повинен встановити завантажувач, такий, як <strong>GRUB</strong> або на початку розділу або у <strong>Головний Завантажувальний Запис (Master Boot Record)</strong> біля початку таблиці розділів (рекомендовано). Це буде зроблено автотматично, якщо ви не обрали розподілення диску вручну. В останньому випадку вам потрібно встановити завантажувач власноруч. @@ -22,7 +22,7 @@ Master Boot Record of %1 - + Головний Завантажувальний Запис (Master Boot Record) %1 @@ -37,12 +37,12 @@ Do not install a boot loader - + Не встановлювати завантажувач %1 (%2) - + %1 (%2) @@ -50,48 +50,48 @@ Form - + Форма GlobalStorage - + Глобальне сховище JobQueue - + Черга завдань Modules - + Модулі Type: - + Тип: none - + немає Interface: - + Інтерфейс: Tools - + Інструменти Debug information - + Відлагоджувальна інформація @@ -99,7 +99,7 @@ Install - + Встановити @@ -115,68 +115,74 @@ Run command %1 %2 - + Запустити команду %1 %2 Running command %1 %2 - + Запуск команди %1 %2 External command crashed - + Зовнішня команда завершилася аварією Command %1 crashed. Output: %2 - + Команда %1 завершилася аварією. +Вивід: +%2 External command failed to start - + Не вдалося запустити зовнішню команду Command %1 failed to start. - + Не вдалося запустити команду %1. Internal error when starting command - + Внутрішня помилка під час запуску команди Bad parameters for process job call. - + Неправильні параметри визову завдання обробки. External command failed to finish - + Не вдалося завершити зовнішню команду Command %1 failed to finish in %2s. Output: %3 - + Не вдалося завершити зовнішню команду %1 протягом %2с. +Вивід: +%3 External command finished with errors - + Зовнішня програма завершилася з помилками Command %1 finished with exit code %2. Output: %3 - + Команда %1 завершилася з кодом %2. +Вивід: +%3 @@ -184,32 +190,32 @@ Output: Running %1 operation. - + Запуск операції %1. Bad working directory path - + Неправильний шлях робочого каталогу Working directory %1 for python job %2 is not readable. - + Неможливо прочитати робочу директорію %1 для завдання python %2. Bad main script file - + Неправильний файл головного сценарію Main script file %1 for python job %2 is not readable. - + Неможливо прочитати файл головного сценарію %1 для завдання python %2. Boost.Python error in job "%1". - + Помилка Boost.Python у завданні "%1". @@ -217,90 +223,91 @@ Output: &Back - + &Назад &Next - + &Вперед - + &Cancel - + &Скасувати - + Cancel installation without changing the system. - + Скасувати встановлення без змінення системи. Cancel installation? - + Скасувати встановлення? Do you really want to cancel the current install process? The installer will quit and all changes will be lost. - + Чи ви насправді бажаєте скасувати процес встановлення? +Установник закриється і всі зміни буде втрачено. &Yes - + &Так &No - - - - - &Close - - - - - Continue with setup? - - - - - The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - - - - - &Install now - - - - - Go &back - - - - - &Done - - - - - The installation is complete. Close the installer. - + &Ні - Error - + &Close + &Закрити - + + Continue with setup? + Продовжити встановлення? + + + + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> + Установник %1 збирається зробити зміни на вашому диску, щоб встановити %2.<br/><strong>Ці зміни неможливо буде повернути.</strong> + + + + &Install now + &Встановити зараз + + + + Go &back + Перейти &назад + + + + &Done + &Закінчити + + + + The installation is complete. Close the installer. + Встановлення виконано. Закрити установник. + + + + Error + Помилка + + + Installation Failed - + Втановлення завершилося невдачею @@ -308,22 +315,22 @@ The installer will quit and all changes will be lost. Unknown exception type - + Невідомий тип виключної ситуації unparseable Python error - + нерозбірлива помилка Python unparseable Python traceback - + нерозбірливе відстеження помилки Python Unfetchable Python error. - + Помилка Python, інформацію про яку неможливо отримати. @@ -336,7 +343,7 @@ The installer will quit and all changes will be lost. Show debug information - + Показати відлагоджувальну інформацію @@ -344,12 +351,12 @@ The installer will quit and all changes will be lost. Checking file system on partition %1. - + Перевірка файлової системи на розділі %1. The file system check on partition %1 failed. - + Перевірка файлової системи на розділі %1 завершилася невдачею. @@ -398,12 +405,12 @@ The installer will quit and all changes will be lost. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -414,83 +421,83 @@ 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. - - - - + + + + <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. @@ -612,42 +619,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. - + Could not open device '%1'. - + Could not open partition table. - + The installer failed to create file system on partition %1. - + The installer failed to update partition table on disk '%1'. @@ -683,27 +690,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. - + Could not open device %1. @@ -746,32 +753,32 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -779,37 +786,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. - + Delete partition <strong>%1</strong>. - + Deleting partition %1. - + The installer failed to delete partition %1. - + Partition (%1) and device (%2) do not match. - + Could not open device %1. - + Could not open partition table. @@ -970,37 +977,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information - + Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. - + Setting up mount points. @@ -1031,17 +1038,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish - + Installation Complete - + The installation of %1 is complete. @@ -1122,12 +1129,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> - + Set keyboard layout to %1/%2. @@ -1289,7 +1296,7 @@ The installer will quit and all changes will be lost. - + Location @@ -1332,13 +1339,13 @@ The installer will quit and all changes will be lost. - + Source and target for copying do not overlap: Rollback is not required. - - + + Could not open device %1 to rollback copying. @@ -1346,17 +1353,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1460,42 +1468,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1695,22 +1703,22 @@ The installer will quit and all changes will be lost. - + unknown - + extended - + unformatted - + swap @@ -1798,57 +1806,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. - + is connected to the Internet - + The system is not connected to the Internet. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1903,12 +1911,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -2087,42 +2095,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 - + Setting password for user %1. - + Bad destination system path. - + rootMountPoint is %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. - + usermod terminated with error code %1. @@ -2168,7 +2176,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. @@ -2184,41 +2192,51 @@ The installer will quit and all changes will be lost. 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users Користувачі diff --git a/lang/calamares_ur.ts b/lang/calamares_ur.ts index 744e43ced..088aedd3d 100644 --- a/lang/calamares_ur.ts +++ b/lang/calamares_ur.ts @@ -226,13 +226,13 @@ Output: - + &Cancel - + Cancel installation without changing the system. @@ -258,47 +258,47 @@ The installer will quit and all changes will be lost. - + &Close - + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error - + Installation Failed @@ -398,12 +398,12 @@ The installer will quit and all changes will be lost. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -414,83 +414,83 @@ 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. - - - - + + + + <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. @@ -612,42 +612,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. - + Could not open device '%1'. - + Could not open partition table. - + The installer failed to create file system on partition %1. - + The installer failed to update partition table on disk '%1'. @@ -683,27 +683,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. - + Could not open device %1. @@ -746,32 +746,32 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -779,37 +779,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. - + Delete partition <strong>%1</strong>. - + Deleting partition %1. - + The installer failed to delete partition %1. - + Partition (%1) and device (%2) do not match. - + Could not open device %1. - + Could not open partition table. @@ -970,37 +970,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information - + Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. - + Setting up mount points. @@ -1031,17 +1031,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish - + Installation Complete - + The installation of %1 is complete. @@ -1122,12 +1122,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> - + Set keyboard layout to %1/%2. @@ -1289,7 +1289,7 @@ The installer will quit and all changes will be lost. - + Location @@ -1332,13 +1332,13 @@ The installer will quit and all changes will be lost. - + Source and target for copying do not overlap: Rollback is not required. - - + + Could not open device %1 to rollback copying. @@ -1346,17 +1346,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1460,42 +1461,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1695,22 +1696,22 @@ The installer will quit and all changes will be lost. - + unknown - + extended - + unformatted - + swap @@ -1798,57 +1799,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. - + is connected to the Internet - + The system is not connected to the Internet. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1903,12 +1904,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -2087,42 +2088,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 - + Setting password for user %1. - + Bad destination system path. - + rootMountPoint is %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. - + usermod terminated with error code %1. @@ -2168,7 +2169,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. @@ -2184,41 +2185,51 @@ The installer will quit and all changes will be lost. 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users diff --git a/lang/calamares_uz.ts b/lang/calamares_uz.ts index aa9eb1029..3bade2638 100644 --- a/lang/calamares_uz.ts +++ b/lang/calamares_uz.ts @@ -226,13 +226,13 @@ Output: - + &Cancel - + Cancel installation without changing the system. @@ -258,47 +258,47 @@ The installer will quit and all changes will be lost. - + &Close - + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error - + Installation Failed @@ -398,12 +398,12 @@ The installer will quit and all changes will be lost. - + Boot loader location: - + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. @@ -414,83 +414,83 @@ 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. - - - - + + + + <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. @@ -612,42 +612,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. - + Could not open device '%1'. - + Could not open partition table. - + The installer failed to create file system on partition %1. - + The installer failed to update partition table on disk '%1'. @@ -683,27 +683,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. - + The installer failed to create a partition table on %1. - + Could not open device %1. @@ -746,32 +746,32 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - + Cannot add user %1 to groups: %2. - + usermod terminated with error code %1. - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -779,37 +779,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. - + Delete partition <strong>%1</strong>. - + Deleting partition %1. - + The installer failed to delete partition %1. - + Partition (%1) and device (%2) do not match. - + Could not open device %1. - + Could not open partition table. @@ -970,37 +970,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information - + Install %1 on <strong>new</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. - + Setting up mount points. @@ -1031,17 +1031,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish - + Installation Complete - + The installation of %1 is complete. @@ -1122,12 +1122,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> - + Set keyboard layout to %1/%2. @@ -1289,7 +1289,7 @@ The installer will quit and all changes will be lost. - + Location @@ -1332,13 +1332,13 @@ The installer will quit and all changes will be lost. - + Source and target for copying do not overlap: Rollback is not required. - - + + Could not open device %1 to rollback copying. @@ -1346,17 +1346,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name - + Description - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1460,42 +1461,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root - + Home - + Boot - + EFI system - + Swap - + New partition for %1 - + New partition - + %1 %2 @@ -1695,22 +1696,22 @@ The installer will quit and all changes will be lost. - + unknown - + extended - + unformatted - + swap @@ -1798,57 +1799,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... - + has at least %1 GB available drive space - + There is not enough drive space. At least %1 GB is required. - + has at least %1 GB working memory - + The system does not have enough working memory. At least %1 GB is required. - + is plugged in to a power source - + The system is not plugged in to a power source. - + is connected to the Internet - + The system is not connected to the Internet. - + The installer is not running with administrator rights. - + The screen is too small to display the installer. @@ -1903,12 +1904,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... - + Partitioning @@ -2087,42 +2088,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 - + Setting password for user %1. - + Bad destination system path. - + rootMountPoint is %1 - + Cannot disable root account. - + passwd terminated with error code %1. - + Cannot set password for user %1. - + usermod terminated with error code %1. @@ -2168,7 +2169,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. @@ -2184,41 +2185,51 @@ The installer will quit and all changes will be lost. 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! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users diff --git a/lang/calamares_zh_CN.ts b/lang/calamares_zh_CN.ts index f2894938e..d2c55a151 100644 --- a/lang/calamares_zh_CN.ts +++ b/lang/calamares_zh_CN.ts @@ -233,13 +233,13 @@ Output: - + &Cancel 取消(&C) - + Cancel installation without changing the system. 取消安装,并不做任何更改。 @@ -266,47 +266,47 @@ The installer will quit and all changes will be lost. &否 - + &Close &关闭 - + Continue with setup? 要继续安装吗? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> %1 安装程序将在您的磁盘上做出变更以安装 %2。<br/><strong>您将无法复原这些变更。</strong> - + &Install now 现在安装 (&I) - + Go &back 返回 (&B) - + &Done &完成 - + The installation is complete. Close the installer. 安装过程已完毕。请关闭安装器。 - + Error 错误 - + Installation Failed 安装失败 @@ -406,12 +406,12 @@ The installer will quit and all changes will be lost. <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 的新分区。 @@ -422,83 +422,83 @@ 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/>在任何变更应用到存储器上前,您都可以重新查看并确认您的选择。 - - - - + + + + <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/>在任何变更应用到存储器上前,您都可以重新查看并确认您的选择。 @@ -620,42 +620,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. 在 %4 (%3) 上创建新的 %2MB 分区,使用 %1 文件系统。 - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. 文件系统在 <strong>%4</strong> (%3) 上创建新的 <strong>%2MB</strong> 分区,使用 <strong>%1</strong>文件系统。 - + Creating new %1 partition on %2. 正在 %2 上创建新的 %1 分区。 - + The installer failed to create partition on disk '%1'. 安装程序在磁盘“%1”创建分区失败。 - + Could not open device '%1'. 无法打开设备“%1”。 - + Could not open partition table. 无法打开分区表。 - + The installer failed to create file system on partition %1. 安装程序在分区 %1 创建文件系统失败。 - + The installer failed to update partition table on disk '%1'. 安装程序更新磁盘“%1”分区表失败。 @@ -691,27 +691,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. 在 %2 上创建新的 %1 分区表。 - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). 在 <strong>%2</strong> (%3) 上创建新的 <strong>%1</strong> 分区表。 - + Creating new %1 partition table on %2. 正在 %2 上创建新的 %1 分区表。 - + The installer failed to create a partition table on %1. 安装程序于 %1 创建分区表失败。 - + Could not open device %1. 无法打开设备 %1。 @@ -754,32 +754,32 @@ The installer will quit and all changes will be lost. 无法打开要读取的 groups 文件。 - + Cannot create user %1. 无法创建用户 %1。 - + useradd terminated with error code %1. useradd 以错误代码 %1 中止。 - + Cannot add user %1 to groups: %2. 无法将用户 %1 加入到群组:%2. - + usermod terminated with error code %1. usermod 终止,错误代码 %1. - + Cannot set home directory ownership for user %1. 无法设置用户 %1 的主文件夹所有者。 - + chown terminated with error code %1. chown 以错误代码 %1 中止。 @@ -787,37 +787,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. 删除分区 %1。 - + Delete partition <strong>%1</strong>. 删除分区 <strong>%1</strong>。 - + Deleting partition %1. 正在删除分区 %1。 - + The installer failed to delete partition %1. 安装程序删除分区 %1 失败。 - + Partition (%1) and device (%2) do not match. 分区 (%1) 与设备 (%2) 不匹配。 - + Could not open device %1. 无法打开设备 %1。 - + Could not open partition table. 无法打开分区表。 @@ -979,37 +979,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information 设置分区信息 - + Install %1 on <strong>new</strong> %2 system partition. 在 <strong>新的</strong>系统分区 %2 上安装 %1。 - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. 设置 <strong>新的</strong> 含挂载点 <strong>%1</strong> 的 %2 分区。 - + Install %2 on %3 system partition <strong>%1</strong>. 在 %3 系统割区 <strong>%1</strong> 上安装 %2。 - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. 为分区 %3 <strong>%1</strong> 设置挂载点 <strong>%2</strong>。 - + Install boot loader on <strong>%1</strong>. 在 <strong>%1</strong>上安装引导程序。 - + Setting up mount points. 正在设置挂载点。 @@ -1040,17 +1040,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish 结束 - + Installation Complete - + The installation of %1 is complete. @@ -1131,12 +1131,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> 设置键盘型号为 %1。<br/> - + Set keyboard layout to %1/%2. 设置键盘布局为 %1/%2。 @@ -1298,7 +1298,7 @@ The installer will quit and all changes will be lost. 加载位置数据... - + Location 位置 @@ -1341,13 +1341,13 @@ The installer will quit and all changes will be lost. 源的逻辑扇区大小与目标不同。目前并不支持。 - + Source and target for copying do not overlap: Rollback is not required. 要复制的源和目标没有交集:不需要回滚。 - - + + Could not open device %1 to rollback copying. 无法打开设备 %1 来回滚复制。 @@ -1355,17 +1355,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name 名称 - + Description 描述 - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) 网络安装。(已禁用:无法获取软件包列表,请检查网络连接) @@ -1469,42 +1470,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root 根目录 - + Home 主目录 - + Boot 引导 - + EFI system EFI 系统 - + Swap 交换 - + New partition for %1 %1 的新分区 - + New partition 新建分区 - + %1 %2 %1 %2 @@ -1704,22 +1705,22 @@ The installer will quit and all changes will be lost. 默认 - + unknown 未知 - + extended 扩展分区 - + unformatted 未格式化 - + swap 临时存储空间 @@ -1807,57 +1808,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... 正在收集系统信息 ... - + has at least %1 GB available drive space 至少 %1 GB 可用磁盘空间 - + There is not enough drive space. At least %1 GB is required. 没有足够的磁盘空间。至少需要 %1 GB。 - + has at least %1 GB working memory 至少 %1 GB 可用内存 - + The system does not have enough working memory. At least %1 GB is required. 系统没有足够的内存。至少需要 %1 GB。 - + is plugged in to a power source 已连接到电源 - + The system is not plugged in to a power source. 系统未连接到电源。 - + is connected to the Internet 已连接到互联网 - + The system is not connected to the Internet. 系统未连接到互联网。 - + The installer is not running with administrator rights. 安装器未以管理员权限运行 - + The screen is too small to display the installer. 屏幕不能完整显示安装器。 @@ -1912,12 +1913,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... 正在扫描存储器… - + Partitioning 正在分区 @@ -2096,42 +2097,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 设置用户 %1 的密码 - + Setting password for user %1. 正在为用户 %1 设置密码。 - + Bad destination system path. 非法的目标系统路径。 - + rootMountPoint is %1 根挂载点为 %1 - + Cannot disable root account. 无法禁用 root 帐号。 - + passwd terminated with error code %1. passwd 以错误代码 %1 终止。 - + Cannot set password for user %1. 无法设置用户 %1 的密码。 - + usermod terminated with error code %1. usermod 以错误代码 %1 中止。 @@ -2177,7 +2178,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. 这是您开始安装后所会发生的事情的概览。 @@ -2193,41 +2194,51 @@ The installer will quit and all changes will be lost. 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! 密码不匹配! + + + Password is too short + + + + + Password is too long + + UsersViewStep - + Users 用户 diff --git a/lang/calamares_zh_TW.ts b/lang/calamares_zh_TW.ts index 04de28cf1..2f2d6fb85 100644 --- a/lang/calamares_zh_TW.ts +++ b/lang/calamares_zh_TW.ts @@ -232,13 +232,13 @@ Output: - + &Cancel 取消(&C) - + Cancel installation without changing the system. 不變更系統並取消安裝。 @@ -265,47 +265,47 @@ The installer will quit and all changes will be lost. 否(&N) - + &Close 關閉(&C) - + Continue with setup? 繼續安裝? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> %1 安裝程式將在您的磁碟上做出變更以安裝 %2。<br/><strong>您將無法復原這些變更。</strong> - + &Install now 現在安裝 (&I) - + Go &back 上一步 (&B) - + &Done 完成(&D) - + The installation is complete. Close the installer. 安裝完成。關閉安裝程式。 - + Error 錯誤 - + Installation Failed 安裝失敗 @@ -405,12 +405,12 @@ The installer will quit and all changes will be lost. <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。 @@ -421,83 +421,83 @@ 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/>在任何變更套用到儲存裝置上前,您都可以重新檢視並確認您的選擇。 - - - - + + + + <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/>在任何變更套用到儲存裝置上前,您都可以重新檢視並確認您的選擇。 @@ -619,42 +619,42 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MB partition on %4 (%3) with file system %1. 以 %1 檔案系統在 %4 (%3) 上建立新的 %2MB 分割區。 - + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. 以 <strong>%1</strong> 檔案系統在 <strong>%4</strong> (%3) 上建立新的 <strong>%2MB</strong> 分割區。 - + Creating new %1 partition on %2. 正在 %2 上建立新的 %1 分割區。 - + The installer failed to create partition on disk '%1'. 安裝程式在磁碟 '%1' 上建立分割區失敗。 - + Could not open device '%1'. 無法開啟裝置 '%1'。 - + Could not open partition table. 無法開啟分割區表格。 - + The installer failed to create file system on partition %1. 安裝程式在分割區 %1 上建立檔案系統失敗。 - + The installer failed to update partition table on disk '%1'. 安裝程式在磁碟 '%1' 上更新分割區表格失敗。 @@ -690,27 +690,27 @@ The installer will quit and all changes will be lost. CreatePartitionTableJob - + Create new %1 partition table on %2. 在 %2 上建立新的 %1 分割表。 - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). 在 <strong>%2</strong> (%3) 上建立新的 <strong>%1</strong> 分割表。 - + Creating new %1 partition table on %2. 正在 %2 上建立新的 %1 分割表。 - + The installer failed to create a partition table on %1. 安裝程式在 %1 上建立分割區表格失敗。 - + Could not open device %1. 無法開啟裝置 %1 。 @@ -753,32 +753,32 @@ The installer will quit and all changes will be lost. 無法開啟要讀取的 groups 檔案。 - + Cannot create user %1. 無法建立使用者 %1 。 - + useradd terminated with error code %1. useradd 以錯誤代碼 %1 終止。 - + Cannot add user %1 to groups: %2. 無法將使用者 %1 加入至群組:%2。 - + usermod terminated with error code %1. usermod 以錯誤代碼 %1 終止。 - + Cannot set home directory ownership for user %1. 無法將使用者 %1 設定為家目錄的擁有者。 - + chown terminated with error code %1. chown 以錯誤代碼 %1 終止。 @@ -786,37 +786,37 @@ The installer will quit and all changes will be lost. DeletePartitionJob - + Delete partition %1. 刪除分割區 %1。 - + Delete partition <strong>%1</strong>. 刪除分割區 <strong>%1</strong>。 - + Deleting partition %1. 正在刪除分割區 %1。 - + The installer failed to delete partition %1. 安裝程式刪除分割區 %1 失敗。 - + Partition (%1) and device (%2) do not match. 分割區 (%1) 及裝置 (%2) 不符合。 - + Could not open device %1. 無法開啟裝置 %1 。 - + Could not open partition table. 無法開啟分割區表格。 @@ -977,37 +977,37 @@ The installer will quit and all changes will be lost. FillGlobalStorageJob - + Set partition information 設定分割區資訊 - + Install %1 on <strong>new</strong> %2 system partition. 在 <strong>新的</strong>系統分割區 %2 上安裝 %1。 - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. 設定 <strong>新的</strong> 不含掛載點 <strong>%1</strong> 的 %2 分割區。 - + Install %2 on %3 system partition <strong>%1</strong>. 在 %3 系統分割區 <strong>%1</strong> 上安裝 %2。 - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. 為分割區 %3 <strong>%1</strong> 設定掛載點 <strong>%2</strong>。 - + Install boot loader on <strong>%1</strong>. 安裝開機載入器於 <strong>%1</strong>。 - + Setting up mount points. 正在設定掛載點。 @@ -1038,17 +1038,17 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish 完成 - + Installation Complete 安裝完成 - + The installation of %1 is complete. %1 的安裝已完成。 @@ -1129,12 +1129,12 @@ The installer will quit and all changes will be lost. KeyboardPage - + Set keyboard model to %1.<br/> 設定鍵盤型號為 %1 。<br/> - + Set keyboard layout to %1/%2. 設定鍵盤佈局為 %1/%2 。 @@ -1296,7 +1296,7 @@ The installer will quit and all changes will be lost. 讀取位置資料 ... - + Location 位置 @@ -1339,13 +1339,13 @@ The installer will quit and all changes will be lost. 要複製的來源與目標的邏輯磁區大小不相同。目前尚不支援。 - + Source and target for copying do not overlap: Rollback is not required. 要複製的來源和目標並無交集:不需要恢復所作的修改。 - - + + Could not open device %1 to rollback copying. 無法開啟裝置 %1 以恢復所作的複製。 @@ -1353,17 +1353,18 @@ The installer will quit and all changes will be lost. NetInstallPage - + Name 名稱 - + Description 描述 - + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) 網路安裝。(已停用:無法擷取軟體包清單,請檢查您的網路連線) @@ -1467,42 +1468,42 @@ The installer will quit and all changes will be lost. PartitionLabelsView - + Root 根目錄 - + Home 家目錄 - + Boot Boot - + EFI system EFI 系統 - + Swap Swap - + New partition for %1 %1 的新分割區 - + New partition 新分割區 - + %1 %2 %1 %2 @@ -1702,22 +1703,22 @@ The installer will quit and all changes will be lost. 預設值 - + unknown 未知 - + extended 延伸分割區 - + unformatted 未格式化 - + swap swap @@ -1805,57 +1806,57 @@ The installer will quit and all changes will be lost. RequirementsChecker - + Gathering system information... 收集系統資訊中... - + has at least %1 GB available drive space 有至少 %1 GB 的可用磁碟空間 - + There is not enough drive space. At least %1 GB is required. 沒有足夠的磁碟空間。至少需要 %1 GB。 - + has at least %1 GB working memory 有至少 %1 GB 的可用記憶體 - + The system does not have enough working memory. At least %1 GB is required. 系統沒有足夠的記憶體。至少需要 %1 GB。 - + is plugged in to a power source 已插入外接電源 - + The system is not plugged in to a power source. 系統未插入外接電源。 - + is connected to the Internet 已連上網際網路 - + The system is not connected to the Internet. 系統未連上網際網路 - + The installer is not running with administrator rights. 安裝程式並未以管理員權限執行。 - + The screen is too small to display the installer. 螢幕太小了,沒辦法顯示安裝程式。 @@ -1910,12 +1911,12 @@ The installer will quit and all changes will be lost. ScanningDialog - + Scanning storage devices... 正在掃描儲存裝置... - + Partitioning 正在分割 @@ -2094,42 +2095,42 @@ The installer will quit and all changes will be lost. SetPasswordJob - + Set password for user %1 為使用者 %1 設定密碼 - + Setting password for user %1. 正在為使用者 %1 設定密碼。 - + Bad destination system path. 非法的目標系統路徑。 - + rootMountPoint is %1 根掛載點為 %1 - + Cannot disable root account. 無法停用 root 帳號。 - + passwd terminated with error code %1. passwd 以錯誤代碼 %1 終止。 - + Cannot set password for user %1. 無法為使用者 %1 設定密碼。 - + usermod terminated with error code %1. usermod 以錯誤代碼 %1 終止。 @@ -2175,7 +2176,7 @@ The installer will quit and all changes will be lost. SummaryPage - + This is an overview of what will happen once you start the install procedure. 這是您開始安裝後所會發生的事的概覽。 @@ -2191,41 +2192,51 @@ The installer will quit and all changes will be lost. 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! 密碼不符! + + + Password is too short + 密碼太短 + + + + Password is too long + 密碼太長 + UsersViewStep - + Users 使用者 diff --git a/lang/python.pot b/lang/python.pot index ad66c1cab..ab087c10c 100644 --- a/lang/python.pot +++ b/lang/python.pot @@ -8,28 +8,16 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: \n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -msgstr "Generate machine-id." - -#: 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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -52,3 +40,15 @@ msgstr[1] "Removing %(num)d packages." #: src/modules/packages/main.py:68 msgid "Install packages." msgstr "Install packages." + +#: 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Generate machine-id." diff --git a/lang/python/ar/LC_MESSAGES/python.mo b/lang/python/ar/LC_MESSAGES/python.mo index 8a59291af..a210f1c16 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 bdabbf28e..3e820726d 100644 --- a/lang/python/ar/LC_MESSAGES/python.po +++ b/lang/python/ar/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ 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/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -59,3 +47,15 @@ msgstr[5] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/ast/LC_MESSAGES/python.mo b/lang/python/ast/LC_MESSAGES/python.mo index a4fa1fe81..c2b258009 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 c3eb56943..1a8532a3d 100644 --- a/lang/python/ast/LC_MESSAGES/python.po +++ b/lang/python/ast/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: enolp , 2017\n" "Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n" @@ -18,18 +18,6 @@ msgstr "" "Language: ast\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -msgstr "Xenerar machine-id." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Trabayu maniquín de python." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Pasu maniquín de python {}" - #: src/modules/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -52,3 +40,15 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." msgstr "" + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Trabayu maniquín de python." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Pasu maniquín de python {}" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Xenerar machine-id." diff --git a/lang/python/bg/LC_MESSAGES/python.mo b/lang/python/bg/LC_MESSAGES/python.mo index 470525ae3..8d5be917e 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 28b4fbb7c..b75ae7b71 100644 --- a/lang/python/bg/LC_MESSAGES/python.po +++ b/lang/python/bg/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -51,3 +39,15 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/ca/LC_MESSAGES/python.mo b/lang/python/ca/LC_MESSAGES/python.mo index efd56d034..bcaab5bed 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 1ace6c80e..edb774bff 100644 --- a/lang/python/ca/LC_MESSAGES/python.po +++ b/lang/python/ca/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Davidmp , 2017\n" "Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n" @@ -18,18 +18,6 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -msgstr "Generació de l'id. de la màquina." - -#: 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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -52,3 +40,15 @@ msgstr[1] "Eliminant %(num)d paquets." #: src/modules/packages/main.py:68 msgid "Install packages." msgstr "Instal·la els paquets." + +#: 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Generació de l'id. de la màquina." diff --git a/lang/python/cs_CZ/LC_MESSAGES/python.mo b/lang/python/cs_CZ/LC_MESSAGES/python.mo index f98f7f8ee..b75f254a1 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 59616a830..861ba30d5 100644 --- a/lang/python/cs_CZ/LC_MESSAGES/python.po +++ b/lang/python/cs_CZ/LC_MESSAGES/python.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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" @@ -18,9 +18,30 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -msgstr "Vytvořit machine-id." +#: src/modules/packages/main.py:59 +#, python-format +msgid "Processing packages (%(count)d / %(total)d)" +msgstr "Zpracovávání balíčků (%(count)d / %(total)d)" + +#: src/modules/packages/main.py:61 +#, python-format +msgid "Installing one package." +msgid_plural "Installing %(num)d packages." +msgstr[0] "Je instalován jeden balíček." +msgstr[1] "Jsou instalovány %(num)d balíčky." +msgstr[2] "Je instalováno %(num)d balíčků." + +#: src/modules/packages/main.py:64 +#, python-format +msgid "Removing one package." +msgid_plural "Removing %(num)d packages." +msgstr[0] "Odebírá se jeden balíček." +msgstr[1] "Odebírají se %(num)d balíčky." +msgstr[2] "Odebírá se %(num)d balíčků." + +#: src/modules/packages/main.py:68 +msgid "Install packages." +msgstr "Instalovat balíčky." #: src/modules/dummypython/main.py:44 msgid "Dummy python job." @@ -30,27 +51,6 @@ msgstr "Testovací úloha python." msgid "Dummy python step {}" msgstr "Testovací krok {} python." -#: src/modules/packages/main.py:59 -#, python-format -msgid "Processing packages (%(count)d / %(total)d)" -msgstr "" - -#: src/modules/packages/main.py:61 -#, python-format -msgid "Installing one package." -msgid_plural "Installing %(num)d packages." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: src/modules/packages/main.py:64 -#, python-format -msgid "Removing one package." -msgid_plural "Removing %(num)d packages." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: src/modules/packages/main.py:68 -msgid "Install packages." -msgstr "Instalovat balíčky." +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Vytvořit identifikátor stroje." diff --git a/lang/python/da/LC_MESSAGES/python.mo b/lang/python/da/LC_MESSAGES/python.mo index 0521d0612..8682dd349 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 830e045e6..4c14df766 100644 --- a/lang/python/da/LC_MESSAGES/python.po +++ b/lang/python/da/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Dan Johansen (Strit) , 2017\n" "Language-Team: Danish (https://www.transifex.com/calamares/teams/20061/da/)\n" @@ -18,18 +18,6 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -msgstr "Generere maskine-id." - -#: 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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -40,7 +28,7 @@ msgstr "Forarbejder pakker (%(count)d / %(total)d)" msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "Installerer én pakke." -msgstr[1] "Installer %(num)d pakker." +msgstr[1] "Installerer %(num)d pakker." #: src/modules/packages/main.py:64 #, python-format @@ -52,3 +40,15 @@ msgstr[1] "Fjerne %(num)d pakker." #: src/modules/packages/main.py:68 msgid "Install packages." msgstr "Installér pakker." + +#: 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Generere maskine-id." diff --git a/lang/python/de/LC_MESSAGES/python.mo b/lang/python/de/LC_MESSAGES/python.mo index aff49a3d1..d48add8fa 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 654da411b..c8762b835 100644 --- a/lang/python/de/LC_MESSAGES/python.po +++ b/lang/python/de/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -51,3 +39,15 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/el/LC_MESSAGES/python.mo b/lang/python/el/LC_MESSAGES/python.mo index c7d45e879..d355a8f1f 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 924667c68..67ccf6132 100644 --- a/lang/python/el/LC_MESSAGES/python.po +++ b/lang/python/el/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -51,3 +39,15 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/en_GB/LC_MESSAGES/python.mo b/lang/python/en_GB/LC_MESSAGES/python.mo index b88e6d8f9..7445c7f72 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 9ced5a414..31fc499a2 100644 --- a/lang/python/en_GB/LC_MESSAGES/python.po +++ b/lang/python/en_GB/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/calamares/teams/20061/en_GB/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -51,3 +39,15 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/es/LC_MESSAGES/python.mo b/lang/python/es/LC_MESSAGES/python.mo index 9d1a6d89f..4ad13b361 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 440ead6b9..4d0948c9e 100644 --- a/lang/python/es/LC_MESSAGES/python.po +++ b/lang/python/es/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: strel , 2017\n" "Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n" @@ -18,18 +18,6 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -msgstr "Generar identificación-de-maquina." - -#: 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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -52,3 +40,15 @@ msgstr[1] "Eliminando %(num)d paquetes." #: src/modules/packages/main.py:68 msgid "Install packages." msgstr "Instalar paquetes." + +#: 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Generar identificación-de-maquina." diff --git a/lang/python/es_ES/LC_MESSAGES/python.mo b/lang/python/es_ES/LC_MESSAGES/python.mo index 35a601558..543d7aad9 100644 Binary files a/lang/python/es_ES/LC_MESSAGES/python.mo and b/lang/python/es_ES/LC_MESSAGES/python.mo differ diff --git a/lang/python/es_ES/LC_MESSAGES/python.po b/lang/python/es_ES/LC_MESSAGES/python.po index a07d525c7..323793575 100644 --- a/lang/python/es_ES/LC_MESSAGES/python.po +++ b/lang/python/es_ES/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Spain) (https://www.transifex.com/calamares/teams/20061/es_ES/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -51,3 +39,15 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/es_MX/LC_MESSAGES/python.mo b/lang/python/es_MX/LC_MESSAGES/python.mo index 73c58bb4a..1f97de7d0 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 72deb57ed..b147c6a8b 100644 --- a/lang/python/es_MX/LC_MESSAGES/python.po +++ b/lang/python/es_MX/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -51,3 +39,15 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/es_PR/LC_MESSAGES/python.mo b/lang/python/es_PR/LC_MESSAGES/python.mo index f3dd878be..01cc46075 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 14e075326..9771ceefb 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: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/calamares/teams/20061/es_PR/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: es_PR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -51,3 +39,15 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/et/LC_MESSAGES/python.mo b/lang/python/et/LC_MESSAGES/python.mo index 86e51fbf4..5d0e96740 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 3ade2d753..b4c86492f 100644 --- a/lang/python/et/LC_MESSAGES/python.po +++ b/lang/python/et/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Estonian (https://www.transifex.com/calamares/teams/20061/et/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -51,3 +39,15 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/eu/LC_MESSAGES/python.mo b/lang/python/eu/LC_MESSAGES/python.mo index 2b85ce42c..e456a002d 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 2f4c71e36..6bf9b9e60 100644 --- a/lang/python/eu/LC_MESSAGES/python.po +++ b/lang/python/eu/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Basque (https://www.transifex.com/calamares/teams/20061/eu/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -51,3 +39,15 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/fa/LC_MESSAGES/python.mo b/lang/python/fa/LC_MESSAGES/python.mo index be5db74c2..8c836abe4 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 9da47f1c0..a4bf68d91 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: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Persian (https://www.transifex.com/calamares/teams/20061/fa/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -49,3 +37,15 @@ msgstr[0] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/fi_FI/LC_MESSAGES/python.mo b/lang/python/fi_FI/LC_MESSAGES/python.mo index 65215e4b3..ec1072ef8 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 98225c0f8..f0b2608ec 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: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Finnish (Finland) (https://www.transifex.com/calamares/teams/20061/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -51,3 +39,15 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/fr/LC_MESSAGES/python.mo b/lang/python/fr/LC_MESSAGES/python.mo index 2c39ac029..ae65ce405 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 f5af986a3..7b6b33900 100644 --- a/lang/python/fr/LC_MESSAGES/python.po +++ b/lang/python/fr/LC_MESSAGES/python.po @@ -8,8 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Paul Combal , 2017\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" @@ -17,22 +18,10 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" -msgstr "" +msgstr "Traitement des paquets (%(count)d / %(total)d)" #: src/modules/packages/main.py:61 #, python-format @@ -50,4 +39,16 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." +msgstr "Installer des paquets." + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Générer un machine-id." diff --git a/lang/python/fr_CH/LC_MESSAGES/python.mo b/lang/python/fr_CH/LC_MESSAGES/python.mo index 44c786167..e697861dc 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 5c665d8ab..3e5b8bb25 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: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: French (Switzerland) (https://www.transifex.com/calamares/teams/20061/fr_CH/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -51,3 +39,15 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/gl/LC_MESSAGES/python.mo b/lang/python/gl/LC_MESSAGES/python.mo index b221e3812..88f6efecb 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 a326be4be..812efbfad 100644 --- a/lang/python/gl/LC_MESSAGES/python.po +++ b/lang/python/gl/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Galician (https://www.transifex.com/calamares/teams/20061/gl/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -51,3 +39,15 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/gu/LC_MESSAGES/python.mo b/lang/python/gu/LC_MESSAGES/python.mo index e8861abe2..75cb76d87 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 557a796e5..a6e3c2509 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: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Gujarati (https://www.transifex.com/calamares/teams/20061/gu/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: gu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -51,3 +39,15 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/he/LC_MESSAGES/python.mo b/lang/python/he/LC_MESSAGES/python.mo index 8db1c22da..2bfb5e747 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 2c314f285..5ed49d240 100644 --- a/lang/python/he/LC_MESSAGES/python.po +++ b/lang/python/he/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Eli Shleifer , 2017\n" "Language-Team: Hebrew (https://www.transifex.com/calamares/teams/20061/he/)\n" @@ -18,18 +18,6 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -52,3 +40,15 @@ msgstr[1] "מסיר %(num)d חבילות." #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "חולל מספר סידורי של המכונה." diff --git a/lang/python/hi/LC_MESSAGES/python.mo b/lang/python/hi/LC_MESSAGES/python.mo index 198aba348..f0f1bef75 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 e108c12ac..29ca4b74e 100644 --- a/lang/python/hi/LC_MESSAGES/python.po +++ b/lang/python/hi/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Hindi (https://www.transifex.com/calamares/teams/20061/hi/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -51,3 +39,15 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/hr/LC_MESSAGES/python.mo b/lang/python/hr/LC_MESSAGES/python.mo index 4a4b060e1..2738c54f3 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 61a1b53a2..f43bf26c7 100644 --- a/lang/python/hr/LC_MESSAGES/python.po +++ b/lang/python/hr/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Lovro Kudelić , 2017\n" "Language-Team: Croatian (https://www.transifex.com/calamares/teams/20061/hr/)\n" @@ -18,18 +18,6 @@ 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/machineid/main.py:35 -msgid "Generate machine-id." -msgstr "Generiraj ID računala." - -#: 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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -54,3 +42,15 @@ msgstr[2] "Uklanjam %(num)d pakete." #: src/modules/packages/main.py:68 msgid "Install packages." msgstr "Instaliraj pakete." + +#: 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Generiraj ID računala." diff --git a/lang/python/hu/LC_MESSAGES/python.mo b/lang/python/hu/LC_MESSAGES/python.mo index 62231eb3e..07705ecfd 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 955764b81..0b3267dbe 100644 --- a/lang/python/hu/LC_MESSAGES/python.po +++ b/lang/python/hu/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: miku84 , 2017\n" "Language-Team: Hungarian (https://www.transifex.com/calamares/teams/20061/hu/)\n" @@ -18,18 +18,6 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -msgstr "Számítógép azonosító generálása." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Hamis PythonQt Job." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Hamis PythonQt {} lépés" - #: src/modules/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -52,3 +40,15 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." msgstr "Csomagok telepítése." + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Hamis PythonQt Job." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Hamis PythonQt {} lépés" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Számítógép azonosító generálása." diff --git a/lang/python/id/LC_MESSAGES/python.mo b/lang/python/id/LC_MESSAGES/python.mo index 35b6cdcb0..8cdd6144a 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 9f7d9418a..1af247d6b 100644 --- a/lang/python/id/LC_MESSAGES/python.po +++ b/lang/python/id/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Wantoyo , 2017\n" "Language-Team: Indonesian (https://www.transifex.com/calamares/teams/20061/id/)\n" @@ -18,18 +18,6 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -msgstr "Generate machine-id." - -#: 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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -50,3 +38,15 @@ msgstr[0] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Generate machine-id." diff --git a/lang/python/is/LC_MESSAGES/python.mo b/lang/python/is/LC_MESSAGES/python.mo index 26b8d0676..f5a85e0d8 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 226a8deb3..518fb08ec 100644 --- a/lang/python/is/LC_MESSAGES/python.po +++ b/lang/python/is/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Kristján Magnússon , 2017\n" "Language-Team: Icelandic (https://www.transifex.com/calamares/teams/20061/is/)\n" @@ -18,18 +18,6 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -msgstr "Generate machine-id." - -#: 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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -52,3 +40,15 @@ msgstr[1] "Fjarlægi %(num)d pakka." #: src/modules/packages/main.py:68 msgid "Install packages." msgstr "Setja upp pakka." + +#: 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Generate machine-id." diff --git a/lang/python/it_IT/LC_MESSAGES/python.mo b/lang/python/it_IT/LC_MESSAGES/python.mo index 73aed3b46..af1266019 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 ff1f27430..09837946f 100644 --- a/lang/python/it_IT/LC_MESSAGES/python.po +++ b/lang/python/it_IT/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Italian (Italy) (https://www.transifex.com/calamares/teams/20061/it_IT/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: it_IT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -51,3 +39,15 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/ja/LC_MESSAGES/python.mo b/lang/python/ja/LC_MESSAGES/python.mo index 828391d79..eff30ac53 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 8e24320fb..5c19aee9b 100644 --- a/lang/python/ja/LC_MESSAGES/python.po +++ b/lang/python/ja/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Takefumi Nagata , 2017\n" "Language-Team: Japanese (https://www.transifex.com/calamares/teams/20061/ja/)\n" @@ -18,18 +18,6 @@ msgstr "" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -msgstr "machine-id の生成" - -#: 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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -50,3 +38,15 @@ msgstr[0] " %(num)d パッケージの削除中。" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "machine-id の生成" diff --git a/lang/python/kk/LC_MESSAGES/python.mo b/lang/python/kk/LC_MESSAGES/python.mo index 2b0afba0e..ebdbcf058 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 e1ffbb3e9..64d276a40 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: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Kazakh (https://www.transifex.com/calamares/teams/20061/kk/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: kk\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -49,3 +37,15 @@ msgstr[0] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/lo/LC_MESSAGES/python.mo b/lang/python/lo/LC_MESSAGES/python.mo index 1a06a5e25..e194144fd 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 b11a51f76..80e24d373 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: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Lao (https://www.transifex.com/calamares/teams/20061/lo/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: lo\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -49,3 +37,15 @@ msgstr[0] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/lt/LC_MESSAGES/python.mo b/lang/python/lt/LC_MESSAGES/python.mo index 421ec7f2f..36495e285 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 bda9e87c7..32484c61d 100644 --- a/lang/python/lt/LC_MESSAGES/python.po +++ b/lang/python/lt/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Moo , 2017\n" "Language-Team: Lithuanian (https://www.transifex.com/calamares/teams/20061/lt/)\n" @@ -18,18 +18,6 @@ msgstr "" "Language: lt\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -msgstr "Generuoti machine-id." - -#: 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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -54,3 +42,15 @@ msgstr[2] "Šalinama %(num)d paketų." #: src/modules/packages/main.py:68 msgid "Install packages." msgstr "Įdiegti paketus." + +#: 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Generuoti machine-id." diff --git a/lang/python/mr/LC_MESSAGES/python.mo b/lang/python/mr/LC_MESSAGES/python.mo index ada8d963f..9cf893292 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 856d82b37..2d2c5c504 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: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Marathi (https://www.transifex.com/calamares/teams/20061/mr/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: mr\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -51,3 +39,15 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/nb/LC_MESSAGES/python.mo b/lang/python/nb/LC_MESSAGES/python.mo index 4a10eac44..2c163b19d 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 40b2a710a..94ed28e31 100644 --- a/lang/python/nb/LC_MESSAGES/python.po +++ b/lang/python/nb/LC_MESSAGES/python.po @@ -8,8 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Tyler Moss , 2017\n" "Language-Team: Norwegian Bokmål (https://www.transifex.com/calamares/teams/20061/nb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,18 +18,6 @@ msgstr "" "Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -50,4 +39,16 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." +msgstr "Installer pakker." + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Generer maskin-ID." diff --git a/lang/python/nl/LC_MESSAGES/python.mo b/lang/python/nl/LC_MESSAGES/python.mo index 3ecd47e74..cbd7d3589 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 5bf84848d..4b0f302ff 100644 --- a/lang/python/nl/LC_MESSAGES/python.po +++ b/lang/python/nl/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Adriaan de Groot , 2017\n" "Language-Team: Dutch (https://www.transifex.com/calamares/teams/20061/nl/)\n" @@ -18,18 +18,6 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -msgstr "Genereer machine-id" - -#: 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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -52,3 +40,15 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Genereer machine-id" diff --git a/lang/python/pl/LC_MESSAGES/python.mo b/lang/python/pl/LC_MESSAGES/python.mo index fca89320a..c6bf73dbd 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 ec6e5bbd2..6b73fa538 100644 --- a/lang/python/pl/LC_MESSAGES/python.po +++ b/lang/python/pl/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: m4sk1n , 2017\n" "Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n" @@ -18,18 +18,6 @@ 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/machineid/main.py:35 -msgid "Generate machine-id." -msgstr "Generuj machine-id." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Zadanie Dummy Python" - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Krok dummy python {}" - #: src/modules/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -56,3 +44,15 @@ msgstr[3] "Usuwanie pakietów (%(num)d)." #: src/modules/packages/main.py:68 msgid "Install packages." msgstr "Zainstaluj pakiety." + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Zadanie Dummy Python" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Krok dummy python {}" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Generuj machine-id." diff --git a/lang/python/pl_PL/LC_MESSAGES/python.mo b/lang/python/pl_PL/LC_MESSAGES/python.mo index fc4620205..84b5b0892 100644 Binary files a/lang/python/pl_PL/LC_MESSAGES/python.mo and b/lang/python/pl_PL/LC_MESSAGES/python.mo differ diff --git a/lang/python/pl_PL/LC_MESSAGES/python.po b/lang/python/pl_PL/LC_MESSAGES/python.po index 35261da58..ce92c3bcc 100644 --- a/lang/python/pl_PL/LC_MESSAGES/python.po +++ b/lang/python/pl_PL/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Polish (Poland) (https://www.transifex.com/calamares/teams/20061/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: pl_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/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -55,3 +43,15 @@ msgstr[3] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/pt_BR/LC_MESSAGES/python.mo b/lang/python/pt_BR/LC_MESSAGES/python.mo index e6c7bd3b9..4b29dee23 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 11ee94ba9..4da7b8d73 100644 --- a/lang/python/pt_BR/LC_MESSAGES/python.po +++ b/lang/python/pt_BR/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: André Marcelo Alvarenga , 2017\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n" @@ -18,18 +18,6 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -msgstr "Gerar machine-id." - -#: src/modules/dummypython/main.py:44 -msgid "Dummy python job." -msgstr "Trabalho fictício python." - -#: src/modules/dummypython/main.py:97 -msgid "Dummy python step {}" -msgstr "Etapa fictícia python {}" - #: src/modules/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -52,3 +40,15 @@ msgstr[1] "Removendo %(num)d pacotes." #: src/modules/packages/main.py:68 msgid "Install packages." msgstr "Instalar pacotes." + +#: src/modules/dummypython/main.py:44 +msgid "Dummy python job." +msgstr "Trabalho fictício python." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Etapa fictícia python {}" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Gerar machine-id." diff --git a/lang/python/pt_PT/LC_MESSAGES/python.mo b/lang/python/pt_PT/LC_MESSAGES/python.mo index d1d52a7f9..a98f6633f 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 485ecc10f..9dd4e808f 100644 --- a/lang/python/pt_PT/LC_MESSAGES/python.po +++ b/lang/python/pt_PT/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Ricardo Simões , 2017\n" "Language-Team: Portuguese (Portugal) (https://www.transifex.com/calamares/teams/20061/pt_PT/)\n" @@ -18,18 +18,6 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -msgstr "Gerar id-máquina" - -#: 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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -52,3 +40,15 @@ msgstr[1] "A remover %(num)d pacotes." #: src/modules/packages/main.py:68 msgid "Install packages." msgstr "Instalar pacotes." + +#: 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Gerar id-máquina" diff --git a/lang/python/ro/LC_MESSAGES/python.mo b/lang/python/ro/LC_MESSAGES/python.mo index 40d555edb..061cd3762 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 5a2d0706b..448acf2d7 100644 --- a/lang/python/ro/LC_MESSAGES/python.po +++ b/lang/python/ro/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Romanian (https://www.transifex.com/calamares/teams/20061/ro/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ 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/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -53,3 +41,15 @@ msgstr[2] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/ru/LC_MESSAGES/python.mo b/lang/python/ru/LC_MESSAGES/python.mo index 0faa2fe7c..a5c9b7970 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 215e7652d..9d3b69687 100644 --- a/lang/python/ru/LC_MESSAGES/python.po +++ b/lang/python/ru/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Russian (https://www.transifex.com/calamares/teams/20061/ru/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ 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/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -55,3 +43,15 @@ msgstr[3] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/sk/LC_MESSAGES/python.mo b/lang/python/sk/LC_MESSAGES/python.mo index 405b02f88..55d5f3428 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 edaf3ef4b..98207a84a 100644 --- a/lang/python/sk/LC_MESSAGES/python.po +++ b/lang/python/sk/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Slovak (https://www.transifex.com/calamares/teams/20061/sk/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -53,3 +41,15 @@ msgstr[2] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/sl/LC_MESSAGES/python.mo b/lang/python/sl/LC_MESSAGES/python.mo index 615d4b0b7..b931f4a70 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 75e1ce058..2139a2a51 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: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Slovenian (https://www.transifex.com/calamares/teams/20061/sl/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ 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/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -55,3 +43,15 @@ msgstr[3] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/sr/LC_MESSAGES/python.mo b/lang/python/sr/LC_MESSAGES/python.mo index d6f9d392c..f0695b667 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 3d7d8a376..f3114a430 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: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Serbian (https://www.transifex.com/calamares/teams/20061/sr/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ 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/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -53,3 +41,15 @@ msgstr[2] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/sr@latin/LC_MESSAGES/python.mo b/lang/python/sr@latin/LC_MESSAGES/python.mo index ec7faf311..83e860525 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 2ec845ba1..194609317 100644 --- a/lang/python/sr@latin/LC_MESSAGES/python.po +++ b/lang/python/sr@latin/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Serbian (Latin) (https://www.transifex.com/calamares/teams/20061/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -53,3 +41,15 @@ msgstr[2] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/sv/LC_MESSAGES/python.mo b/lang/python/sv/LC_MESSAGES/python.mo index e27097ca7..bfaede27c 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 961a8dd0d..be85139c3 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: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Swedish (https://www.transifex.com/calamares/teams/20061/sv/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -51,3 +39,15 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/th/LC_MESSAGES/python.mo b/lang/python/th/LC_MESSAGES/python.mo index 99aa63beb..abe28d90d 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 da9c4a44e..4e4c96487 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: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Thai (https://www.transifex.com/calamares/teams/20061/th/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -49,3 +37,15 @@ msgstr[0] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/tr_TR/LC_MESSAGES/python.mo b/lang/python/tr_TR/LC_MESSAGES/python.mo index 046d5b5c9..cee6f7a1f 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 9be847915..ed81c130d 100644 --- a/lang/python/tr_TR/LC_MESSAGES/python.po +++ b/lang/python/tr_TR/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Demiray Muhterem , 2017\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/calamares/teams/20061/tr_TR/)\n" @@ -18,18 +18,6 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -msgstr "Makine kimliği oluştur." - -#: 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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -50,3 +38,15 @@ msgstr[0] "%(num)d paket kaldırılıyor." #: src/modules/packages/main.py:68 msgid "Install packages." msgstr "Paketleri yükle" + +#: 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Makine kimliği oluştur." diff --git a/lang/python/uk/LC_MESSAGES/python.mo b/lang/python/uk/LC_MESSAGES/python.mo index d17a14087..d6db8da09 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 c25e7e777..b1f11d848 100644 --- a/lang/python/uk/LC_MESSAGES/python.po +++ b/lang/python/uk/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Ukrainian (https://www.transifex.com/calamares/teams/20061/uk/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: uk\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/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -53,3 +41,15 @@ msgstr[2] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/ur/LC_MESSAGES/python.mo b/lang/python/ur/LC_MESSAGES/python.mo index 176215bcb..80590b126 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 58ff76786..91b9f0350 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: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Urdu (https://www.transifex.com/calamares/teams/20061/ur/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -51,3 +39,15 @@ msgstr[1] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/uz/LC_MESSAGES/python.mo b/lang/python/uz/LC_MESSAGES/python.mo index 037e2fa2a..06f1e4972 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 26cab9c97..09600574d 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: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Uzbek (https://www.transifex.com/calamares/teams/20061/uz/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,6 @@ msgstr "" "Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -49,3 +37,15 @@ msgstr[0] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "" diff --git a/lang/python/zh_CN/LC_MESSAGES/python.mo b/lang/python/zh_CN/LC_MESSAGES/python.mo index 7e0bff4f5..ba474e42b 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 2d918d9bb..fb7564c0f 100644 --- a/lang/python/zh_CN/LC_MESSAGES/python.po +++ b/lang/python/zh_CN/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Mingcong Bai , 2017\n" "Language-Team: Chinese (China) (https://www.transifex.com/calamares/teams/20061/zh_CN/)\n" @@ -18,18 +18,6 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -msgstr "生成 machine-id。" - -#: 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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -50,3 +38,15 @@ msgstr[0] "" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "生成 machine-id。" diff --git a/lang/python/zh_TW/LC_MESSAGES/python.mo b/lang/python/zh_TW/LC_MESSAGES/python.mo index 2fb81f156..3c6b2e9ce 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 2d1398174..8b5bae6ee 100644 --- a/lang/python/zh_TW/LC_MESSAGES/python.po +++ b/lang/python/zh_TW/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Jeff Huang , 2017\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/calamares/teams/20061/zh_TW/)\n" @@ -18,18 +18,6 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/modules/machineid/main.py:35 -msgid "Generate machine-id." -msgstr "生成 machine-id。" - -#: 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/packages/main.py:59 #, python-format msgid "Processing packages (%(count)d / %(total)d)" @@ -50,3 +38,15 @@ msgstr[0] "正在移除 %(num)d 軟體包。" #: src/modules/packages/main.py:68 msgid "Install packages." 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/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "生成 machine-id。" diff --git a/src/branding/default/branding.desc b/src/branding/default/branding.desc index c2d868c82..c3542a9ec 100644 --- a/src/branding/default/branding.desc +++ b/src/branding/default/branding.desc @@ -8,10 +8,17 @@ componentName: default # same distribution. welcomeStyleCalamares: false -# Should the welcome image (productWelcome, below) be scaled -# up beyond its natural size? -welcomeExpandingLogo: true - +# These are strings shown to the user in the user interface. +# There is no provision for translating them -- since they +# are names, the string is included as-is. +# +# The four Url strings are the Urls used by the buttons in +# the welcome screen, and are not shown to the user. Clicking +# on the "Support" button, for instance, opens the link supportUrl. +# If a Url is empty, the corresponding button is not shown. +# +# bootloaderEntryName is how this installation / distro is named +# in the boot loader (e.g. in the GRUB menu). strings: productName: Generic GNU/Linux shortProductName: Generic @@ -25,11 +32,33 @@ strings: knownIssuesUrl: http://calamares.io/about/ releaseNotesUrl: http://calamares.io/about/ +# Should the welcome image (productWelcome, below) be scaled +# up beyond its natural size? If false, the image does not grow +# with the window but remains the same size throughout (this +# may have surprising effects on HiDPI monitors). +welcomeExpandingLogo: true + +# These images are loaded from the branding module directory. +# +# productIcon is used as the window icon, and will (usually) be used +# by the window manager to represent the application. This image +# should be square, and may be displayed by the window manager +# as small as 16x16 (but possibly larger). +# productLogo is used as the logo at the top of the left-hand column +# which shows the steps to be taken. The image should be square, +# and is displayed at 80x80 pixels (also on HiDPI). +# productWelcome is shown on the welcome page of the application in +# the middle of the window, below the welcome text. It can be +# any size and proportion, and will be scaled to fit inside +# the window. Use `welcomeExpandingLogo` to make it non-scaled. +# Recommended size is 320x150. images: productLogo: "squid.png" productIcon: "squid.png" productWelcome: "languages.png" +# The slideshow is displayed during execution steps (e.g. when the +# installer is actually writing to disk and doing other slow things). slideshow: "show.qml" # Colors for text and background components. diff --git a/src/calamares/CalamaresWindow.cpp b/src/calamares/CalamaresWindow.cpp index eb3289083..ab24b6db2 100644 --- a/src/calamares/CalamaresWindow.cpp +++ b/src/calamares/CalamaresWindow.cpp @@ -96,7 +96,7 @@ CalamaresWindow::CalamaresWindow( QWidget* parent ) logoLabel->setAlignment( Qt::AlignCenter ); logoLabel->setFixedSize( 80, 80 ); logoLabel->setPixmap( Calamares::Branding::instance()-> - image( Calamares::Branding::ProductIcon, + image( Calamares::Branding::ProductLogo, logoLabel->size() ) ); logoLayout->addWidget( logoLabel ); logoLayout->addStretch(); diff --git a/src/libcalamaresui/CMakeLists.txt b/src/libcalamaresui/CMakeLists.txt index ccc46f2f3..7c3e8fca2 100644 --- a/src/libcalamaresui/CMakeLists.txt +++ b/src/libcalamaresui/CMakeLists.txt @@ -72,9 +72,10 @@ calamares_add_library( calamaresui EXPORT_MACRO UIDLLEXPORT_PRO LINK_PRIVATE_LIBRARIES ${YAMLCPP_LIBRARY} + ${OPTIONAL_PRIVATE_LIBRARIES} + LINK_LIBRARIES Qt5::Svg Qt5::QuickWidgets - ${OPTIONAL_PRIVATE_LIBRARIES} RESOURCES libcalamaresui.qrc EXPORT CalamaresLibraryDepends VERSION ${CALAMARES_VERSION_SHORT} diff --git a/src/libcalamaresui/utils/qjsonitem.cpp b/src/libcalamaresui/utils/qjsonitem.cpp index 24494f0fd..cdc4b3b13 100644 --- a/src/libcalamaresui/utils/qjsonitem.cpp +++ b/src/libcalamaresui/utils/qjsonitem.cpp @@ -26,11 +26,9 @@ #include "qjsonitem.h" QJsonTreeItem::QJsonTreeItem(QJsonTreeItem *parent) + : mParent( parent ) + , mType( QJsonValue::Type::Null ) { - - mParent = parent; - - } QJsonTreeItem::~QJsonTreeItem() diff --git a/src/libcalamaresui/utils/qjsonmodel.cpp b/src/libcalamaresui/utils/qjsonmodel.cpp index 5ce0cd695..4238bfd6b 100644 --- a/src/libcalamaresui/utils/qjsonmodel.cpp +++ b/src/libcalamaresui/utils/qjsonmodel.cpp @@ -33,14 +33,19 @@ QJsonModel::QJsonModel(QObject *parent) : QAbstractItemModel(parent) + , mRootItem( new QJsonTreeItem ) { - mRootItem = new QJsonTreeItem; mHeaders.append("key"); mHeaders.append("value"); } +QJsonModel::~QJsonModel() +{ + delete mRootItem; +} + bool QJsonModel::load(const QString &fileName) { QFile file(fileName); @@ -66,6 +71,7 @@ bool QJsonModel::loadJson(const QByteArray &json) if (!mDocument.isNull()) { beginResetModel(); + delete mRootItem; if (mDocument.isArray()) { mRootItem = QJsonTreeItem::load(QJsonValue(mDocument.array())); } else { diff --git a/src/libcalamaresui/utils/qjsonmodel.h b/src/libcalamaresui/utils/qjsonmodel.h index 6a2399287..0d1b3232d 100644 --- a/src/libcalamaresui/utils/qjsonmodel.h +++ b/src/libcalamaresui/utils/qjsonmodel.h @@ -17,6 +17,7 @@ class QJsonModel : public QAbstractItemModel Q_OBJECT public: explicit QJsonModel(QObject *parent = 0); + ~QJsonModel(); bool load(const QString& fileName); bool load(QIODevice * device); bool loadJson(const QByteArray& json); diff --git a/src/libcalamaresui/widgets/ClickableLabel.cpp b/src/libcalamaresui/widgets/ClickableLabel.cpp index d363737fe..543ab8354 100644 --- a/src/libcalamaresui/widgets/ClickableLabel.cpp +++ b/src/libcalamaresui/widgets/ClickableLabel.cpp @@ -21,13 +21,13 @@ #include -ClickableLabel::ClickableLabel( QWidget* parent, Qt::WindowFlags f ) - : QLabel( parent, f ) +ClickableLabel::ClickableLabel( QWidget* parent ) + : QLabel( parent ) {} -ClickableLabel::ClickableLabel( const QString& text, QWidget* parent, Qt::WindowFlags f ) - : QLabel( text, parent, f ) +ClickableLabel::ClickableLabel( const QString& text, QWidget* parent ) + : QLabel( text, parent ) {} diff --git a/src/libcalamaresui/widgets/ClickableLabel.h b/src/libcalamaresui/widgets/ClickableLabel.h index 42af076f5..378ffda77 100644 --- a/src/libcalamaresui/widgets/ClickableLabel.h +++ b/src/libcalamaresui/widgets/ClickableLabel.h @@ -27,8 +27,8 @@ class ClickableLabel : public QLabel { Q_OBJECT public: - explicit ClickableLabel( QWidget* parent = nullptr, Qt::WindowFlags f = 0 ); - explicit ClickableLabel( const QString& text, QWidget* parent = nullptr, Qt::WindowFlags f = 0 ); + explicit ClickableLabel( QWidget* parent = nullptr ); + explicit ClickableLabel( const QString& text, QWidget* parent = nullptr ); virtual ~ClickableLabel() override; signals: diff --git a/src/modules/CMakeLists.txt b/src/modules/CMakeLists.txt index 48cda5c72..d48ecd29f 100644 --- a/src/modules/CMakeLists.txt +++ b/src/modules/CMakeLists.txt @@ -1,5 +1,10 @@ include( CMakeColors ) +if( BUILD_TESTING ) + add_executable( test_conf test_conf.cpp ) + target_link_libraries( test_conf ${YAMLCPP_LIBRARY} ) +endif() + file( GLOB SUBDIRECTORIES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "*" ) string( REPLACE " " ";" SKIP_LIST "${SKIP_MODULES}" ) foreach( SUBDIRECTORY ${SUBDIRECTORIES} ) diff --git a/src/modules/bootloader/main.py b/src/modules/bootloader/main.py index c2cdc1108..1759f4500 100644 --- a/src/modules/bootloader/main.py +++ b/src/modules/bootloader/main.py @@ -8,11 +8,12 @@ # Copyright 2014, Daniel Hillenbrand # Copyright 2014, Benjamin Vaudour # Copyright 2014, Kevin Kofler -# Copyright 2015, Philip Mueller +# Copyright 2015-2017, Philip Mueller # Copyright 2016-2017, Teo Mrnjavac # Copyright 2017, Alf Gaida # Copyright 2017, Adriaan de Groot # Copyright 2017, Gabriel Craciunescu +# Copyright 2017, Ben Green # # Calamares is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -235,10 +236,18 @@ def install_grub(efi_directory, fw_type): # if the kernel is older than 4.0, the UEFI bitness likely isn't # exposed to the userspace so we assume a 64 bit UEFI here efi_bitness = "64" - bitness_translate = {"32": "--target=i386-efi", - "64": "--target=x86_64-efi"} + + if efi_bitness == "32": + efi_target = "i386-efi" + efi_grub_file = "grubia32.efi" + efi_boot_file = "bootia32.efi" + elif efi_bitness == "64": + efi_target = "x86_64-efi" + efi_grub_file = "grubx64.efi" + efi_boot_file = "bootx64.efi" + check_target_env_call([libcalamares.job.configuration["grubInstall"], - bitness_translate[efi_bitness], + "--target=" + efi_target, "--efi-directory=" + efi_directory, "--bootloader-id=" + efi_bootloader_id, "--force"]) @@ -260,13 +269,13 @@ def install_grub(efi_directory, fw_type): os.makedirs(install_efi_boot_directory) # Workaround for some UEFI firmwares - efi_file_source = {"32": os.path.join(install_efi_directory_firmware, - efi_bootloader_id, - "grubia32.efi"), - "64": os.path.join(install_efi_directory_firmware, - efi_bootloader_id, - "grubx64.efi")} - shutil.copy2(efi_file_source[efi_bitness], install_efi_boot_directory) + efi_file_source = os.path.join(install_efi_directory_firmware, + efi_bootloader_id, + efi_grub_file) + efi_file_target = os.path.join(install_efi_boot_directory, + efi_boot_file) + + shutil.copy2(efi_file_source, efi_file_target) else: print("Bootloader: grub (bios)") if libcalamares.globalstorage.value("bootLoader") is None: 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 ef66ad1d6..7b2ce2547 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 40d7f9f95..dde73d534 100644 --- a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: pavelrz , 2016\n" "Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n" @@ -20,7 +20,7 @@ msgstr "" #: src/modules/dummypythonqt/main.py:84 msgid "Click me!" -msgstr "Klikni na mě!" +msgstr "Klikněte na mě!" #: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." @@ -36,7 +36,7 @@ msgstr "Testovací úloha PythonQt" #: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" -msgstr "Toto je testovací úloha PythonQt. Testovací úloha říká: {}" +msgstr "Toto je testovací úloha PythonQt. Testovací úloha sděluje: {}" #: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." diff --git a/src/modules/dummypythonqt/lang/dummypythonqt.pot b/src/modules/dummypythonqt/lang/dummypythonqt.pot index 14e65bd02..ebc914037 100644 --- a/src/modules/dummypythonqt/lang/dummypythonqt.pot +++ b/src/modules/dummypythonqt/lang/dummypythonqt.pot @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: \n" diff --git a/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.mo index 2c39ac029..2b392393d 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/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po index 7efacecd5..4ccabfae3 100644 --- a/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po @@ -8,8 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-04 08:16-0400\n" +"POT-Creation-Date: 2017-09-28 10:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Paul Combal , 2017\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" @@ -19,11 +20,11 @@ msgstr "" #: src/modules/dummypythonqt/main.py:84 msgid "Click me!" -msgstr "" +msgstr "Cliquez-moi!" #: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." -msgstr "" +msgstr "Un nouveau QLabel." #: src/modules/dummypythonqt/main.py:97 msgid "Dummy PythonQt ViewStep" diff --git a/src/modules/finished/FinishedViewStep.cpp b/src/modules/finished/FinishedViewStep.cpp index d3beacb82..9aea9feaa 100644 --- a/src/modules/finished/FinishedViewStep.cpp +++ b/src/modules/finished/FinishedViewStep.cpp @@ -178,7 +178,7 @@ FinishedViewStep::setConfigurationMap( const QVariantMap& configurationMap ) configurationMap.value( "restartNowCommand" ).type() == QVariant::String ) m_widget->setRestartNowCommand( configurationMap.value( "restartNowCommand" ).toString() ); else - m_widget->setRestartNowCommand( "systemctl -i reboot" ); + m_widget->setRestartNowCommand( "shutdown -r now" ); } } if ( configurationMap.contains( "notifyOnFinished" ) && diff --git a/src/modules/finished/finished.conf b/src/modules/finished/finished.conf index 6bd8bb2d6..29e5e49b4 100644 --- a/src/modules/finished/finished.conf +++ b/src/modules/finished/finished.conf @@ -1,14 +1,18 @@ -Configuration for the "finished" page, which is usually shown only at -the end of the installation (successful or not). +# 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 show and the system is not restarted +# 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". + +# 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 diff --git a/src/modules/initramfscfg/main.py b/src/modules/initramfscfg/main.py index d935328d6..aa63e659b 100644 --- a/src/modules/initramfscfg/main.py +++ b/src/modules/initramfscfg/main.py @@ -24,6 +24,8 @@ # along with Calamares. If not, see . import libcalamares + +import inspect import os import shutil diff --git a/src/modules/interactiveterminal/CMakeLists.txt b/src/modules/interactiveterminal/CMakeLists.txt index 7b35fae0d..04c5406ce 100644 --- a/src/modules/interactiveterminal/CMakeLists.txt +++ b/src/modules/interactiveterminal/CMakeLists.txt @@ -21,6 +21,7 @@ calamares_add_plugin( interactiveterminal InteractiveTerminalPage.cpp LINK_PRIVATE_LIBRARIES calamaresui + LINK_LIBRARIES KF5::Service KF5::Parts SHARED_LIB diff --git a/src/modules/keyboard/keyboard.conf b/src/modules/keyboard/keyboard.conf index 9f8f27524..ee97c3939 100644 --- a/src/modules/keyboard/keyboard.conf +++ b/src/modules/keyboard/keyboard.conf @@ -1,3 +1,5 @@ +# 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. diff --git a/src/modules/keyboard/keyboardwidget/keyboardpreview.cpp b/src/modules/keyboard/keyboardwidget/keyboardpreview.cpp index f9fdf72e8..2916cbdf4 100644 --- a/src/modules/keyboard/keyboardwidget/keyboardpreview.cpp +++ b/src/modules/keyboard/keyboardwidget/keyboardpreview.cpp @@ -20,6 +20,7 @@ * along with Calamares. If not, see . */ +#include "utils/Logger.h" #include "keyboardpreview.h" KeyBoardPreview::KeyBoardPreview( QWidget* parent ) @@ -113,10 +114,16 @@ bool KeyBoardPreview::loadCodes() { process.setEnvironment(QStringList() << "LANG=C" << "LC_MESSAGES=C"); process.start("ckbcomp", param); if (!process.waitForStarted()) + { + cDebug() << "WARNING: ckbcomp not found , keyboard preview disabled"; return false; + } if (!process.waitForFinished()) + { + cDebug() << "WARNING: ckbcomp failed, keyboard preview disabled"; return false; + } // Clear codes codes.clear(); diff --git a/src/modules/locale/timezonewidget/timezonewidget.cpp b/src/modules/locale/timezonewidget/timezonewidget.cpp index b8713e107..c9dce5270 100644 --- a/src/modules/locale/timezonewidget/timezonewidget.cpp +++ b/src/modules/locale/timezonewidget/timezonewidget.cpp @@ -1,6 +1,7 @@ /* === This file is part of Calamares - === * * Copyright 2014-2015, Teo Mrnjavac + * Copyright 2017, Adriaan de Groot * * Originally from the Manjaro Installation Framework * by Roland Singer @@ -20,61 +21,70 @@ * along with Calamares. If not, see . */ +#include + #include "timezonewidget.h" -TimeZoneWidget::TimeZoneWidget(QWidget* parent) : - QWidget(parent) +constexpr double MATH_PI = 3.14159265; + +TimeZoneWidget::TimeZoneWidget( QWidget* parent ) : + QWidget( parent ) { - setMouseTracking(false); - setCursor(Qt::PointingHandCursor); + setMouseTracking( false ); + setCursor( Qt::PointingHandCursor ); // Font - font.setPointSize(12); - font.setBold(false); + font.setPointSize( 12 ); + font.setBold( false ); // Images - background = QImage(":/images/bg.png").scaled(X_SIZE, Y_SIZE, Qt::IgnoreAspectRatio, Qt::SmoothTransformation); - pin = QImage(":/images/pin.png"); + background = QImage( ":/images/bg.png" ).scaled( X_SIZE, Y_SIZE, Qt::IgnoreAspectRatio, Qt::SmoothTransformation ); + pin = QImage( ":/images/pin.png" ); // Set size - setMinimumSize(background.size()); - setMaximumSize(background.size()); + setMinimumSize( background.size() ); + setMaximumSize( background.size() ); // Zone images - QStringList zones = QString(ZONES).split(" ", QString::SkipEmptyParts); - for (int i = 0; i < zones.size(); ++i) - timeZoneImages.append(QImage(":/images/timezone_" + zones.at(i) + ".png").scaled(X_SIZE, Y_SIZE, Qt::IgnoreAspectRatio, Qt::SmoothTransformation)); + QStringList zones = QString( ZONES ).split( " ", QString::SkipEmptyParts ); + for ( int i = 0; i < zones.size(); ++i ) + timeZoneImages.append( QImage( ":/images/timezone_" + zones.at( i ) + ".png" ).scaled( X_SIZE, Y_SIZE, Qt::IgnoreAspectRatio, Qt::SmoothTransformation ) ); } -void TimeZoneWidget::setCurrentLocation(QString region, QString zone) { +void TimeZoneWidget::setCurrentLocation( QString region, QString zone ) +{ QHash > hash = LocaleGlobal::getLocations(); - if (!hash.contains(region)) + if ( !hash.contains( region ) ) return; - QList locations = hash.value(region); - for (int i = 0; i < locations.size(); ++i) { - if (locations.at(i).zone == zone) { - setCurrentLocation(locations.at(i)); + QList locations = hash.value( region ); + for ( int i = 0; i < locations.size(); ++i ) + { + if ( locations.at( i ).zone == zone ) + { + setCurrentLocation( locations.at( i ) ); break; } } } - -void TimeZoneWidget::setCurrentLocation(LocaleGlobal::Location location) { +void TimeZoneWidget::setCurrentLocation( LocaleGlobal::Location location ) +{ currentLocation = location; // Set zone - QPoint pos = getLocationPosition(currentLocation.longitude, currentLocation.latitude); + QPoint pos = getLocationPosition( currentLocation.longitude, currentLocation.latitude ); - for (int i = 0; i < timeZoneImages.size(); ++i) { + for ( int i = 0; i < timeZoneImages.size(); ++i ) + { QImage zone = timeZoneImages[i]; // If not transparent set as current - if (zone.pixel(pos) != RGB_TRANSPARENT) { + if ( zone.pixel( pos ) != RGB_TRANSPARENT ) + { currentZoneImage = zone; break; } @@ -91,74 +101,87 @@ void TimeZoneWidget::setCurrentLocation(LocaleGlobal::Location location) { //### -QPoint TimeZoneWidget::getLocationPosition(double longitude, double latitude) { +QPoint TimeZoneWidget::getLocationPosition( double longitude, double latitude ) +{ const int width = this->width(); const int height = this->height(); - double x = (width / 2.0 + (width / 2.0) * longitude / 180.0) + MAP_X_OFFSET * width; - double y = (height / 2.0 - (height / 2.0) * latitude / 90.0) + MAP_Y_OFFSET * height; + double x = ( width / 2.0 + ( width / 2.0 ) * longitude / 180.0 ) + MAP_X_OFFSET * width; + double y = ( height / 2.0 - ( height / 2.0 ) * latitude / 90.0 ) + MAP_Y_OFFSET * height; - if (x < 0) + //Far north, the MAP_Y_OFFSET no longer holds, cancel the Y offset; it's noticeable + // from 62 degrees north, so scale those 28 degrees as if the world is flat south + // of there, and we have a funny "rounded" top of the world. In practice the locations + // of the different cities / regions looks ok -- at least Thule ends up in the right + // country, and Inuvik isn't in the ocean. + if ( latitude > 62.0 ) + y -= sin( MATH_PI * ( latitude - 62.0 ) / 56.0 ) * MAP_Y_OFFSET * height; + // Antarctica isn't shown on the map, but you could try clicking there + if ( latitude < -60 ) + y = height - 1; + + if ( x < 0 ) x = width+x; - if (x >= width) + if ( x >= width ) x -= width; - if (y < 0) + if ( y < 0 ) y = height+y; - if (y >= height) + if ( y >= height ) y -= height; - return QPoint((int)x, (int)y); + return QPoint( int(x), int(y) ); } - -void TimeZoneWidget::paintEvent(QPaintEvent*) { +void TimeZoneWidget::paintEvent( QPaintEvent* ) +{ const int width = this->width(); const int height = this->height(); - QFontMetrics fontMetrics(font); - QPainter painter(this); + QFontMetrics fontMetrics( font ); + QPainter painter( this ); - painter.setRenderHint(QPainter::Antialiasing); - painter.setFont(font); + painter.setRenderHint( QPainter::Antialiasing ); + painter.setFont( font ); // Draw background - painter.drawImage(0, 0, background); + painter.drawImage( 0, 0, background ); // Draw zone image - painter.drawImage(0, 0, currentZoneImage); + painter.drawImage( 0, 0, currentZoneImage ); // Draw pin - QPoint point = getLocationPosition(currentLocation.longitude, currentLocation.latitude); - painter.drawImage(point.x() - pin.width()/2, point.y() - pin.height()/2, pin); + QPoint point = getLocationPosition( currentLocation.longitude, currentLocation.latitude ); + painter.drawImage( point.x() - pin.width()/2, point.y() - pin.height()/2, pin ); // Draw text and box - const int textWidth = fontMetrics.width(LocaleGlobal::Location::pretty(currentLocation.zone)); + const int textWidth = fontMetrics.width( LocaleGlobal::Location::pretty( currentLocation.zone ) ); const int textHeight = fontMetrics.height(); - QRect rect = QRect(point.x() - textWidth/2 - 5, point.y() - textHeight - 8, textWidth + 10, textHeight - 2); + QRect rect = QRect( point.x() - textWidth/2 - 5, point.y() - textHeight - 8, textWidth + 10, textHeight - 2 ); - if (rect.x() <= 5) - rect.moveLeft(5); - if (rect.right() >= width-5) - rect.moveRight(width - 5); - if (rect.y() <= 5) - rect.moveTop(5); - if (rect.y() >= height-5) - rect.moveBottom(height-5); + if ( rect.x() <= 5 ) + rect.moveLeft( 5 ); + if ( rect.right() >= width-5 ) + rect.moveRight( width - 5 ); + if ( rect.y() <= 5 ) + rect.moveTop( 5 ); + if ( rect.y() >= height-5 ) + rect.moveBottom( height-5 ); - painter.setPen(QPen()); // no pen - painter.setBrush(QColor(40, 40, 40)); - painter.drawRoundedRect(rect, 3, 3); - painter.setPen(Qt::white); - painter.drawText(rect.x() + 5, rect.bottom() - 4, LocaleGlobal::Location::pretty(currentLocation.zone)); + painter.setPen( QPen() ); // no pen + painter.setBrush( QColor( 40, 40, 40 ) ); + painter.drawRoundedRect( rect, 3, 3 ); + painter.setPen( Qt::white ); + painter.drawText( rect.x() + 5, rect.bottom() - 4, LocaleGlobal::Location::pretty( currentLocation.zone ) ); painter.end(); } -void TimeZoneWidget::mousePressEvent(QMouseEvent* event) { - if (event->button() != Qt::LeftButton) +void TimeZoneWidget::mousePressEvent( QMouseEvent* event ) +{ + if ( event->button() != Qt::LeftButton ) return; // Set nearest location @@ -167,14 +190,17 @@ void TimeZoneWidget::mousePressEvent(QMouseEvent* event) { QHash > hash = LocaleGlobal::getLocations(); QHash >::iterator iter = hash.begin(); - while (iter != hash.end()) { + while ( iter != hash.end() ) + { QList locations = iter.value(); - for (int i = 0; i < locations.size(); ++i) { + for ( int i = 0; i < locations.size(); ++i ) + { LocaleGlobal::Location loc = locations[i]; - QPoint locPos = getLocationPosition(loc.longitude, loc.latitude); + QPoint locPos = getLocationPosition( loc.longitude, loc.latitude ); - if ((abs(mX - locPos.x()) + abs(mY - locPos.y()) < abs(mX - nX) + abs(mY - nY))) { + if ( ( abs( mX - locPos.x() ) + abs( mY - locPos.y() ) < abs( mX - nX ) + abs( mY - nY ) ) ) + { currentLocation = loc; nX = locPos.x(); nY = locPos.y(); @@ -185,8 +211,8 @@ void TimeZoneWidget::mousePressEvent(QMouseEvent* event) { } // Set zone image and repaint widget - setCurrentLocation(currentLocation); + setCurrentLocation( currentLocation ); // Emit signal - emit locationChanged(currentLocation); + emit locationChanged( currentLocation ); } diff --git a/src/modules/locale/timezonewidget/timezonewidget.h b/src/modules/locale/timezonewidget/timezonewidget.h index 27256fabe..4773695ee 100644 --- a/src/modules/locale/timezonewidget/timezonewidget.h +++ b/src/modules/locale/timezonewidget/timezonewidget.h @@ -48,14 +48,17 @@ class TimeZoneWidget : public QWidget { Q_OBJECT public: - explicit TimeZoneWidget(QWidget* parent = 0); + explicit TimeZoneWidget( QWidget* parent = nullptr ); - LocaleGlobal::Location getCurrentLocation() { return currentLocation; } - void setCurrentLocation(QString region, QString zone); - void setCurrentLocation(LocaleGlobal::Location location); + LocaleGlobal::Location getCurrentLocation() + { + return currentLocation; + } + void setCurrentLocation( QString region, QString zone ); + void setCurrentLocation( LocaleGlobal::Location location ); signals: - void locationChanged(LocaleGlobal::Location location); + void locationChanged( LocaleGlobal::Location location ); private: QFont font; @@ -63,10 +66,14 @@ private: QList timeZoneImages; LocaleGlobal::Location currentLocation; - QPoint getLocationPosition(double longitude, double latitude); + QPoint getLocationPosition( const LocaleGlobal::Location& l ) + { + return getLocationPosition( l.longitude, l.latitude ); + } + QPoint getLocationPosition( double longitude, double latitude ); - void paintEvent(QPaintEvent* event); - void mousePressEvent(QMouseEvent* event); + void paintEvent( QPaintEvent* event ); + void mousePressEvent( QMouseEvent* event ); }; #endif // TIMEZONEWIDGET_H diff --git a/src/modules/netinstall/NetInstallPage.cpp b/src/modules/netinstall/NetInstallPage.cpp index 7bfda320c..9c16433ec 100644 --- a/src/modules/netinstall/NetInstallPage.cpp +++ b/src/modules/netinstall/NetInstallPage.cpp @@ -3,6 +3,7 @@ * Copyright 2016, Lisa Vitolo * Copyright 2017, Kyle Robbertze * Copyright 2017, Adriaan de Groot + * Copyright 2017, Gabriel Craciunescu * * Calamares is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -77,7 +78,7 @@ NetInstallPage::readGroups( const QByteArray& yamlData ) m_groups = new PackageModel( groups ); CALAMARES_RETRANSLATE( m_groups->setHeaderData( 0, Qt::Horizontal, tr( "Name" ) ); - m_groups->setHeaderData( 0, Qt::Horizontal, tr( "Description" ) ); ) + m_groups->setHeaderData( 1, Qt::Horizontal, tr( "Description" ) ); ) return true; } @@ -101,7 +102,7 @@ NetInstallPage::dataIsHere( QNetworkReply* reply ) if ( !readGroups( reply->readAll() ) ) { cDebug() << "Netinstall groups data was received, but invalid."; - ui->netinst_status->setText( tr( "Network Installation. (Disabled: Unable to fetch package lists, check your network connection)" ) ); + ui->netinst_status->setText( tr( "Network Installation. (Disabled: Received invalid groups data)" ) ); reply->deleteLater(); return; } diff --git a/src/modules/netinstall/NetInstallViewStep.cpp b/src/modules/netinstall/NetInstallViewStep.cpp index c714418df..347b2bf27 100644 --- a/src/modules/netinstall/NetInstallViewStep.cpp +++ b/src/modules/netinstall/NetInstallViewStep.cpp @@ -126,18 +126,26 @@ NetInstallViewStep::onLeave() cDebug() << "Leaving netinstall, adding packages to be installed" << "to global storage"; - QMap packagesWithOperation; QList packages = m_widget->selectedPackages(); QVariantList installPackages; QVariantList tryInstallPackages; - cDebug() << "Processing"; + QVariantList packageOperations; + + cDebug() << "Processing" << packages.length() << "packages from netinstall."; for ( auto package : packages ) { - QMap details; - details.insert( "pre-script", package.preScript ); - details.insert( "package", package.packageName ); - details.insert( "post-script", package.postScript ); + QVariant details( package.packageName ); + // If it's a package with a pre- or post-script, replace + // with the more complicated datastructure. + if (!package.preScript.isEmpty() || !package.postScript.isEmpty()) + { + QMap sdetails; + sdetails.insert( "pre-script", package.preScript ); + sdetails.insert( "package", package.packageName ); + sdetails.insert( "post-script", package.postScript ); + details = sdetails; + } if ( package.isCritical ) installPackages.append( details ); else @@ -145,14 +153,24 @@ NetInstallViewStep::onLeave() } if ( !installPackages.empty() ) - packagesWithOperation.insert( "install", QVariant( installPackages ) ); + { + QMap op; + op.insert( "install", QVariant( installPackages ) ); + packageOperations.append(op); + cDebug() << " .." << installPackages.length() << "critical packages."; + } if ( !tryInstallPackages.empty() ) - packagesWithOperation.insert( "try_install", QVariant( tryInstallPackages ) ); + { + QMap op; + op.insert( "try_install", QVariant( tryInstallPackages ) ); + packageOperations.append(op); + cDebug() << " .." << tryInstallPackages.length() << "non-critical packages."; + } - if ( !packagesWithOperation.isEmpty() ) + if ( !packageOperations.isEmpty() ) { Calamares::GlobalStorage* gs = Calamares::JobQueue::instance()->globalStorage(); - gs->insert( "packageOperations", QVariant( packagesWithOperation ) ); + gs->insert( "packageOperations", QVariant( packageOperations ) ); } } diff --git a/src/modules/netinstall/README.md b/src/modules/netinstall/README.md index 5d199a559..6478a844e 100644 --- a/src/modules/netinstall/README.md +++ b/src/modules/netinstall/README.md @@ -6,6 +6,7 @@ At installation time, the user is presented with the choice to install groups of Calamares will then invoke the correct backend to install the packages. ## Configuration of the packages + Every distribution can choose which groups to display and which packages should be in the groups. The *netinstall.conf* file should have this format: @@ -48,7 +49,8 @@ If you set both *hidden* and *selected* for a group, you are basically creating which will always be installed in the user's system. ## Configuration of the module -Here is the set of instructions to have the module work in your Calamares. As of July 2016, this has been successfully + +Here is the set of instructions to have the module work in your Calamares. As of July 2016, this has been successfully tested using the live installation of Chakra Fermi. First, if the module is used, we need to require a working Internet connection, otherwise the module will be @@ -63,7 +65,8 @@ If not present, add the **packages** job in the **exec** list. This is the job t to install packages. Make sure it is configured to use the correct package manager for your distribution; this is configured in src/modules/packages/packages.conf. -The exec list should be: +The **exec** list in *settings.conf* should contain the following items in +order (it's ok for other jobs to be listed inbetween them, though): - unpackfs - networkcfg @@ -74,10 +77,10 @@ structure; **networkcfg** set ups a working network in the chroot; and finally * in the chroot. ## Common issues + If launching the package manager command returns you negative exit statuses and nothing is actually invoked, this is likely an error in the setup of the chroot; check that the parameter **rootMountPoint** is set to the correct value in the Calamares configuration. If the command is run, but exits with error, check that the network is working in the chroot. Make sure /etc/resolv.conf exists and that it's not empty. - diff --git a/src/modules/packages/main.py b/src/modules/packages/main.py index 48caae6bd..bbee9c32d 100644 --- a/src/modules/packages/main.py +++ b/src/modules/packages/main.py @@ -344,10 +344,18 @@ def subst_locale(plist): def run_operations(pkgman, entry): """ - Call package manager with given parameters. + Call package manager with suitable parameters for the given + package actions. - :param pkgman: - :param entry: + :param pkgman: PackageManager + This is the manager that does the actual work. + :param entry: dict + Keys are the actions -- e.g. "install" -- to take, and the values + are the (list of) packages to apply the action to. The actions are + not iterated in a specific order, so it is recommended to use only + one action per dictionary. The list of packages may be package + names (strings) or package information dictionaries with pre- + and post-scripts. """ global group_packages, completed_packages, mode_packages diff --git a/src/modules/partition/CMakeLists.txt b/src/modules/partition/CMakeLists.txt index 1ea69c027..a60801531 100644 --- a/src/modules/partition/CMakeLists.txt +++ b/src/modules/partition/CMakeLists.txt @@ -8,11 +8,26 @@ find_package( KF5 REQUIRED CoreAddons ) # These are needed because KPMcore links publicly against ConfigCore, I18n, IconThemes, KIOCore and Service find_package( KF5 REQUIRED Config I18n IconThemes KIO Service ) +# Compatibility: KPMCore 3.2 has a different API, so detect it +# first and add a define for it; otherwise we need 3.0.3 for NVMe +# support; 3.0.2 works as well, but is buggy (#697) find_package( KPMcore 3.1.50 QUIET ) -if ( ${KPMcore_FOUND} ) +if ( KPMcore_FOUND ) add_definitions(-DWITH_KPMCORE22) endif() -find_package( KPMcore 3.0.3 REQUIRED ) +find_package( KPMcore 3.0.3 QUIET ) +# 3.0.3 and newer has fixes for NVMe support; allow 3.0.2, but warn +# about it .. needs to use a different feature name because it otherwise +# gets reported as KPMcore (the package). +if ( KPMcore_FOUND ) + message( STATUS "KPMCore supports NVMe operations" ) + add_feature_info( KPMcoreNVMe KPMcore_FOUND "KPMcore with NVMe support" ) +else() + find_package( KPMcore 3.0.2 REQUIRED ) + message( WARNING "KPMCore 3.0.2 is known to have bugs with NVMe devices" ) + add_feature_info( KPMcoreNVMe KPMcore_FOUND "Older KPMcore with no NVMe support" ) +endif() + find_library( atasmart_LIB atasmart ) find_library( blkid_LIB blkid ) if( NOT atasmart_LIB ) @@ -58,7 +73,6 @@ calamares_add_plugin( partition gui/PrettyRadioButton.cpp gui/ScanningDialog.cpp gui/ReplaceWidget.cpp - jobs/CheckFileSystemJob.cpp jobs/ClearMountsJob.cpp jobs/ClearTempMountsJob.cpp jobs/CreatePartitionJob.cpp @@ -66,7 +80,6 @@ calamares_add_plugin( partition jobs/DeletePartitionJob.cpp jobs/FillGlobalStorageJob.cpp jobs/FormatPartitionJob.cpp - jobs/MoveFileSystemJob.cpp jobs/PartitionJob.cpp jobs/ResizePartitionJob.cpp jobs/SetPartitionFlagsJob.cpp diff --git a/src/modules/partition/core/ColorUtils.cpp b/src/modules/partition/core/ColorUtils.cpp index eb3150ab7..2f9710057 100644 --- a/src/modules/partition/core/ColorUtils.cpp +++ b/src/modules/partition/core/ColorUtils.cpp @@ -24,6 +24,7 @@ // KPMcore #include +#include // Qt #include @@ -86,9 +87,19 @@ colorForPartition( Partition* partition ) return EXTENDED_COLOR; if ( partition->fileSystem().supportGetUUID() != FileSystem::cmdSupportNone && - !partition->fileSystem().uuid().isEmpty() && - s_partitionColorsCache.contains( partition->fileSystem().uuid() ) ) - return s_partitionColorsCache[ partition->fileSystem().uuid() ]; + !partition->fileSystem().uuid().isEmpty() ) + { + if ( partition->fileSystem().type() == FileSystem::Luks ) + { + FS::luks& luksFs = dynamic_cast< FS::luks& >( partition->fileSystem() ); + if ( !luksFs.outerUuid().isEmpty() && + s_partitionColorsCache.contains( luksFs.outerUuid() ) ) + return s_partitionColorsCache[ luksFs.outerUuid() ]; + } + + if ( s_partitionColorsCache.contains( partition->fileSystem().uuid() ) ) + return s_partitionColorsCache[ partition->fileSystem().uuid() ]; + } // No partition-specific color needed, pick one from our list, but skip // free space: we don't want a partition to change colors if space before @@ -119,8 +130,20 @@ colorForPartition( Partition* partition ) if ( partition->fileSystem().supportGetUUID() != FileSystem::cmdSupportNone && !partition->fileSystem().uuid().isEmpty() ) - s_partitionColorsCache.insert( partition->fileSystem().uuid(), - PARTITION_COLORS[ colorIdx % NUM_PARTITION_COLORS ] ); + { + if ( partition->fileSystem().type() == FileSystem::Luks ) + { + FS::luks& luksFs = dynamic_cast< FS::luks& >( partition->fileSystem() ); + if ( !luksFs.outerUuid().isEmpty() ) + { + s_partitionColorsCache.insert( luksFs.outerUuid(), + PARTITION_COLORS[ colorIdx % NUM_PARTITION_COLORS ] ); + } + } + else + s_partitionColorsCache.insert( partition->fileSystem().uuid(), + PARTITION_COLORS[ colorIdx % NUM_PARTITION_COLORS ] ); + } return PARTITION_COLORS[ colorIdx % NUM_PARTITION_COLORS ]; } diff --git a/src/modules/partition/jobs/CheckFileSystemJob.cpp b/src/modules/partition/jobs/CheckFileSystemJob.cpp deleted file mode 100644 index 3d694f69a..000000000 --- a/src/modules/partition/jobs/CheckFileSystemJob.cpp +++ /dev/null @@ -1,83 +0,0 @@ -/* === This file is part of Calamares - === - * - * Copyright 2014, Aurélien Gâteau - * Copyright 2016, Teo Mrnjavac - * - * 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 "jobs/CheckFileSystemJob.h" - -#include - -// KPMcore -#include -#include -#include - -#include - -CheckFileSystemJob::CheckFileSystemJob( Partition* partition ) - : PartitionJob( partition ) -{} - -QString -CheckFileSystemJob::prettyName() const -{ - QString path = partition()->partitionPath(); - return tr( "Checking file system on partition %1." ).arg( path ); -} - - -QString -CheckFileSystemJob::prettyStatusMessage() const -{ - return prettyName(); -} - - -Calamares::JobResult -CheckFileSystemJob::exec() -{ - FileSystem& fs = partition()->fileSystem(); - - // if we cannot check, assume everything is fine - if ( fs.supportCheck() != FileSystem::cmdSupportFileSystem ) - return Calamares::JobResult::ok(); - - Report report( nullptr ); - bool ok = fs.check( report, partition()->partitionPath() ); - int retries = 0; - const int MAX_RETRIES = 10; - while ( !ok ) - { - cDebug() << "Partition" << partition()->partitionPath() - << "might not be ready yet, retrying (" << ++retries - << "/" << MAX_RETRIES << ") ..."; - QThread::sleep( 2 /*seconds*/ ); - ok = fs.check( report, partition()->partitionPath() ); - - if ( retries == MAX_RETRIES ) - break; - } - - if ( !ok ) - return Calamares::JobResult::error( - tr( "The file system check on partition %1 failed." ) - .arg( partition()->partitionPath() ), - report.toText() - ); - - return Calamares::JobResult::ok(); -} diff --git a/src/modules/partition/jobs/CheckFileSystemJob.h b/src/modules/partition/jobs/CheckFileSystemJob.h deleted file mode 100644 index 7dba8f493..000000000 --- a/src/modules/partition/jobs/CheckFileSystemJob.h +++ /dev/null @@ -1,38 +0,0 @@ -/* === This file is part of Calamares - === - * - * Copyright 2014, Aurélien Gâteau - * - * 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 CHECKFILESYSTEMJOB_H -#define CHECKFILESYSTEMJOB_H - -#include - -/** - * Runs a file system check on an existing partition. - */ -class CheckFileSystemJob : public PartitionJob -{ - Q_OBJECT -public: - CheckFileSystemJob( Partition* partition ); - - QString prettyName() const override; - QString prettyStatusMessage() const override; - Calamares::JobResult exec() override; -}; - -#endif /* CHECKFILESYSTEMJOB_H */ diff --git a/src/modules/partition/jobs/MoveFileSystemJob.cpp b/src/modules/partition/jobs/MoveFileSystemJob.cpp deleted file mode 100644 index fbcc4641c..000000000 --- a/src/modules/partition/jobs/MoveFileSystemJob.cpp +++ /dev/null @@ -1,239 +0,0 @@ -/* === This file is part of Calamares - === - * - * Copyright 2014, Aurélien Gâteau - * - * 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 . - */ - -// This class is heavily based on the MoveFileSystemJob class from KDE Partition -// Manager. -// The copyBlock functions come from Partition Manager Job class. -// Original copyright follow: - -/*************************************************************************** - * Copyright (C) 2008 by Volker Lanz * - * * - * This program 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 2 of the License, or * - * (at your option) any later version. * - * * - * This program 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 this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * - ***************************************************************************/ - -#include - -#include - -// KPMcore -#include -#include -#include -#include -#include -#include - -MoveFileSystemJob::MoveFileSystemJob( Device* device, Partition* partition, qint64 oldFirstSector, qint64 newFirstSector, qint64 length ) - : PartitionJob( partition ) - , m_device( device ) - , m_oldFirstSector( oldFirstSector ) - , m_newFirstSector( newFirstSector ) - , m_length( length ) -{} - -QString -MoveFileSystemJob::prettyName() const -{ - return tr( "Move file system of partition %1." ).arg( partition()->partitionPath() ); -} - -Calamares::JobResult -MoveFileSystemJob::exec() -{ - Report report( nullptr ); - QString partitionPath = partition()->partitionPath(); - CopySourceDevice moveSource( *m_device, m_oldFirstSector, m_oldFirstSector + m_length - 1 ); - CopyTargetDevice moveTarget( *m_device, m_newFirstSector, m_newFirstSector + m_length - 1 ); - - if ( !moveSource.open() ) - return Calamares::JobResult::error( - QString(), - tr( "Could not open file system on partition %1 for moving." ).arg( partitionPath ) - ); - - if ( !moveTarget.open() ) - return Calamares::JobResult::error( - QString(), - tr( "Could not create target for moving file system on partition %1." ).arg( partitionPath ) - ); - - bool ok = copyBlocks( report, moveTarget, moveSource ); - if ( !ok ) - { - if ( rollbackCopyBlocks( report, moveTarget, moveSource ) ) - return Calamares::JobResult::error( - QString(), - tr( "Moving of partition %1 failed, changes have been rolled back." ).arg( partitionPath ) - + '\n' + report.toText() - ); - else - return Calamares::JobResult::error( - QString(), - tr( "Moving of partition %1 failed. Roll back of the changes have failed." ).arg( partitionPath ) - + '\n' + report.toText() - ); - } - - FileSystem& fs = partition()->fileSystem(); - fs.setFirstSector( m_newFirstSector ); - fs.setLastSector( m_newFirstSector + m_length - 1 ); - - if ( !fs.updateBootSector( report, partitionPath ) ) - return Calamares::JobResult::error( - QString(), - tr( "Updating boot sector after the moving of partition %1 failed." ).arg( partitionPath ) - + '\n' + report.toText() - ); - - return Calamares::JobResult::ok(); -} - -bool -MoveFileSystemJob::copyBlocks( Report& report, CopyTargetDevice& target, CopySourceDevice& source ) -{ - /** @todo copyBlocks() assumes that source.sectorSize() == target.sectorSize(). */ - - if ( source.sectorSize() != target.sectorSize() ) - { - report.line() << tr( "The logical sector sizes in the source and target for copying are not the same. This is currently unsupported." ); - return false; - } - - bool rval = true; - const qint64 blockSize = 16065 * 8; // number of sectors per block to copy - const qint64 blocksToCopy = source.length() / blockSize; - - qint64 readOffset = source.firstSector(); - qint64 writeOffset = target.firstSector(); - qint32 copyDir = 1; - - if ( target.firstSector() > source.firstSector() ) - { - readOffset = source.firstSector() + source.length() - blockSize; - writeOffset = target.firstSector() + source.length() - blockSize; - copyDir = -1; - } - - qint64 blocksCopied = 0; - - Q_ASSERT( blockSize > 0 ); - Q_ASSERT( source.sectorSize() > 0 ); - Q_ASSERT( blockSize * source.sectorSize() > 0 ); - - void* buffer = malloc( size_t( blockSize * source.sectorSize() ) ); - qint64 percent = 0; - - while ( blocksCopied < blocksToCopy ) - { - rval = source.readSectors( buffer, readOffset + blockSize * blocksCopied * copyDir, blockSize ); - if ( !rval ) - break; - - rval = target.writeSectors( buffer, writeOffset + blockSize * blocksCopied * copyDir, blockSize ); - if ( !rval ) - break; - - if ( ++blocksCopied * 100 / blocksToCopy != percent ) - { - percent = blocksCopied * 100 / blocksToCopy; - progress( percent / 100. ); - } - } - - const qint64 lastBlock = source.length() % blockSize; - - // copy the remainder - if ( rval && lastBlock > 0 ) - { - Q_ASSERT( lastBlock < blockSize ); - - const qint64 lastBlockReadOffset = copyDir > 0 ? readOffset + blockSize * blocksCopied : source.firstSector(); - const qint64 lastBlockWriteOffset = copyDir > 0 ? writeOffset + blockSize * blocksCopied : target.firstSector(); - - rval = source.readSectors( buffer, lastBlockReadOffset, lastBlock ); - - if ( rval ) - rval = target.writeSectors( buffer, lastBlockWriteOffset, lastBlock ); - - if ( rval ) - emit progress( 1.0 ); - } - - free( buffer ); - - return rval; -} - -bool -MoveFileSystemJob::rollbackCopyBlocks( Report& report, CopyTargetDevice& origTarget, CopySourceDevice& origSource ) -{ - if ( !origSource.overlaps( origTarget ) ) - { - report.line() << tr( "Source and target for copying do not overlap: Rollback is not required." ); - return true; - } - - // default: use values as if we were copying from front to back. - qint64 undoSourceFirstSector = origTarget.firstSector(); - qint64 undoSourceLastSector = origTarget.firstSector() + origTarget.sectorsWritten() - 1; - - qint64 undoTargetFirstSector = origSource.firstSector(); - qint64 undoTargetLastSector = origSource.firstSector() + origTarget.sectorsWritten() - 1; - - if ( origTarget.firstSector() > origSource.firstSector() ) - { - // we were copying from back to front - undoSourceFirstSector = origTarget.firstSector() + origSource.length() - origTarget.sectorsWritten(); - undoSourceLastSector = origTarget.firstSector() + origSource.length() - 1; - - undoTargetFirstSector = origSource.lastSector() - origTarget.sectorsWritten() + 1; - undoTargetLastSector = origSource.lastSector(); - } - - CopySourceDevice undoSource( origTarget.device(), undoSourceFirstSector, undoSourceLastSector ); - if ( !undoSource.open() ) - { - report.line() << tr( "Could not open device %1 to rollback copying." ) - .arg( origTarget.device().deviceNode() ); - return false; - } - - CopyTargetDevice undoTarget( origSource.device(), undoTargetFirstSector, undoTargetLastSector ); - if ( !undoTarget.open() ) - { - report.line() << tr( "Could not open device %1 to rollback copying." ) - .arg( origSource.device().deviceNode() ); - return false; - } - - return copyBlocks( report, undoTarget, undoSource ); -} diff --git a/src/modules/partition/jobs/MoveFileSystemJob.h b/src/modules/partition/jobs/MoveFileSystemJob.h deleted file mode 100644 index f2ae6d741..000000000 --- a/src/modules/partition/jobs/MoveFileSystemJob.h +++ /dev/null @@ -1,76 +0,0 @@ -/* === This file is part of Calamares - === - * - * Copyright 2014, Aurélien Gâteau - * - * 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 . - */ - -// This class is heavily based on the MoveFileSystemJob class from KDE Partition -// Manager. Original copyright follow: - -/*************************************************************************** - * Copyright (C) 2008 by Volker Lanz * - * * - * This program 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 2 of the License, or * - * (at your option) any later version. * - * * - * This program 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 this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * - ***************************************************************************/ -#ifndef MOVEFILESYSTEMJOB_H -#define MOVEFILESYSTEMJOB_H - -#include - -class CopySourceDevice; -class CopyTargetDevice; -class Device; -class Partition; -class Report; - -/** - * This job moves the data of a filesystem from one position on the disk to - * another. - * - * It is used by the ResizePartitionJob. - */ -class MoveFileSystemJob : public PartitionJob -{ - Q_OBJECT -public: - MoveFileSystemJob( Device* device, Partition* partition, qint64 oldFirstSector, qint64 newFirstSector, qint64 length ); - - QString prettyName() const override; - - Calamares::JobResult exec() override; - -private: - Device* m_device; - qint64 m_oldFirstSector; - qint64 m_newFirstSector; - qint64 m_length; - bool copyBlocks( Report& report, CopyTargetDevice& target, CopySourceDevice& source ); - bool rollbackCopyBlocks( Report& report, CopyTargetDevice& origTarget, CopySourceDevice& origSource ); -}; - -#endif /* MOVEFILESYSTEMJOB_H */ diff --git a/src/modules/partition/jobs/ResizePartitionJob.cpp b/src/modules/partition/jobs/ResizePartitionJob.cpp index d3fcb75b4..41950d4df 100644 --- a/src/modules/partition/jobs/ResizePartitionJob.cpp +++ b/src/modules/partition/jobs/ResizePartitionJob.cpp @@ -2,6 +2,7 @@ * * Copyright 2014, Aurélien Gâteau * Copyright 2015, Teo Mrnjavac + * Copyright 2017, Andrius Štikonas * * Calamares is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,156 +18,12 @@ * along with Calamares. If not, see . */ -// This class is heavily based on the ResizeOperation class from KDE Partition -// Manager. Original copyright follow: - -/*************************************************************************** - * Copyright (C) 2008,2012 by Volker Lanz * - * * - * This program 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 2 of the License, or * - * (at your option) any later version. * - * * - * This program 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 this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * - ***************************************************************************/ - #include "jobs/ResizePartitionJob.h" -#include "jobs/CheckFileSystemJob.h" -#include "jobs/MoveFileSystemJob.h" -#include "utils/Logger.h" - // KPMcore -#include -#include -#include -#include -#include -#include -#include -#include - -// Qt -#include - -//- ResizeFileSystemJob -------------------------------------------------------- -class ResizeFileSystemJob : public Calamares::Job -{ - Q_OBJECT -public: - ResizeFileSystemJob( Device* device, CoreBackendPartitionTable* backendPartitionTable, Partition* partition, qint64 length ) - : m_device( device ) - , m_backendPartitionTable( backendPartitionTable ) - , m_partition( partition ) - , m_length( length ) - {} - - QString prettyName() const override - { - QString path = m_partition->partitionPath(); - return tr( "Resize file system on partition %1." ).arg( path ); - } - - Calamares::JobResult exec() override - { - Report report( nullptr ); - FileSystem& fs = m_partition->fileSystem(); - FileSystem::CommandSupportType support = m_length < fs.length() ? fs.supportShrink() : fs.supportGrow(); - - switch ( support ) - { - case FileSystem::cmdSupportBackend: - if ( !backendResize( &report ) ) - return Calamares::JobResult::error( - QString(), - tr( "Parted failed to resize filesystem." ) + '\n' + report.toText() - ); - break; - case FileSystem::cmdSupportFileSystem: - { - qint64 byteLength = m_device->logicalSize() * m_length; - bool ok = fs.resize( report, m_partition->partitionPath(), byteLength ); - if ( !ok ) - return Calamares::JobResult::error( - QString(), - tr( "Failed to resize filesystem." ) + '\n' + report.toText() - ); - break; - } - default: - break; - } - - fs.setLastSector( fs.firstSector() + m_length - 1 ); - return Calamares::JobResult::ok(); - } - -private: - Device* m_device; - CoreBackendPartitionTable* m_backendPartitionTable; - Partition* m_partition; - qint64 m_length; - - bool backendResize( Report* report ) - { - bool ok = m_backendPartitionTable->resizeFileSystem( *report, *m_partition, m_length ); - if ( !ok ) - return false; - m_backendPartitionTable->commit(); - return true; - } -}; - -//- SetPartGeometryJob --------------------------------------------------------- -class SetPartGeometryJob : public Calamares::Job -{ - Q_OBJECT -public: - SetPartGeometryJob( CoreBackendPartitionTable* backendPartitionTable, Partition* partition, qint64 firstSector, qint64 length ) - : m_backendPartitionTable( backendPartitionTable ) - , m_partition( partition ) - , m_firstSector( firstSector ) - , m_length( length ) - {} - - QString prettyName() const override - { - QString path = m_partition->partitionPath(); - return tr( "Update geometry of partition %1." ).arg( path ); - } - - Calamares::JobResult exec() override - { - Report report( nullptr ); - qint64 lastSector = m_firstSector + m_length - 1; - bool ok = m_backendPartitionTable->updateGeometry( report, *m_partition, m_firstSector, lastSector ); - if ( !ok ) - { - return Calamares::JobResult::error( - QString(), - tr( "Failed to change the geometry of the partition." ) + '\n' + report.toText() ); - } - m_partition->setFirstSector( m_firstSector ); - m_partition->setLastSector( lastSector ); - m_backendPartitionTable->commit(); - return Calamares::JobResult::ok(); - } - -private: - CoreBackendPartitionTable* m_backendPartitionTable; - Partition* m_partition; - qint64 m_firstSector; - qint64 m_length; -}; +#include +#include +#include //- ResizePartitionJob --------------------------------------------------------- ResizePartitionJob::ResizePartitionJob( Device* device, Partition* partition, qint64 firstSector, qint64 lastSector ) @@ -194,7 +51,7 @@ ResizePartitionJob::prettyDescription() const return tr( "Resize %2MB partition %1 to " "%3MB." ) .arg( partition()->partitionPath() ) - .arg( ( m_oldLastSector - m_oldFirstSector ) * partition()->sectorSize() / 1024 / 1024 ) + .arg( ( m_oldLastSector - m_oldFirstSector + 1 ) * partition()->sectorSize() / 1024 / 1024 ) .arg( ( m_newLastSector - m_newFirstSector + 1 ) * partition()->sectorSize() / 1024 / 1024 ); } @@ -205,7 +62,7 @@ ResizePartitionJob::prettyStatusMessage() const return tr( "Resizing %2MB partition %1 to " "%3MB." ) .arg( partition()->partitionPath() ) - .arg( ( m_oldLastSector - m_oldFirstSector ) * partition()->sectorSize() / 1024 / 1024 ) + .arg( ( m_oldLastSector - m_oldFirstSector + 1 ) * partition()->sectorSize() / 1024 / 1024 ) .arg( ( m_newLastSector - m_newFirstSector + 1 ) * partition()->sectorSize() / 1024 / 1024 ); } @@ -213,64 +70,21 @@ ResizePartitionJob::prettyStatusMessage() const Calamares::JobResult ResizePartitionJob::exec() { - qint64 oldLength = m_oldLastSector - m_oldFirstSector + 1; - qint64 newLength = m_newLastSector - m_newFirstSector + 1; - - // Assuming updatePreview() has been called, `partition` uses its new - // position and size. Reset it to the old values: part of the libparted - // backend relies on this (for example: - // LibPartedPartitionTable::updateGeometry()) - // The jobs are responsible for updating the partition back when they are - // done. + Report report (nullptr); + // Restore partition sectors that were modified for preview m_partition->setFirstSector( m_oldFirstSector ); m_partition->setLastSector( m_oldLastSector ); + ResizeOperation op(*m_device, *m_partition, m_newFirstSector, m_newLastSector); + op.setStatus(Operation::StatusRunning); + connect(&op, &Operation::progress, [&](int percent) { emit progress(percent / 100.0); } ); - CoreBackend* backend = CoreBackendManager::self()->backend(); - QScopedPointer backendDevice( backend->openDevice( m_device->deviceNode() ) ); - if ( !backendDevice.data() ) - { - QString errorMessage = tr( "The installer failed to resize partition %1 on disk '%2'." ) - .arg( m_partition->partitionPath() ) - .arg( m_device->name() ); - return Calamares::JobResult::error( - errorMessage, - tr( "Could not open device '%1'." ).arg( m_device->deviceNode() ) - ); - } - QScopedPointer backendPartitionTable( backendDevice->openPartitionTable() ); + QString errorMessage = tr( "The installer failed to resize partition %1 on disk '%2'." ) + .arg( m_partition->partitionPath() ) + .arg( m_device->name() ); + if (op.execute(report)) + return Calamares::JobResult::ok(); - // Create jobs - QList< Calamares::job_ptr > jobs; - jobs << Calamares::job_ptr( new CheckFileSystemJob( partition() ) ); - if ( m_partition->roles().has( PartitionRole::Extended ) ) - jobs << Calamares::job_ptr( new SetPartGeometryJob( backendPartitionTable.data(), m_partition, m_newFirstSector, newLength ) ); - else - { - bool shrink = newLength < oldLength; - bool grow = newLength > oldLength; - bool moveRight = m_newFirstSector > m_oldFirstSector; - bool moveLeft = m_newFirstSector < m_oldFirstSector; - if ( shrink ) - { - jobs << Calamares::job_ptr( new ResizeFileSystemJob( m_device, backendPartitionTable.data(), m_partition, newLength ) ); - jobs << Calamares::job_ptr( new SetPartGeometryJob( backendPartitionTable.data(), m_partition, m_oldFirstSector, newLength ) ); - } - if ( moveRight || moveLeft ) - { - // At this point, we need to set the partition's length to either the resized length, if it has already been - // shrunk, or to the original length (it may or may not then later be grown, we don't care here) - const qint64 length = shrink ? newLength : oldLength; - jobs << Calamares::job_ptr( new SetPartGeometryJob( backendPartitionTable.data(), m_partition, m_newFirstSector, length ) ); - jobs << Calamares::job_ptr( new MoveFileSystemJob( m_device, m_partition, m_oldFirstSector, m_newFirstSector, length ) ); - } - if ( grow ) - { - jobs << Calamares::job_ptr( new SetPartGeometryJob( backendPartitionTable.data(), m_partition, m_newFirstSector, newLength ) ); - jobs << Calamares::job_ptr( new ResizeFileSystemJob( m_device, backendPartitionTable.data(), m_partition, newLength ) ); - } - } - jobs << Calamares::job_ptr( new CheckFileSystemJob( partition() ) ); - return execJobList( jobs ); + return Calamares::JobResult::error(errorMessage, report.toText()); } void @@ -290,31 +104,3 @@ ResizePartitionJob::device() const { return m_device; } - - -Calamares::JobResult -ResizePartitionJob::execJobList( const QList< Calamares::job_ptr >& jobs ) -{ - QString errorMessage = tr( "The installer failed to resize partition %1 on disk '%2'." ) - .arg( m_partition->partitionPath() ) - .arg( m_device->name() ); - - int nbJobs = jobs.size(); - int count = 0; - for ( Calamares::job_ptr job : jobs ) - { - cLog() << "- " + job->prettyName(); - Calamares::JobResult result = job->exec(); - if ( !result ) - { - if ( result.message().isEmpty() ) - result.setMessage( errorMessage ); - return result; - } - ++count; - progress( qreal( count ) / nbJobs ); - } - return Calamares::JobResult::ok(); -} - -#include "ResizePartitionJob.moc" diff --git a/src/modules/partition/jobs/ResizePartitionJob.h b/src/modules/partition/jobs/ResizePartitionJob.h index 9ae31130f..453461d8d 100644 --- a/src/modules/partition/jobs/ResizePartitionJob.h +++ b/src/modules/partition/jobs/ResizePartitionJob.h @@ -51,8 +51,6 @@ private: qint64 m_oldLastSector; qint64 m_newFirstSector; qint64 m_newLastSector; - - Calamares::JobResult execJobList( const QList< Calamares::job_ptr >& jobs ); }; #endif /* RESIZEPARTITIONJOB_H */ diff --git a/src/modules/partition/partition.conf b/src/modules/partition/partition.conf index 610fb7b42..a5c428e23 100644 --- a/src/modules/partition/partition.conf +++ b/src/modules/partition/partition.conf @@ -26,9 +26,16 @@ drawNestedPartitions: false # Show/hide partition labels on manual partitioning page. alwaysShowPartitionLabels: true -# Default filesystem type, pre-selected in the "Create Partition" dialog. -# The filesystem type selected here is also used for automated install -# modes (Erase, Replace and Alongside). +# Default filesystem type, used when a "new" partition is made. +# +# When replacing a partition, the existing filesystem inside the +# partition is retained. In other cases, e.g. Erase and Alongside, +# as well as when using manual partitioning and creating a new +# partition, this filesystem type is pre-selected. Note that +# editing a partition in manual-creation mode will not automatically +# change the filesystem type to this default value -- it is not +# creating a new partition. +# # Suggested values: ext2, ext3, ext4, reiser, xfs, jfs, btrfs # If nothing is specified, Calamares defaults to "ext4". defaultFileSystemType: "ext4" diff --git a/src/modules/partition/tests/CMakeLists.txt b/src/modules/partition/tests/CMakeLists.txt index 1917a226b..41f494ba2 100644 --- a/src/modules/partition/tests/CMakeLists.txt +++ b/src/modules/partition/tests/CMakeLists.txt @@ -9,11 +9,9 @@ set( partitionjobtests_SRCS ${PartitionModule_SOURCE_DIR}/core/KPMHelpers.cpp ${PartitionModule_SOURCE_DIR}/core/PartitionInfo.cpp ${PartitionModule_SOURCE_DIR}/core/PartitionIterator.cpp - ${PartitionModule_SOURCE_DIR}/jobs/CheckFileSystemJob.cpp ${PartitionModule_SOURCE_DIR}/jobs/CreatePartitionJob.cpp ${PartitionModule_SOURCE_DIR}/jobs/CreatePartitionTableJob.cpp ${PartitionModule_SOURCE_DIR}/jobs/DeletePartitionJob.cpp - ${PartitionModule_SOURCE_DIR}/jobs/MoveFileSystemJob.cpp ${PartitionModule_SOURCE_DIR}/jobs/PartitionJob.cpp ${PartitionModule_SOURCE_DIR}/jobs/ResizePartitionJob.cpp PartitionJobTests.cpp diff --git a/src/modules/test_conf.cpp b/src/modules/test_conf.cpp new file mode 100644 index 000000000..d5ac7c6ce --- /dev/null +++ b/src/modules/test_conf.cpp @@ -0,0 +1,66 @@ +/* === This file is part of Calamares - === + * + * Copyright 2017, 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 . + */ + +/** + * This is a test-application that just checks the YAML config-file + * shipped with each module for correctness -- well, for parseability. + */ + +#include +#include + +using std::cerr; + +int main(int argc, char** argv) +{ + if (argc != 2) + { + cerr << "Usage: test_conf \n"; + return 1; + } + + try + { + YAML::Node doc = YAML::LoadFile( argv[1] ); + + if ( doc.IsNull() ) + { + // Special case: empty config files are valid, + // but aren't a map. For the example configs, + // this is still an error. + cerr << "WARNING:" << argv[1] << '\n'; + cerr << "WARNING: empty YAML\n"; + return 1; + } + + if ( !doc.IsMap() ) + { + cerr << "WARNING:" << argv[1] << '\n'; + cerr << "WARNING: not-a-YAML-map\n"; + return 1; + } + } + catch ( YAML::Exception& e ) + { + cerr << "WARNING:" << argv[1] << '\n'; + cerr << "WARNING: YAML parser error " << e.what() << '\n'; + return 1; + } + + return 0; +} diff --git a/src/modules/testmodule.py b/src/modules/testmodule.py index d115694eb..a25c7bc5d 100755 --- a/src/modules/testmodule.py +++ b/src/modules/testmodule.py @@ -18,6 +18,15 @@ # # You should have received a copy of the GNU General Public License # along with Calamares. If not, see . +""" +Testing tool to run a single Python module; optionally a +global configuration and module configuration can be read +from YAML files. Give a full path to the module-directory, +and also full paths to the configuration files. An empty +configuration file name, or "-" (a single dash) is used +to indicate that no file should be read -- useful to load +a module configuratioon file without a global configuration. +""" import argparse import os @@ -57,26 +66,10 @@ class Job: print("Job set progress to {}%.".format(progress * 100)) -def main(): - """ +def test_module(moduledir, globalconfigfilename, moduleconfigfilename, lang): + print("Testing module in: " + moduledir) - - :return: - """ - parser = argparse.ArgumentParser() - parser.add_argument("moduledir", - help="Dir containing the Python module.") - parser.add_argument("globalstorage_yaml", nargs="?", - help="A yaml file to initialize GlobalStorage.") - parser.add_argument("configuration_yaml", nargs="?", - help="A yaml file to initialize the Job.") - parser.add_argument("--lang", "-l", nargs="?", default=None, - help="Set translation language.") - args = parser.parse_args() - - print("Testing module in: " + args.moduledir) - - confpath = os.path.join(args.moduledir, "module.desc") + confpath = os.path.join(moduledir, "module.desc") with open(confpath) as f: doc = yaml.load(f) @@ -87,27 +80,33 @@ def main(): # Parameter None creates a new, empty GlobalStorage libcalamares.globalstorage = libcalamares.GlobalStorage(None) libcalamares.globalstorage.insert("testing", True) - if args.lang: - libcalamares.globalstorage.insert("locale", args.lang) - libcalamares.globalstorage.insert("localeConf", {"LANG": args.lang}) + if lang: + libcalamares.globalstorage.insert("locale", lang) + libcalamares.globalstorage.insert("localeConf", {"LANG": lang}) # if a file for simulating globalStorage contents is provided, load it - if args.globalstorage_yaml: - with open(args.globalstorage_yaml) as f: + if globalconfigfilename: + with open(globalconfigfilename) as f: gs_doc = yaml.load(f) for key, value in gs_doc.items(): libcalamares.globalstorage.insert(key, value) + print("Global configuration '" + globalconfigfilename + "' loaded.") + else: + print("No global configuration loaded.") cfg_doc = dict() - if args.configuration_yaml: - with open(args.configuration_yaml) as f: + if moduleconfigfilename: + with open(moduleconfigfilename) as f: cfg_doc = yaml.load(f) + print("Local configuration '" + moduleconfigfilename + "' loaded.") + else: + print("No module configuration loaded.") - libcalamares.job = Job(args.moduledir, doc, cfg_doc) + libcalamares.job = Job(moduledir, doc, cfg_doc) - scriptpath = os.path.abspath(args.moduledir) + scriptpath = os.path.abspath(moduledir) sys.path.append(scriptpath) - import main + import main # Assumed to import main from module itself print("Output from module:") print(main.run()) @@ -115,5 +114,33 @@ def main(): return 0 +def munge_filename(filename): + """ + Maps files "" (empty) and "-" (just a dash) to None, + to simplify processing elsewhere. + """ + if not filename or filename == "-": + return None + return filename + + +def main(): + parser = argparse.ArgumentParser(description=globals()["__doc__"]) + parser.add_argument("moduledir", + help="Dir containing the Python module.") + parser.add_argument("globalstorage_yaml", nargs="?", + help="A yaml file to initialize GlobalStorage.") + parser.add_argument("configuration_yaml", nargs="?", + help="A yaml file to initialize the Job.") + parser.add_argument("--lang", "-l", nargs="?", default=None, + help="Set translation language.") + args = parser.parse_args() + + return test_module(args.moduledir, + munge_filename(args.globalstorage_yaml), + munge_filename(args.configuration_yaml), + args.lang) + + if __name__ == "__main__": sys.exit(main()) diff --git a/src/modules/users/UsersViewStep.cpp b/src/modules/users/UsersViewStep.cpp index 73dc98ddc..34c6614f8 100644 --- a/src/modules/users/UsersViewStep.cpp +++ b/src/modules/users/UsersViewStep.cpp @@ -2,6 +2,7 @@ * * Copyright 2014-2015, Teo Mrnjavac * Copyright 2017, Adriaan de Groot + * Copyright 2017, Gabriel Craciunescu * * Calamares is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -131,6 +132,7 @@ UsersViewStep::setConfigurationMap( const QVariantMap& configurationMap ) } else { + cDebug() << "WARNING: Using fallback groups. Please check defaultGroups in users.conf"; m_defaultGroups = QStringList{ "lp", "video", "network", "storage", "wheel", "audio" }; } diff --git a/src/modules/users/users.conf b/src/modules/users/users.conf index d5466c62f..1f62fc1e5 100644 --- a/src/modules/users/users.conf +++ b/src/modules/users/users.conf @@ -11,6 +11,8 @@ # 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 @@ -19,13 +21,32 @@ defaultGroups: - 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 -# remove the following line to avoid creating /etc/sudoers.d/10-installer +# 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 diff --git a/src/modules/welcome/CMakeLists.txt b/src/modules/welcome/CMakeLists.txt index f73d8850d..42ce62beb 100644 --- a/src/modules/welcome/CMakeLists.txt +++ b/src/modules/welcome/CMakeLists.txt @@ -12,7 +12,7 @@ set( CHECKER_SOURCES checker/partman_devices.c ) set( CHECKER_LINK_LIBRARIES - ${LIBPARTED_LIBS} + ${LIBPARTED_LIBRARY} Qt5::DBus Qt5::Network ) diff --git a/src/modules/welcome/checker/RequirementsChecker.cpp b/src/modules/welcome/checker/RequirementsChecker.cpp index 3d4e394c4..654434513 100644 --- a/src/modules/welcome/checker/RequirementsChecker.cpp +++ b/src/modules/welcome/checker/RequirementsChecker.cpp @@ -2,6 +2,7 @@ * * Copyright 2014-2017, Teo Mrnjavac * Copyright 2017, Adriaan de Groot + * Copyright 2017, Gabriel Craciunescu * * Calamares is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -99,8 +100,12 @@ RequirementsChecker::RequirementsChecker( QObject* parent ) if ( m_entriesToCheck.contains( "root" ) ) isRoot = checkIsRoot(); - cDebug() << "enoughStorage, enoughRam, hasPower, hasInternet, isRoot: " - << enoughStorage << enoughRam << hasPower << hasInternet << isRoot; + cDebug() << "RequirementsChecker output:" + << " enoughStorage:" << enoughStorage + << " enoughRam:" << enoughRam + << " hasPower:" << hasPower + << " hasInternet:" << hasInternet + << " isRoot:" << isRoot; QList< PrepareEntry > checkEntries; foreach ( const QString& entry, m_entriesToCheck )