From 0aaf24c4a5702a5d354f21fcea4aa5abbe3d4718 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 23 Mar 2020 14:12:18 +0100 Subject: [PATCH 01/35] CMake: tell tests where their source-dir is - Abuse BUILD_AS_TEST to pass in the value as a string --- CMakeModules/CalamaresAddTest.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeModules/CalamaresAddTest.cmake b/CMakeModules/CalamaresAddTest.cmake index 36be0f03e..65f9389e8 100644 --- a/CMakeModules/CalamaresAddTest.cmake +++ b/CMakeModules/CalamaresAddTest.cmake @@ -50,7 +50,7 @@ function( calamares_add_test ) Qt5::Test ) calamares_automoc( ${TEST_NAME} ) - target_compile_definitions( ${TEST_NAME} PRIVATE -DBUILD_AS_TEST ${TEST_DEFINITIONS} ) + target_compile_definitions( ${TEST_NAME} PRIVATE -DBUILD_AS_TEST="${CMAKE_CURRENT_SOURCE_DIR}" ${TEST_DEFINITIONS} ) if( TEST_GUI ) target_link_libraries( ${TEST_NAME} calamaresui Qt5::Gui ) endif() From 8825c9c995cd4c665983f6b5016fa5c05c734ebf Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 23 Mar 2020 14:10:48 +0100 Subject: [PATCH 02/35] [netinstall] Apply coding style --- src/modules/netinstall/NetInstallPage.cpp | 6 +++--- src/modules/netinstall/NetInstallViewStep.cpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/netinstall/NetInstallPage.cpp b/src/modules/netinstall/NetInstallPage.cpp index 352eb9f3e..ec1928dff 100644 --- a/src/modules/netinstall/NetInstallPage.cpp +++ b/src/modules/netinstall/NetInstallPage.cpp @@ -157,10 +157,10 @@ NetInstallPage::dataIsHere() // Go backwards because expanding a group may cause rows to appear below it for ( int i = m_groups->rowCount() - 1; i >= 0; --i ) { - auto index = m_groups->index(i,0); - if ( m_groups->data(index, PackageModel::MetaExpandRole).toBool() ) + auto index = m_groups->index( i, 0 ); + if ( m_groups->data( index, PackageModel::MetaExpandRole ).toBool() ) { - ui->groupswidget->setExpanded(index, true); + ui->groupswidget->setExpanded( index, true ); } } diff --git a/src/modules/netinstall/NetInstallViewStep.cpp b/src/modules/netinstall/NetInstallViewStep.cpp index cb79982f9..66895dd96 100644 --- a/src/modules/netinstall/NetInstallViewStep.cpp +++ b/src/modules/netinstall/NetInstallViewStep.cpp @@ -56,7 +56,7 @@ NetInstallViewStep::prettyName() const { return m_sidebarLabel ? m_sidebarLabel->get() : tr( "Package selection" ); -#if defined(TABLE_OF_TRANSLATIONS) +#if defined( TABLE_OF_TRANSLATIONS ) NOTREACHED // This is a table of "standard" labels for this module. If you use them // in the label: sidebar: section of the config file, the existing From c66ef5a20199019898fedf1f0e0b2674c50743c6 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Fri, 20 Mar 2020 19:48:29 +0100 Subject: [PATCH 03/35] [netinstall] Refactor: kill ItemData - This doesn't compile right now. - The nested class ItemData doesn't do anything useful or meaningful that having model items with the right data wouldn't. --- src/modules/netinstall/PackageTreeItem.cpp | 128 ++++++--------------- src/modules/netinstall/PackageTreeItem.h | 69 +++++------ 2 files changed, 74 insertions(+), 123 deletions(-) diff --git a/src/modules/netinstall/PackageTreeItem.cpp b/src/modules/netinstall/PackageTreeItem.cpp index 7e20d63e1..81a20257d 100644 --- a/src/modules/netinstall/PackageTreeItem.cpp +++ b/src/modules/netinstall/PackageTreeItem.cpp @@ -21,55 +21,26 @@ #include "utils/Logger.h" -QVariant -PackageTreeItem::ItemData::toOperation() const -{ - // If it's a package with a pre- or post-script, replace - // with the more complicated datastructure. - if ( !preScript.isEmpty() || !postScript.isEmpty() ) - { - QMap< QString, QVariant > sdetails; - sdetails.insert( "pre-script", preScript ); - sdetails.insert( "package", packageName ); - sdetails.insert( "post-script", postScript ); - return sdetails; - } - else - { - return packageName; - } -} - -PackageTreeItem::PackageTreeItem( const ItemData& data, PackageTreeItem* parent ) - : m_parentItem( parent ) - , m_data( data ) -{ -} - -PackageTreeItem::PackageTreeItem( const QString packageName, PackageTreeItem* parent ) +PackageTreeItem::PackageTreeItem( const QString& packageName, PackageTreeItem* parent ) : m_parentItem( parent ) { - m_data.packageName = packageName; + m_packageName = packageName; if ( parent != nullptr ) { - m_data.selected = parent->isSelected(); + // Avoid partially-checked .. a package can't be partial + m_selected = parent->isSelected() == Qt::Unchecked ? Qt::Unchecked : Qt::Checked; } else { - m_data.selected = Qt::Unchecked; + m_selected = Qt::Unchecked; } } -PackageTreeItem::PackageTreeItem( PackageTreeItem* parent ) - : m_parentItem( parent ) -{ -} - PackageTreeItem::PackageTreeItem::PackageTreeItem() : PackageTreeItem( QString(), nullptr ) { - m_data.selected = Qt::Checked; - m_data.name = QLatin1String( "" ); + m_selected = Qt::Checked; + m_name = QLatin1String( "" ); } PackageTreeItem::~PackageTreeItem() @@ -123,7 +94,7 @@ PackageTreeItem::data( int column ) const switch ( column ) // group { case 0: - return QVariant( prettyName() ); + return QVariant( name() ); case 1: return QVariant( description() ); default: @@ -145,47 +116,15 @@ PackageTreeItem::parentItem() const } -QString -PackageTreeItem::prettyName() const -{ - return m_data.name; -} - -QString -PackageTreeItem::description() const -{ - return m_data.description; -} - -QString -PackageTreeItem::preScript() const -{ - return m_data.preScript; -} - -QString -PackageTreeItem::packageName() const -{ - return m_data.packageName; -} - -QString -PackageTreeItem::postScript() const -{ - return m_data.postScript; -} - -bool -PackageTreeItem::isHidden() const -{ - return m_data.isHidden; -} - bool PackageTreeItem::hiddenSelected() const { - Q_ASSERT( m_data.isHidden ); - if ( !m_data.selected ) + if ( !m_isHidden ) + { + return m_selected; + } + + if ( !m_selected ) { return false; } @@ -201,32 +140,20 @@ PackageTreeItem::hiddenSelected() const } /* Has no non-hiddent parents */ - return m_data.selected; + return m_selected; } -bool -PackageTreeItem::isCritical() const -{ - return m_data.isCritical; -} - -Qt::CheckState -PackageTreeItem::isSelected() const -{ - return m_data.selected; -} - void PackageTreeItem::setSelected( Qt::CheckState isSelected ) { if ( parentItem() == nullptr ) - // This is the root, it is always checked so don't change state { + // This is the root, it is always checked so don't change state return; } - m_data.selected = isSelected; + m_selected = isSelected; setChildrenSelected( isSelected ); // Look for suitable parent item which may change checked-state @@ -277,7 +204,7 @@ PackageTreeItem::setChildrenSelected( Qt::CheckState isSelected ) // Children are never root; don't need to use setSelected on them. for ( auto child : m_childItems ) { - child->m_data.selected = isSelected; + child->m_selected = isSelected; child->setChildrenSelected( isSelected ); } } @@ -287,3 +214,22 @@ PackageTreeItem::type() const { return QStandardItem::UserType; } + +QVariant +PackageTreeItem::toOperation() const +{ + // If it's a package with a pre- or post-script, replace + // with the more complicated datastructure. + if ( !m_preScript.isEmpty() || !m_postScript.isEmpty() ) + { + QMap< QString, QVariant > sdetails; + sdetails.insert( "pre-script", m_preScript ); + sdetails.insert( "package", m_packageName ); + sdetails.insert( "post-script", m_postScript ); + return sdetails; + } + else + { + return m_packageName; + } +} diff --git a/src/modules/netinstall/PackageTreeItem.h b/src/modules/netinstall/PackageTreeItem.h index d9c1f9ec2..83d1cb3e7 100644 --- a/src/modules/netinstall/PackageTreeItem.h +++ b/src/modules/netinstall/PackageTreeItem.h @@ -27,29 +27,12 @@ class PackageTreeItem : public QStandardItem { public: - struct ItemData - { - QString name; - QString description; - QString preScript; - QString packageName; - QString postScript; - bool isCritical = false; - bool isHidden = false; - bool startExpanded = false; // Only for groups - Qt::CheckState selected = Qt::Unchecked; + using PackageList = QList< PackageTreeItem* >; - /** @brief Turns this item into a variant for PackageOperations use - * - * For "plain" items, this is just the package name; items with - * scripts return a map. See the package module for how it's interpreted. - */ - QVariant toOperation() const; - }; - explicit PackageTreeItem( const ItemData& data, PackageTreeItem* parent = nullptr ); - explicit PackageTreeItem( const QString packageName, PackageTreeItem* parent = nullptr ); - explicit PackageTreeItem( PackageTreeItem* parent ); - explicit PackageTreeItem(); // The root of the tree; always selected, named + ///@brief A package (individual package) + explicit PackageTreeItem( const QString& packageName, PackageTreeItem* parent = nullptr ); + ///@brief A root item, always selected, named "" + explicit PackageTreeItem(); ~PackageTreeItem() override; void appendChild( PackageTreeItem* child ); @@ -61,18 +44,19 @@ public: PackageTreeItem* parentItem(); const PackageTreeItem* parentItem() const; - QString prettyName() const; - QString description() const; - QString preScript() const; - QString packageName() const; - QString postScript() const; + QString name() const { return m_name; } + QString packageName() const { return m_packageName; } + + QString description() const { return m_description; } + QString preScript() const { return m_preScript; } + QString postScript() const { return m_postScript; } /** @brief Is this item hidden? * * Hidden items (generally only groups) are maintained separately, * not shown to the user, but do enter into the package-installation process. */ - bool isHidden() const; + bool isHidden() const { return m_isHidden; } /** @brief Is this hidden item, considered "selected"? * @@ -87,7 +71,7 @@ public: * A critical group must be successfully installed, for the Calamares * installation to continue. */ - bool isCritical() const; + bool isCritical() const { return m_isCritical; } /** @brief Is this group expanded on start? * @@ -95,17 +79,38 @@ public: * that expands on start is shown expanded (not collapsed) * in the treeview when the page is loaded. */ - bool expandOnStart() const { return m_data.startExpanded; } + bool expandOnStart() const { return m_startExpanded; } + + /** @brief Turns this item into a variant for PackageOperations use + * + * For "plain" items, this is just the package name; items with + * scripts return a map. See the package module for how it's interpreted. + */ + QVariant toOperation() const; Qt::CheckState isSelected() const; void setSelected( Qt::CheckState isSelected ); void setChildrenSelected( Qt::CheckState isSelected ); + + // QStandardItem methods int type() const override; private: PackageTreeItem* m_parentItem; - QList< PackageTreeItem* > m_childItems; - ItemData m_data; + PackageList m_childItems; + + // An entry can be a packkage, or a group. + QString m_name; + QString m_packageName; + Qt::CheckState m_selected = Qt::Unchecked; + + // These are only useful for groups + QString m_description; + QString m_preScript; + QString m_postScript; + bool m_isCritical = false; + bool m_isHidden = false; + bool m_startExpanded = false; }; #endif // PACKAGETREEITEM_H From 4cb2ed955276e8b73dae21feb5050f95ec3b4eb0 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Fri, 20 Mar 2020 23:03:47 +0100 Subject: [PATCH 04/35] [netinstall] Chase removal of ItemData - Simplify creation of PackageTreeItems by interpreting the YAML directly (instead of via ItemData), - Simplify list types, - Drop superfluous API. --- src/modules/netinstall/NetInstallPage.cpp | 4 +-- src/modules/netinstall/NetInstallPage.h | 2 +- src/modules/netinstall/NetInstallViewStep.cpp | 8 ++--- src/modules/netinstall/PackageModel.cpp | 34 ++++--------------- src/modules/netinstall/PackageModel.h | 8 ++--- src/modules/netinstall/PackageTreeItem.cpp | 33 ++++++++++++++---- src/modules/netinstall/PackageTreeItem.h | 13 +++++-- 7 files changed, 53 insertions(+), 49 deletions(-) diff --git a/src/modules/netinstall/NetInstallPage.cpp b/src/modules/netinstall/NetInstallPage.cpp index ec1928dff..35086cb44 100644 --- a/src/modules/netinstall/NetInstallPage.cpp +++ b/src/modules/netinstall/NetInstallPage.cpp @@ -167,7 +167,7 @@ NetInstallPage::dataIsHere() emit checkReady( true ); } -PackageModel::PackageItemDataList +PackageTreeItem::List NetInstallPage::selectedPackages() const { if ( m_groups ) @@ -177,7 +177,7 @@ NetInstallPage::selectedPackages() const else { cWarning() << "no netinstall groups are available."; - return PackageModel::PackageItemDataList(); + return PackageTreeItem::List(); } } diff --git a/src/modules/netinstall/NetInstallPage.h b/src/modules/netinstall/NetInstallPage.h index 12633c6b9..f9d7127e2 100644 --- a/src/modules/netinstall/NetInstallPage.h +++ b/src/modules/netinstall/NetInstallPage.h @@ -74,7 +74,7 @@ public: // Returns the list of packages belonging to groups that are // selected in the view in this given moment. No data is cached here, so // this function does not have constant time. - PackageModel::PackageItemDataList selectedPackages() const; + PackageTreeItem::List selectedPackages() const; public slots: void dataIsHere(); diff --git a/src/modules/netinstall/NetInstallViewStep.cpp b/src/modules/netinstall/NetInstallViewStep.cpp index 66895dd96..ba16d940c 100644 --- a/src/modules/netinstall/NetInstallViewStep.cpp +++ b/src/modules/netinstall/NetInstallViewStep.cpp @@ -127,7 +127,7 @@ NetInstallViewStep::onActivate() void NetInstallViewStep::onLeave() { - PackageModel::PackageItemDataList packages = m_widget->selectedPackages(); + auto packages = m_widget->selectedPackages(); cDebug() << "Netinstall: Processing" << packages.length() << "packages."; static const char PACKAGEOP[] = "packageOperations"; @@ -158,13 +158,13 @@ NetInstallViewStep::onLeave() for ( const auto& package : packages ) { - if ( package.isCritical ) + if ( package->isCritical() ) { - installPackages.append( package.toOperation() ); + installPackages.append( package->toOperation() ); } else { - tryInstallPackages.append( package.toOperation() ); + tryInstallPackages.append( package->toOperation() ); } } diff --git a/src/modules/netinstall/PackageModel.cpp b/src/modules/netinstall/PackageModel.cpp index 215ac2912..5fc204bdb 100644 --- a/src/modules/netinstall/PackageModel.cpp +++ b/src/modules/netinstall/PackageModel.cpp @@ -169,29 +169,21 @@ PackageModel::headerData( int section, Qt::Orientation orientation, int role ) c return QVariant(); } -QList< PackageTreeItem::ItemData > +PackageTreeItem::List PackageModel::getPackages() const { - QList< PackageTreeItem* > items = getItemPackages( m_rootItem ); + auto items = getItemPackages( m_rootItem ); for ( auto package : m_hiddenItems ) + { if ( package->hiddenSelected() ) { items.append( getItemPackages( package ) ); } - QList< PackageTreeItem::ItemData > packages; - for ( auto item : items ) - { - PackageTreeItem::ItemData itemData; - itemData.preScript = item->parentItem()->preScript(); // Only groups have hooks - itemData.packageName = item->packageName(); // this seg faults - itemData.postScript = item->parentItem()->postScript(); // Only groups have hooks - itemData.isCritical = item->parentItem()->isCritical(); // Only groups are critical - packages.append( itemData ); } - return packages; + return items; } -QList< PackageTreeItem* > +PackageTreeItem::List PackageModel::getItemPackages( PackageTreeItem* item ) const { QList< PackageTreeItem* > selectedPackages; @@ -232,21 +224,7 @@ PackageModel::setupModelData( const YAML::Node& data, PackageTreeItem* parent ) for ( YAML::const_iterator it = data.begin(); it != data.end(); ++it ) { const YAML::Node itemDefinition = *it; - - QString name( tr( CalamaresUtils::yamlToVariant( itemDefinition[ "name" ] ).toByteArray() ) ); - QString description( tr( CalamaresUtils::yamlToVariant( itemDefinition[ "description" ] ).toByteArray() ) ); - - PackageTreeItem::ItemData itemData; - itemData.name = name; - itemData.description = description; - - itemData.preScript = getString( itemDefinition, "pre-install" ); - itemData.postScript = getString( itemDefinition, "post-install" ); - itemData.isCritical = getBool( itemDefinition, "critical" ); - itemData.isHidden = getBool( itemDefinition, "hidden" ); - itemData.startExpanded = getBool( itemDefinition, "expanded" ); - - PackageTreeItem* item = new PackageTreeItem( itemData, parent ); + PackageTreeItem* item = new PackageTreeItem( CalamaresUtils::yamlMapToVariant( itemDefinition ), parent ); if ( itemDefinition[ "selected" ] ) { diff --git a/src/modules/netinstall/PackageModel.h b/src/modules/netinstall/PackageModel.h index b76a58a42..09701ef7d 100644 --- a/src/modules/netinstall/PackageModel.h +++ b/src/modules/netinstall/PackageModel.h @@ -37,8 +37,6 @@ class PackageModel : public QAbstractItemModel Q_OBJECT public: - using PackageItemDataList = QList< PackageTreeItem::ItemData >; - // Names for columns (unused in the code) static constexpr const int NameColumn = 0; static constexpr const int DescriptionColumn = 1; @@ -63,14 +61,14 @@ public: int rowCount( const QModelIndex& parent = QModelIndex() ) const override; int columnCount( const QModelIndex& parent = QModelIndex() ) const override; - PackageItemDataList getPackages() const; - QList< PackageTreeItem* > getItemPackages( PackageTreeItem* item ) const; + PackageTreeItem::List getPackages() const; + PackageTreeItem::List getItemPackages( PackageTreeItem* item ) const; private: void setupModelData( const YAML::Node& data, PackageTreeItem* parent ); PackageTreeItem* m_rootItem; - QList< PackageTreeItem* > m_hiddenItems; + PackageTreeItem::List m_hiddenItems; }; #endif // PACKAGEMODEL_H diff --git a/src/modules/netinstall/PackageTreeItem.cpp b/src/modules/netinstall/PackageTreeItem.cpp index 81a20257d..089521505 100644 --- a/src/modules/netinstall/PackageTreeItem.cpp +++ b/src/modules/netinstall/PackageTreeItem.cpp @@ -20,22 +20,43 @@ #include "PackageTreeItem.h" #include "utils/Logger.h" +#include "utils/Variant.h" -PackageTreeItem::PackageTreeItem( const QString& packageName, PackageTreeItem* parent ) - : m_parentItem( parent ) +static Qt::CheckState +parentCheckState( PackageTreeItem* parent ) { - m_packageName = packageName; - if ( parent != nullptr ) + if ( parent ) { // Avoid partially-checked .. a package can't be partial - m_selected = parent->isSelected() == Qt::Unchecked ? Qt::Unchecked : Qt::Checked; + return parent->isSelected() == Qt::Unchecked ? Qt::Unchecked : Qt::Checked; } else { - m_selected = Qt::Unchecked; + return Qt::Unchecked; } } +PackageTreeItem::PackageTreeItem( const QString& packageName, PackageTreeItem* parent ) + : m_parentItem( parent ) + , m_packageName( packageName ) + , m_selected( parentCheckState( parent ) ) +{ +} + +PackageTreeItem::PackageTreeItem( const QVariantMap& groupData, PackageTreeItem* parent ) + : m_parentItem( parent ) + , m_name( CalamaresUtils::getString( groupData, "name" ) ) + , m_selected( parentCheckState( parent ) ) + , m_description( CalamaresUtils::getString( groupData, "description" ) ) + , m_preScript( CalamaresUtils::getString( groupData, "pre-install" ) ) + , m_postScript( CalamaresUtils::getString( groupData, "post-install" ) ) + , m_isCritical( CalamaresUtils::getBool( groupData, "critical", false ) ) + , m_isHidden( CalamaresUtils::getBool( groupData, "hidden", false ) ) + , m_startExpanded( CalamaresUtils::getBool( groupData, "expanded", false ) ) +{ +} + + PackageTreeItem::PackageTreeItem::PackageTreeItem() : PackageTreeItem( QString(), nullptr ) { diff --git a/src/modules/netinstall/PackageTreeItem.h b/src/modules/netinstall/PackageTreeItem.h index 83d1cb3e7..5f22201cf 100644 --- a/src/modules/netinstall/PackageTreeItem.h +++ b/src/modules/netinstall/PackageTreeItem.h @@ -27,10 +27,12 @@ class PackageTreeItem : public QStandardItem { public: - using PackageList = QList< PackageTreeItem* >; + using List = QList< PackageTreeItem* >; ///@brief A package (individual package) explicit PackageTreeItem( const QString& packageName, PackageTreeItem* parent = nullptr ); + ///@brief A group (sub-items and sub-groups are ignored) + explicit PackageTreeItem( const QVariantMap& groupData, PackageTreeItem* parent = nullptr ); ///@brief A root item, always selected, named "" explicit PackageTreeItem(); ~PackageTreeItem() override; @@ -81,6 +83,12 @@ public: */ bool expandOnStart() const { return m_startExpanded; } + /** @brief is this item selected? + * + * Groups may be partially selected; packages are only on or off. + */ + Qt::CheckState isSelected() const { return m_selected; } + /** @brief Turns this item into a variant for PackageOperations use * * For "plain" items, this is just the package name; items with @@ -88,7 +96,6 @@ public: */ QVariant toOperation() const; - Qt::CheckState isSelected() const; void setSelected( Qt::CheckState isSelected ); void setChildrenSelected( Qt::CheckState isSelected ); @@ -97,7 +104,7 @@ public: private: PackageTreeItem* m_parentItem; - PackageList m_childItems; + List m_childItems; // An entry can be a packkage, or a group. QString m_name; From c7b646315ad55e13c47edfa7b84a784220e3730b Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Sun, 22 Mar 2020 13:21:39 +0100 Subject: [PATCH 05/35] [netinstall] Add immutable to groups settings --- src/modules/netinstall/PackageTreeItem.cpp | 1 + src/modules/netinstall/PackageTreeItem.h | 1 + src/modules/netinstall/README.md | 6 +++++- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/modules/netinstall/PackageTreeItem.cpp b/src/modules/netinstall/PackageTreeItem.cpp index 089521505..51fa2b13e 100644 --- a/src/modules/netinstall/PackageTreeItem.cpp +++ b/src/modules/netinstall/PackageTreeItem.cpp @@ -52,6 +52,7 @@ PackageTreeItem::PackageTreeItem( const QVariantMap& groupData, PackageTreeItem* , m_postScript( CalamaresUtils::getString( groupData, "post-install" ) ) , m_isCritical( CalamaresUtils::getBool( groupData, "critical", false ) ) , m_isHidden( CalamaresUtils::getBool( groupData, "hidden", false ) ) + , m_showReadOnly( CalamaresUtils::getBool( groupData, "immutable", false ) ) , m_startExpanded( CalamaresUtils::getBool( groupData, "expanded", false ) ) { } diff --git a/src/modules/netinstall/PackageTreeItem.h b/src/modules/netinstall/PackageTreeItem.h index 5f22201cf..89a07aadc 100644 --- a/src/modules/netinstall/PackageTreeItem.h +++ b/src/modules/netinstall/PackageTreeItem.h @@ -117,6 +117,7 @@ private: QString m_postScript; bool m_isCritical = false; bool m_isHidden = false; + bool m_showReadOnly = false; bool m_startExpanded = false; }; diff --git a/src/modules/netinstall/README.md b/src/modules/netinstall/README.md index a8803edd5..cda4b6c88 100644 --- a/src/modules/netinstall/README.md +++ b/src/modules/netinstall/README.md @@ -48,8 +48,12 @@ More keys (per group) are supported: - *critical*: if true, make the installation process fail if installing any of the packages in the group fails. Otherwise, just log a warning. Defaults to false. + - *immutable*: if true, the state of the group (and all its subgroups) + cannot be changed; it really only makes sense in combination + with *selected* set to true. This only affects the user-interface. - *expanded*: if true, the group is shown in an expanded form (that is, - not-collapsed) in the treeview on start. + not-collapsed) in the treeview on start. This only affects the user- + interface. - *subgroups*: if present this follows the same structure as the top level of the YAML file, allowing there to be sub-groups of packages to an arbitary depth From 4143ad67af763c42657a660fa8bf23551dd8c371 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Sun, 22 Mar 2020 13:27:53 +0100 Subject: [PATCH 06/35] [netinstall] Remove superfluous code - The constructor for PackageTreeItem now takes over the selected state from the parent. --- src/modules/netinstall/PackageModel.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/modules/netinstall/PackageModel.cpp b/src/modules/netinstall/PackageModel.cpp index 5fc204bdb..673e15f5e 100644 --- a/src/modules/netinstall/PackageModel.cpp +++ b/src/modules/netinstall/PackageModel.cpp @@ -230,10 +230,6 @@ PackageModel::setupModelData( const YAML::Node& data, PackageTreeItem* parent ) { item->setSelected( getBool( itemDefinition, "selected" ) ? Qt::Checked : Qt::Unchecked ); } - else - { - item->setSelected( parent->isSelected() ); // Inherit from it's parent - } if ( itemDefinition[ "packages" ] ) { From dc403237f29fcbb457719759764d2f5ec21fc948 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Sun, 22 Mar 2020 15:09:43 +0100 Subject: [PATCH 07/35] [netinstall] Build model from QVariantList - As an alternative to the YAML-wranging, build the model from a QVariantList instead. - Expose this as a constructor, too. --- src/modules/netinstall/PackageModel.cpp | 57 ++++++++++++++++++++++--- src/modules/netinstall/PackageModel.h | 2 + 2 files changed, 53 insertions(+), 6 deletions(-) diff --git a/src/modules/netinstall/PackageModel.cpp b/src/modules/netinstall/PackageModel.cpp index 673e15f5e..0ac8116b3 100644 --- a/src/modules/netinstall/PackageModel.cpp +++ b/src/modules/netinstall/PackageModel.cpp @@ -19,6 +19,7 @@ #include "PackageModel.h" +#include "utils/Variant.h" #include "utils/Yaml.h" PackageModel::PackageModel( const YAML::Node& data, QObject* parent ) @@ -28,6 +29,13 @@ PackageModel::PackageModel( const YAML::Node& data, QObject* parent ) setupModelData( data, m_rootItem ); } +PackageModel::PackageModel( const QVariantList& data, QObject* parent ) + : QAbstractItemModel( parent ) +{ + m_rootItem = new PackageTreeItem(); + setupModelData( data, m_rootItem ); +} + PackageModel::~PackageModel() { delete m_rootItem; @@ -206,18 +214,55 @@ PackageModel::getItemPackages( PackageTreeItem* item ) const return selectedPackages; } -static QString -getString( const YAML::Node& itemDefinition, const char* key ) -{ - return itemDefinition[ key ] ? CalamaresUtils::yamlToVariant( itemDefinition[ key ] ).toString() : QString(); -} - static bool getBool( const YAML::Node& itemDefinition, const char* key ) { return itemDefinition[ key ] ? CalamaresUtils::yamlToVariant( itemDefinition[ key ] ).toBool() : false; } +void +PackageModel::setupModelData( const QVariantList& groupList, PackageTreeItem* parent ) +{ + for ( const auto& group : groupList ) + { + QVariantMap groupMap = group.toMap(); + if ( groupMap.isEmpty() ) + { + continue; + } + + PackageTreeItem* item = new PackageTreeItem( groupMap, parent ); + if ( groupMap.contains( "selected" ) ) + { + item->setSelected( CalamaresUtils::getBool( groupMap, "selected", false ) ? Qt::Checked : Qt::Unchecked ); + } + if ( groupMap.contains( "packages" ) ) + { + for ( const auto& packageName : groupMap.value( "packages" ).toStringList() ) + { + item->appendChild( new PackageTreeItem( packageName, item ) ); + } + } + if ( groupMap.contains( "subgroups" ) ) + { + QVariantList subgroups = groupMap.value( "subgroups" ).toList(); + if ( !subgroups.isEmpty() ) + { + setupModelData( subgroups, item ); + } + } + if ( item->isHidden() ) + { + m_hiddenItems.append( item ); + } + else + { + item->setCheckable( true ); + parent->appendChild( item ); + } + } +} + void PackageModel::setupModelData( const YAML::Node& data, PackageTreeItem* parent ) { diff --git a/src/modules/netinstall/PackageModel.h b/src/modules/netinstall/PackageModel.h index 09701ef7d..db41c4197 100644 --- a/src/modules/netinstall/PackageModel.h +++ b/src/modules/netinstall/PackageModel.h @@ -48,6 +48,7 @@ public: static constexpr const int MetaExpandRole = Qt::UserRole + 1; explicit PackageModel( const YAML::Node& data, QObject* parent = nullptr ); + explicit PackageModel( const QVariantList& data, QObject* parent = nullptr ); ~PackageModel() override; QVariant data( const QModelIndex& index, int role ) const override; @@ -66,6 +67,7 @@ public: private: void setupModelData( const YAML::Node& data, PackageTreeItem* parent ); + void setupModelData( const QVariantList& l, PackageTreeItem* parent ); PackageTreeItem* m_rootItem; PackageTreeItem::List m_hiddenItems; From bca316299e2210fafe05e9acd8267ea05d0196c1 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Sun, 22 Mar 2020 21:08:32 +0100 Subject: [PATCH 08/35] [netinstall] Add tests - Just some simple tests for the Items - Test creation of package group from variant - This needs Qt5::Gui to link because QStandardItem is a GUI class, although we can run the tests without a GUI. --- src/modules/netinstall/CMakeLists.txt | 11 +++ src/modules/netinstall/Tests.cpp | 118 ++++++++++++++++++++++++++ 2 files changed, 129 insertions(+) create mode 100644 src/modules/netinstall/Tests.cpp diff --git a/src/modules/netinstall/CMakeLists.txt b/src/modules/netinstall/CMakeLists.txt index c5eddd32b..9d0167670 100644 --- a/src/modules/netinstall/CMakeLists.txt +++ b/src/modules/netinstall/CMakeLists.txt @@ -16,3 +16,14 @@ calamares_add_plugin( netinstall yamlcpp SHARED_LIB ) + +calamares_add_test( + netinstalltest + SOURCES + Tests.cpp + PackageTreeItem.cpp + PackageModel.cpp + LIBRARIES + Qt5::Gui +) + diff --git a/src/modules/netinstall/Tests.cpp b/src/modules/netinstall/Tests.cpp new file mode 100644 index 000000000..d1d73d7fe --- /dev/null +++ b/src/modules/netinstall/Tests.cpp @@ -0,0 +1,118 @@ +/* === This file is part of Calamares - === + * + * Copyright 2020, Adriaan de Groot + * + * Calamares is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * Calamares is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Calamares. If not, see . + */ + +#include "PackageTreeItem.h" + +#include "utils/Logger.h" +#include "utils/Variant.h" +#include "utils/Yaml.h" + +#include + +class ItemTests : public QObject +{ + Q_OBJECT +public: + ItemTests(); + virtual ~ItemTests() {} + +private Q_SLOTS: + void initTestCase(); + + void testRoot(); + void testPackage(); + void testGroup(); +}; + +ItemTests::ItemTests() {} + +void +ItemTests::initTestCase() +{ + Logger::setupLogLevel( Logger::LOGDEBUG ); +} + +void +ItemTests::testRoot() +{ + PackageTreeItem r; + + QCOMPARE( r.isSelected(), Qt::Checked ); + QCOMPARE( r.name(), QStringLiteral( "" ) ); + QCOMPARE( r.parentItem(), nullptr ); +} + +void +ItemTests::testPackage() +{ + PackageTreeItem p( "bash", nullptr ); + + QCOMPARE( p.isSelected(), Qt::Unchecked ); + QCOMPARE( p.packageName(), QStringLiteral( "bash" ) ); + QVERIFY( p.name().isEmpty() ); // not a group + QCOMPARE( p.parentItem(), nullptr ); + QCOMPARE( p.childCount(), 0 ); + QVERIFY( !p.isHidden() ); + QVERIFY( !p.isCritical() ); + + // This doesn't happen in normal constructions, + // because a package can't have children. + PackageTreeItem c( "zsh", &p ); + QCOMPARE( c.isSelected(), Qt::Unchecked ); + QCOMPARE( c.packageName(), QStringLiteral( "zsh" ) ); + QVERIFY( c.name().isEmpty() ); // not a group + QCOMPARE( c.parentItem(), &p ); + + QCOMPARE( p.childCount(), 0 ); // not noticed it has a child +} + +// *INDENT-OFF* +// clang-format off +static const char doc[] = +"- name: \"CCR\"\n" +" description: \"Tools for the Chakra Community Repository\"\n" +" packages:\n" +" - ccr\n" +" - base-devel\n"; +// *INDENT-ON* +// clang-format on + +void +ItemTests::testGroup() +{ + YAML::Node yamldoc = YAML::Load( doc ); + QVariantList yamlContents = CalamaresUtils::yamlSequenceToVariant( yamldoc ); + + QCOMPARE( yamlContents.length(), 1 ); + + PackageTreeItem p( yamlContents[ 0 ].toMap(), nullptr ); + QCOMPARE( p.name(), QStringLiteral( "CCR" ) ); + QVERIFY( p.packageName().isEmpty() ); + QVERIFY( p.description().startsWith( QStringLiteral( "Tools " ) ) ); + QCOMPARE( p.parentItem(), nullptr ); + QVERIFY( !p.isHidden() ); + QVERIFY( !p.isCritical() ); + // The item-constructor doesn't consider the packages: list + QCOMPARE( p.childCount(), 0 ); +} + +QTEST_GUILESS_MAIN( ItemTests ) + +#include "utils/moc-warnings.h" + +#include "Tests.moc" From 52d3f4417f5940b5b1bd42f305fcc0bda3a0985d Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 23 Mar 2020 09:59:03 +0100 Subject: [PATCH 09/35] [netinstall] Add explicit isGroup() - Previously you would either need to know where in the tree a PackageTreeItem was, or guess that an empty packageName() means that it's a group. --- src/modules/netinstall/PackageTreeItem.cpp | 10 ++++++---- src/modules/netinstall/PackageTreeItem.h | 17 ++++++++++++++++- src/modules/netinstall/Tests.cpp | 7 +++++++ 3 files changed, 29 insertions(+), 5 deletions(-) diff --git a/src/modules/netinstall/PackageTreeItem.cpp b/src/modules/netinstall/PackageTreeItem.cpp index 51fa2b13e..eca62141f 100644 --- a/src/modules/netinstall/PackageTreeItem.cpp +++ b/src/modules/netinstall/PackageTreeItem.cpp @@ -40,6 +40,7 @@ PackageTreeItem::PackageTreeItem( const QString& packageName, PackageTreeItem* p : m_parentItem( parent ) , m_packageName( packageName ) , m_selected( parentCheckState( parent ) ) + , m_isGroup( false ) { } @@ -50,6 +51,7 @@ PackageTreeItem::PackageTreeItem( const QVariantMap& groupData, PackageTreeItem* , m_description( CalamaresUtils::getString( groupData, "description" ) ) , m_preScript( CalamaresUtils::getString( groupData, "pre-install" ) ) , m_postScript( CalamaresUtils::getString( groupData, "post-install" ) ) + , m_isGroup( true ) , m_isCritical( CalamaresUtils::getBool( groupData, "critical", false ) ) , m_isHidden( CalamaresUtils::getBool( groupData, "hidden", false ) ) , m_showReadOnly( CalamaresUtils::getBool( groupData, "immutable", false ) ) @@ -57,12 +59,12 @@ PackageTreeItem::PackageTreeItem( const QVariantMap& groupData, PackageTreeItem* { } - PackageTreeItem::PackageTreeItem::PackageTreeItem() - : PackageTreeItem( QString(), nullptr ) + : m_parentItem( nullptr ) + , m_name( QStringLiteral( "" ) ) + , m_selected( Qt::Checked ) + , m_isGroup( true ) { - m_selected = Qt::Checked; - m_name = QLatin1String( "" ); } PackageTreeItem::~PackageTreeItem() diff --git a/src/modules/netinstall/PackageTreeItem.h b/src/modules/netinstall/PackageTreeItem.h index 89a07aadc..c35b98eea 100644 --- a/src/modules/netinstall/PackageTreeItem.h +++ b/src/modules/netinstall/PackageTreeItem.h @@ -53,6 +53,20 @@ public: QString preScript() const { return m_preScript; } QString postScript() const { return m_postScript; } + /** @brief Is this item a group-item? + * + * Groups have a (possibly empty) list of packages, and a + * (possibly empty) list of sub-groups, and can be marked + * critical, hidden, etc. Packages, on the other hand, only + * have a meaningful packageName() and selection status. + * + * Root is a group. + */ + bool isGroup() const { return m_isGroup; } + + /// @brief Is this item a single package? + bool isPackage() const { return !isGroup(); } + /** @brief Is this item hidden? * * Hidden items (generally only groups) are maintained separately, @@ -106,7 +120,7 @@ private: PackageTreeItem* m_parentItem; List m_childItems; - // An entry can be a packkage, or a group. + // An entry can be a package, or a group. QString m_name; QString m_packageName; Qt::CheckState m_selected = Qt::Unchecked; @@ -115,6 +129,7 @@ private: QString m_description; QString m_preScript; QString m_postScript; + bool m_isGroup = false; bool m_isCritical = false; bool m_isHidden = false; bool m_showReadOnly = false; diff --git a/src/modules/netinstall/Tests.cpp b/src/modules/netinstall/Tests.cpp index d1d73d7fe..420b690aa 100644 --- a/src/modules/netinstall/Tests.cpp +++ b/src/modules/netinstall/Tests.cpp @@ -55,6 +55,7 @@ ItemTests::testRoot() QCOMPARE( r.isSelected(), Qt::Checked ); QCOMPARE( r.name(), QStringLiteral( "" ) ); QCOMPARE( r.parentItem(), nullptr ); + QVERIFY( r.isGroup() ); } void @@ -69,6 +70,8 @@ ItemTests::testPackage() QCOMPARE( p.childCount(), 0 ); QVERIFY( !p.isHidden() ); QVERIFY( !p.isCritical() ); + QVERIFY( !p.isGroup() ); + QVERIFY( p.isPackage() ); // This doesn't happen in normal constructions, // because a package can't have children. @@ -77,6 +80,8 @@ ItemTests::testPackage() QCOMPARE( c.packageName(), QStringLiteral( "zsh" ) ); QVERIFY( c.name().isEmpty() ); // not a group QCOMPARE( c.parentItem(), &p ); + QVERIFY( !c.isGroup() ); + QVERIFY( c.isPackage() ); QCOMPARE( p.childCount(), 0 ); // not noticed it has a child } @@ -109,6 +114,8 @@ ItemTests::testGroup() QVERIFY( !p.isCritical() ); // The item-constructor doesn't consider the packages: list QCOMPARE( p.childCount(), 0 ); + QVERIFY( p.isGroup() ); + QVERIFY( !p.isPackage() ); } QTEST_GUILESS_MAIN( ItemTests ) From f7191ac29eabedd6345ec71dfc18bd349f5871cf Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 23 Mar 2020 10:16:54 +0100 Subject: [PATCH 10/35] [netinstall] Compare two PackageTreeItems - Packages and groups check different fields for equality. - Selected-state is **not** part of equality. - Also operator != --- src/modules/netinstall/PackageTreeItem.cpp | 21 ++++++ src/modules/netinstall/PackageTreeItem.h | 10 +++ src/modules/netinstall/Tests.cpp | 78 +++++++++++++++++++++- 3 files changed, 108 insertions(+), 1 deletion(-) diff --git a/src/modules/netinstall/PackageTreeItem.cpp b/src/modules/netinstall/PackageTreeItem.cpp index eca62141f..c0f897c06 100644 --- a/src/modules/netinstall/PackageTreeItem.cpp +++ b/src/modules/netinstall/PackageTreeItem.cpp @@ -257,3 +257,24 @@ PackageTreeItem::toOperation() const return m_packageName; } } + +bool +PackageTreeItem::operator==( const PackageTreeItem& rhs ) const +{ + if ( isGroup() != rhs.isGroup() ) + { + // Different kinds + return false; + } + + if ( isGroup() ) + { + return name() == rhs.name() && description() == rhs.description() && preScript() == rhs.preScript() + && postScript() == rhs.postScript() && isCritical() == rhs.isCritical() && isHidden() == rhs.isHidden() + && m_showReadOnly == rhs.m_showReadOnly && expandOnStart() == rhs.expandOnStart(); + } + else + { + return packageName() == rhs.packageName(); + } +} diff --git a/src/modules/netinstall/PackageTreeItem.h b/src/modules/netinstall/PackageTreeItem.h index c35b98eea..3f7dcce86 100644 --- a/src/modules/netinstall/PackageTreeItem.h +++ b/src/modules/netinstall/PackageTreeItem.h @@ -116,6 +116,16 @@ public: // QStandardItem methods int type() const override; + /** @brief Are two items equal + * + * This **disregards** parent-item and the child-items, and compares + * only the fields for the items-proper (name, .. expanded). Note + * also that *isSelected()* is a run-time state, and is **not** + * compared either. + */ + bool operator==( const PackageTreeItem& rhs ) const; + bool operator!=( const PackageTreeItem& rhs ) const { return !( *this == rhs ); } + private: PackageTreeItem* m_parentItem; List m_childItems; diff --git a/src/modules/netinstall/Tests.cpp b/src/modules/netinstall/Tests.cpp index 420b690aa..ddcf8076b 100644 --- a/src/modules/netinstall/Tests.cpp +++ b/src/modules/netinstall/Tests.cpp @@ -37,6 +37,7 @@ private Q_SLOTS: void testRoot(); void testPackage(); void testGroup(); + void testCompare(); }; ItemTests::ItemTests() {} @@ -56,6 +57,8 @@ ItemTests::testRoot() QCOMPARE( r.name(), QStringLiteral( "" ) ); QCOMPARE( r.parentItem(), nullptr ); QVERIFY( r.isGroup() ); + + QVERIFY( r == r ); } void @@ -72,6 +75,7 @@ ItemTests::testPackage() QVERIFY( !p.isCritical() ); QVERIFY( !p.isGroup() ); QVERIFY( p.isPackage() ); + QVERIFY( p == p ); // This doesn't happen in normal constructions, // because a package can't have children. @@ -82,6 +86,8 @@ ItemTests::testPackage() QCOMPARE( c.parentItem(), &p ); QVERIFY( !c.isGroup() ); QVERIFY( c.isPackage() ); + QVERIFY( c == c ); + QVERIFY( c != p ); QCOMPARE( p.childCount(), 0 ); // not noticed it has a child } @@ -93,7 +99,13 @@ static const char doc[] = " description: \"Tools for the Chakra Community Repository\"\n" " packages:\n" " - ccr\n" -" - base-devel\n"; +" - base-devel\n" +" - bash\n"; + +static const char doc_no_packages[] = +"- name: \"CCR\"\n" +" description: \"Tools for the Chakra Community Repository\"\n" +" packages: []\n"; // *INDENT-ON* // clang-format on @@ -116,8 +128,72 @@ ItemTests::testGroup() QCOMPARE( p.childCount(), 0 ); QVERIFY( p.isGroup() ); QVERIFY( !p.isPackage() ); + QVERIFY( p == p ); + + PackageTreeItem c( "zsh", nullptr ); + QVERIFY( p != c ); } +void +ItemTests::testCompare() +{ + PackageTreeItem p0( "bash", nullptr ); + PackageTreeItem p1( "bash", &p0 ); + PackageTreeItem p2( "bash", nullptr ); + + QVERIFY( p0 == p1 ); // Parent doesn't matter + QVERIFY( p0 == p2 ); + + p2.setSelected( Qt::Checked ); + p1.setSelected( Qt::Unchecked ); + QVERIFY( p0 == p1 ); // Neither does selected state + QVERIFY( p0 == p2 ); + + PackageTreeItem r0( nullptr ); + QVERIFY( p0 != r0 ); + QVERIFY( p1 != r0 ); + QVERIFY( r0 == r0 ); + PackageTreeItem r1( nullptr ); + QVERIFY( r0 == r1 ); // Different roots are still equal + + PackageTreeItem r2( "", nullptr ); // Fake root + QVERIFY( r0 != r2 ); + QVERIFY( r1 != r2 ); + QVERIFY( p0 != r2 ); + PackageTreeItem r3( "", nullptr ); + QVERIFY( r3 == r2 ); + + YAML::Node yamldoc = YAML::Load( doc ); // See testGroup() + QVariantList yamlContents = CalamaresUtils::yamlSequenceToVariant( yamldoc ); + QCOMPARE( yamlContents.length(), 1 ); + + PackageTreeItem p3( yamlContents[ 0 ].toMap(), nullptr ); + QVERIFY( p3 == p3 ); + QVERIFY( p3 != p1 ); + QVERIFY( p1 != p3 ); + QCOMPARE( p3.childCount(), 0 ); // Doesn't load the packages: list + + PackageTreeItem p4( CalamaresUtils::yamlSequenceToVariant( YAML::Load( doc ) )[ 0 ].toMap(), nullptr ); + QVERIFY( p3 == p4 ); + PackageTreeItem p5( CalamaresUtils::yamlSequenceToVariant( YAML::Load( doc_no_packages ) )[ 0 ].toMap(), nullptr ); + QVERIFY( p3 == p5 ); + +#if 0 + // Check that the sub-packages loaded correctly + bool found_one_bash = false; + for ( int i = 0; i < p3.childCount(); ++i ) + { + QVERIFY( p3.child( i )->isPackage() ); + if ( p0 == *p3.child( i ) ) + { + found_one_bash = true; + } + } + QVERIFY( found_one_bash ); +#endif +} + + QTEST_GUILESS_MAIN( ItemTests ) #include "utils/moc-warnings.h" From 0e2b3986b923898f6a9eb945fcede938f8199e6b Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 23 Mar 2020 10:46:10 +0100 Subject: [PATCH 11/35] [netinstall] Use explicit accessor for the type-of-item --- src/modules/netinstall/PackageTreeItem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/netinstall/PackageTreeItem.cpp b/src/modules/netinstall/PackageTreeItem.cpp index c0f897c06..ff0f5d5bc 100644 --- a/src/modules/netinstall/PackageTreeItem.cpp +++ b/src/modules/netinstall/PackageTreeItem.cpp @@ -103,7 +103,7 @@ PackageTreeItem::row() const QVariant PackageTreeItem::data( int column ) const { - if ( !packageName().isEmpty() ) // packages have a packagename, groups don't + if ( isPackage() ) // packages have a packagename, groups don't { switch ( column ) { From 025ab8b524b1002264b2d49a3e35cbc0c76cdcc0 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 23 Mar 2020 10:49:16 +0100 Subject: [PATCH 12/35] [netinstall] Be explicit about checkedness-to-bool conversions --- src/modules/netinstall/PackageTreeItem.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/modules/netinstall/PackageTreeItem.cpp b/src/modules/netinstall/PackageTreeItem.cpp index ff0f5d5bc..e611da477 100644 --- a/src/modules/netinstall/PackageTreeItem.cpp +++ b/src/modules/netinstall/PackageTreeItem.cpp @@ -145,10 +145,10 @@ PackageTreeItem::hiddenSelected() const { if ( !m_isHidden ) { - return m_selected; + return m_selected != Qt::Unchecked; } - if ( !m_selected ) + if ( m_selected == Qt::Unchecked ) { return false; } @@ -163,8 +163,8 @@ PackageTreeItem::hiddenSelected() const currentItem = currentItem->parentItem(); } - /* Has no non-hiddent parents */ - return m_selected; + /* Has no non-hidden parents */ + return m_selected != Qt::Unchecked; } @@ -188,8 +188,8 @@ PackageTreeItem::setSelected( Qt::CheckState isSelected ) currentItem = currentItem->parentItem(); } if ( currentItem == nullptr ) - // Reached the root .. don't bother { + // Reached the root .. don't bother return; } From f592a3f3732f565c2db263b6fe6e6c135da4d54b Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 23 Mar 2020 12:53:35 +0100 Subject: [PATCH 13/35] [netinstall] Expand tests to include group-checking - Check groups - Check whole treemodels recursively (this is not in PackageTreeItem, because that explicitly ignores the tree structure). - Also a stub of checking example files (from the src dir) --- src/modules/netinstall/PackageModel.h | 2 + src/modules/netinstall/Tests.cpp | 97 +++++++++++++++++++++++++-- 2 files changed, 94 insertions(+), 5 deletions(-) diff --git a/src/modules/netinstall/PackageModel.h b/src/modules/netinstall/PackageModel.h index db41c4197..4d127970b 100644 --- a/src/modules/netinstall/PackageModel.h +++ b/src/modules/netinstall/PackageModel.h @@ -66,6 +66,8 @@ public: PackageTreeItem::List getItemPackages( PackageTreeItem* item ) const; private: + friend class ItemTests; + void setupModelData( const YAML::Node& data, PackageTreeItem* parent ); void setupModelData( const QVariantList& l, PackageTreeItem* parent ); diff --git a/src/modules/netinstall/Tests.cpp b/src/modules/netinstall/Tests.cpp index ddcf8076b..c0658be33 100644 --- a/src/modules/netinstall/Tests.cpp +++ b/src/modules/netinstall/Tests.cpp @@ -16,6 +16,7 @@ * along with Calamares. If not, see . */ +#include "PackageModel.h" #include "PackageTreeItem.h" #include "utils/Logger.h" @@ -31,6 +32,10 @@ public: ItemTests(); virtual ~ItemTests() {} +private: + void checkAllSelected( PackageTreeItem* p ); + void recursiveCompare( PackageTreeItem*, PackageTreeItem* ); + private Q_SLOTS: void initTestCase(); @@ -38,6 +43,8 @@ private Q_SLOTS: void testPackage(); void testGroup(); void testCompare(); + void testModel(); + void testExampleFiles(); }; ItemTests::ItemTests() {} @@ -106,6 +113,15 @@ static const char doc_no_packages[] = "- name: \"CCR\"\n" " description: \"Tools for the Chakra Community Repository\"\n" " packages: []\n"; + +static const char doc_with_expanded[] = +"- name: \"CCR\"\n" +" description: \"Tools for the Chakra Community Repository\"\n" +" expanded: true\n" +" packages:\n" +" - ccr\n" +" - base-devel\n" +" - bash\n"; // *INDENT-ON* // clang-format on @@ -177,20 +193,91 @@ ItemTests::testCompare() QVERIFY( p3 == p4 ); PackageTreeItem p5( CalamaresUtils::yamlSequenceToVariant( YAML::Load( doc_no_packages ) )[ 0 ].toMap(), nullptr ); QVERIFY( p3 == p5 ); +} -#if 0 +void +ItemTests::checkAllSelected( PackageTreeItem* p ) +{ + QVERIFY( p->isSelected() ); + for ( int i = 0; i < p->childCount(); ++i ) + { + checkAllSelected( p->child( i ) ); + } +} + +void +ItemTests::recursiveCompare( PackageTreeItem* l, PackageTreeItem* r ) +{ + QVERIFY( l && r ); + QVERIFY( *l == *r ); + QCOMPARE( l->childCount(), r->childCount() ); + + for ( int i = 0; i < l->childCount(); ++i ) + { + QCOMPARE( l->childCount(), r->childCount() ); + recursiveCompare( l->child( i ), r->child( i ) ); + } +} + +void +ItemTests::testModel() +{ + YAML::Node yamldoc = YAML::Load( doc ); // See testGroup() + QVariantList yamlContents = CalamaresUtils::yamlSequenceToVariant( yamldoc ); + QCOMPARE( yamlContents.length(), 1 ); + + PackageModel m0( yamlContents, nullptr ); + PackageModel m1( yamldoc, nullptr ); + + QCOMPARE( m0.rowCount(), m1.rowCount() ); + QCOMPARE( m0.m_hiddenItems.count(), 0 ); // Nothing hidden + QCOMPARE( m1.m_hiddenItems.count(), 0 ); + QCOMPARE( m0.rowCount(), 1 ); // Group, the packages are invisible + QCOMPARE( m0.rowCount( m0.index( 0, 0 ) ), 3 ); // The packages + QCOMPARE( m1.rowCount( m1.index( 0, 0 ) ), 3 ); // The packages + + checkAllSelected( m0.m_rootItem ); + checkAllSelected( m1.m_rootItem ); + + PackageModel m2( YAML::Load( doc_with_expanded ), nullptr ); + QCOMPARE( m2.m_hiddenItems.count(), 0 ); + QCOMPARE( m2.rowCount(), 1 ); // Group, now the packages expanded but not counted + QCOMPARE( m2.rowCount( m2.index( 0, 0 ) ), 3 ); // The packages + checkAllSelected( m2.m_rootItem ); + + PackageTreeItem r; + QVERIFY( r == *m0.m_rootItem ); + QVERIFY( r == *m1.m_rootItem ); + + QCOMPARE( m0.m_rootItem->childCount(), 1 ); + + PackageTreeItem* group = m0.m_rootItem->child( 0 ); + QVERIFY( group->isGroup() ); + QCOMPARE( group->name(), QStringLiteral( "CCR" ) ); + QCOMPARE( group->childCount(), 3 ); + + PackageTreeItem bash( "bash", nullptr ); // Check that the sub-packages loaded correctly bool found_one_bash = false; - for ( int i = 0; i < p3.childCount(); ++i ) + for ( int i = 0; i < group->childCount(); ++i ) { - QVERIFY( p3.child( i )->isPackage() ); - if ( p0 == *p3.child( i ) ) + QVERIFY( group->child( i )->isPackage() ); + if ( bash == *( group->child( i ) ) ) { found_one_bash = true; } } QVERIFY( found_one_bash ); -#endif + + recursiveCompare( m0.m_rootItem, m1.m_rootItem ); + + // But m2 has "expanded" set which the others do no + QVERIFY( *( m2.m_rootItem->child( 0 ) ) != *group ); +} + +void +ItemTests::testExampleFiles() +{ } From ebc1db6a7b23ead9ddedb34ca287118a6a55c255 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 23 Mar 2020 14:16:23 +0100 Subject: [PATCH 14/35] [netinstall] Test loading of a whole (example) file --- src/modules/netinstall/Tests.cpp | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/src/modules/netinstall/Tests.cpp b/src/modules/netinstall/Tests.cpp index c0658be33..e85944f6c 100644 --- a/src/modules/netinstall/Tests.cpp +++ b/src/modules/netinstall/Tests.cpp @@ -35,6 +35,7 @@ public: private: void checkAllSelected( PackageTreeItem* p ); void recursiveCompare( PackageTreeItem*, PackageTreeItem* ); + void recursiveCompare( PackageModel&, PackageModel& ); private Q_SLOTS: void initTestCase(); @@ -219,6 +220,13 @@ ItemTests::recursiveCompare( PackageTreeItem* l, PackageTreeItem* r ) } } +void +ItemTests::recursiveCompare( PackageModel& l, PackageModel& r ) +{ + return recursiveCompare( l.m_rootItem, r.m_rootItem ); +} + + void ItemTests::testModel() { @@ -269,7 +277,7 @@ ItemTests::testModel() } QVERIFY( found_one_bash ); - recursiveCompare( m0.m_rootItem, m1.m_rootItem ); + recursiveCompare( m0, m1 ); // But m2 has "expanded" set which the others do no QVERIFY( *( m2.m_rootItem->child( 0 ) ) != *group ); @@ -278,6 +286,25 @@ ItemTests::testModel() void ItemTests::testExampleFiles() { + QVERIFY( QStringLiteral( BUILD_AS_TEST ).endsWith( "/netinstall" ) ); + + QDir d( BUILD_AS_TEST ); + + for ( const QString& filename : QStringList { "netinstall.yaml" } ) + { + QFile f( d.filePath( filename ) ); + QVERIFY( f.exists() ); + QVERIFY( f.open( QIODevice::ReadOnly ) ); + QByteArray contents = f.readAll(); + QVERIFY( !contents.isEmpty() ); + + YAML::Node yamldoc = YAML::Load( contents.constData() ); + QVariantList yamlContents = CalamaresUtils::yamlSequenceToVariant( yamldoc ); + + PackageModel m0( yamldoc, nullptr ); + PackageModel m1( yamlContents, nullptr ); + recursiveCompare( m0, m1 ); + } } From fa28788f7832fd929080f2c590d51a65f1445bf1 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 23 Mar 2020 14:21:41 +0100 Subject: [PATCH 15/35] [netinstall] Build the model from QVariantList always --- src/modules/netinstall/PackageModel.cpp | 42 +------------------------ src/modules/netinstall/PackageModel.h | 1 - 2 files changed, 1 insertion(+), 42 deletions(-) diff --git a/src/modules/netinstall/PackageModel.cpp b/src/modules/netinstall/PackageModel.cpp index 0ac8116b3..3a4deaf9a 100644 --- a/src/modules/netinstall/PackageModel.cpp +++ b/src/modules/netinstall/PackageModel.cpp @@ -26,7 +26,7 @@ PackageModel::PackageModel( const YAML::Node& data, QObject* parent ) : QAbstractItemModel( parent ) { m_rootItem = new PackageTreeItem(); - setupModelData( data, m_rootItem ); + setupModelData( CalamaresUtils::yamlSequenceToVariant( data ), m_rootItem ); } PackageModel::PackageModel( const QVariantList& data, QObject* parent ) @@ -262,43 +262,3 @@ PackageModel::setupModelData( const QVariantList& groupList, PackageTreeItem* pa } } } - -void -PackageModel::setupModelData( const YAML::Node& data, PackageTreeItem* parent ) -{ - for ( YAML::const_iterator it = data.begin(); it != data.end(); ++it ) - { - const YAML::Node itemDefinition = *it; - PackageTreeItem* item = new PackageTreeItem( CalamaresUtils::yamlMapToVariant( itemDefinition ), parent ); - - if ( itemDefinition[ "selected" ] ) - { - item->setSelected( getBool( itemDefinition, "selected" ) ? Qt::Checked : Qt::Unchecked ); - } - - if ( itemDefinition[ "packages" ] ) - { - for ( YAML::const_iterator packageIt = itemDefinition[ "packages" ].begin(); - packageIt != itemDefinition[ "packages" ].end(); - ++packageIt ) - { - item->appendChild( - new PackageTreeItem( CalamaresUtils::yamlToVariant( *packageIt ).toString(), item ) ); - } - } - if ( itemDefinition[ "subgroups" ] ) - { - setupModelData( itemDefinition[ "subgroups" ], item ); - } - - if ( item->isHidden() ) - { - m_hiddenItems.append( item ); - } - else - { - item->setCheckable( true ); - parent->appendChild( item ); - } - } -} diff --git a/src/modules/netinstall/PackageModel.h b/src/modules/netinstall/PackageModel.h index 4d127970b..04004b661 100644 --- a/src/modules/netinstall/PackageModel.h +++ b/src/modules/netinstall/PackageModel.h @@ -68,7 +68,6 @@ public: private: friend class ItemTests; - void setupModelData( const YAML::Node& data, PackageTreeItem* parent ); void setupModelData( const QVariantList& l, PackageTreeItem* parent ); PackageTreeItem* m_rootItem; From f59cae2dbb47fe1c180d3fa858e0809383f0ed61 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 23 Mar 2020 14:41:00 +0100 Subject: [PATCH 16/35] [netinstall] Document `local` URL - `local` is supposed to read from the config-file, rather than externally; this simplifies examples, makes it easier to have multiple netinstalls, and condenses the documentation. --- src/modules/netinstall/netinstall.conf | 39 +++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/src/modules/netinstall/netinstall.conf b/src/modules/netinstall/netinstall.conf index 5f90fec76..96977bdd0 100644 --- a/src/modules/netinstall/netinstall.conf +++ b/src/modules/netinstall/netinstall.conf @@ -11,7 +11,11 @@ # # The format of the groups file is documented in `README.md`. # -# groupsUrl: file:///usr/share/calamares/netinstall.yaml +# As a special case, setting *groupsUrl* to the literal string +# `local` means that the data is obtained from **this** config +# file, under the key *groups*. +# +groupsUrl: local # If the installation can proceed without netinstall (e.g. the Live CD # can create a working installed system, but netinstall is preferred @@ -46,3 +50,36 @@ label: # sidebar[nl]: "Pakketkeuze" # title: "Office Package" # title[nl]: "Kantoorsoftware" + +# If, and only if, *groupsUrl* is set to the literal string `local`, +# groups data is read from this file. The value of *groups* must be +# a list, with the same format as the regular `netinstall.yaml` file. +# +# This is recommended only for small static package lists. +groups: + - name: "Default" + description: "Default group" + hidden: true + selected: true + critical: false + packages: + - base + - chakra-live-skel + - name: "Shells" + description: "Shells" + hidden: false + selected: false + critical: true + subgroups: + - name: "Bash" + description: "Bourne Again Shell" + selected: true + packages: + - bash + - bash-completion + - name: "Zsh" + description: "Zee shell, boss" + packages: + - zsh + - zsh-completion + - zsh-extensions From 1a5c916923d1a7e702edc3c1a2e7ba0459a23f5e Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 23 Mar 2020 23:08:31 +0100 Subject: [PATCH 17/35] [netinstall] Implement `local` loading of packages - For a static list of selectable packages (e.g. what you might otherwise use file:/// for with a static file on the ISO) you can now stick the list in the config file itself, simplifying some setups. - Also saves faffing about with network. SEE #1319 --- src/modules/netinstall/NetInstallPage.cpp | 27 +++++++++++++++++-- src/modules/netinstall/NetInstallPage.h | 9 +++++++ src/modules/netinstall/NetInstallViewStep.cpp | 10 ++++++- 3 files changed, 43 insertions(+), 3 deletions(-) diff --git a/src/modules/netinstall/NetInstallPage.cpp b/src/modules/netinstall/NetInstallPage.cpp index 35086cb44..13e9418a4 100644 --- a/src/modules/netinstall/NetInstallPage.cpp +++ b/src/modules/netinstall/NetInstallPage.cpp @@ -154,6 +154,14 @@ NetInstallPage::dataIsHere() ui->groupswidget->header()->setSectionResizeMode( 0, QHeaderView::ResizeToContents ); ui->groupswidget->header()->setSectionResizeMode( 1, QHeaderView::Stretch ); + expandGroups(); + + emit checkReady( true ); +} + +void +NetInstallPage::expandGroups() +{ // Go backwards because expanding a group may cause rows to appear below it for ( int i = m_groups->rowCount() - 1; i >= 0; --i ) { @@ -163,8 +171,6 @@ NetInstallPage::dataIsHere() ui->groupswidget->setExpanded( index, true ); } } - - emit checkReady( true ); } PackageTreeItem::List @@ -203,6 +209,23 @@ NetInstallPage::loadGroupList( const QString& confUrl ) } } +void +NetInstallPage::loadGroupList( const QVariantList& l ) +{ + // This short-cuts through loading and just uses the data, + // containing cruft from dataIsHere() and readGroups(). + m_groups = new PackageModel( l ); + retranslate(); // For changed model + ui->groupswidget->setModel( m_groups ); + ui->groupswidget->header()->setSectionResizeMode( 0, QHeaderView::ResizeToContents ); + ui->groupswidget->header()->setSectionResizeMode( 1, QHeaderView::Stretch ); + + expandGroups(); + + emit checkReady( true ); +} + + void NetInstallPage::setRequired( bool b ) { diff --git a/src/modules/netinstall/NetInstallPage.h b/src/modules/netinstall/NetInstallPage.h index f9d7127e2..fdbdbac88 100644 --- a/src/modules/netinstall/NetInstallPage.h +++ b/src/modules/netinstall/NetInstallPage.h @@ -64,6 +64,8 @@ public: * displaying the page. */ void loadGroupList( const QString& url ); + /// @brief Retrieve pre-processed and fetched group data + void loadGroupList( const QVariantList& l ); // Sets the "required" state of netinstall data. Influences whether // corrupt or unavailable data causes checkReady() to be emitted @@ -90,6 +92,13 @@ private: // of this module to know the format expected of the YAML files. bool readGroups( const QByteArray& yamlData ); + /** @brief Expand entries that should be pre-expanded + * + * Follows the *expanded* key / the startExpanded field in the + * group entries of the model. Call this after filling up the model. + */ + void expandGroups(); + Ui::Page_NetInst* ui; std::unique_ptr< CalamaresUtils::Locale::TranslatedString > m_title; // Above the treeview diff --git a/src/modules/netinstall/NetInstallViewStep.cpp b/src/modules/netinstall/NetInstallViewStep.cpp index ba16d940c..9c8b186de 100644 --- a/src/modules/netinstall/NetInstallViewStep.cpp +++ b/src/modules/netinstall/NetInstallViewStep.cpp @@ -209,7 +209,15 @@ NetInstallViewStep::setConfigurationMap( const QVariantMap& configurationMap ) // Keep putting groupsUrl into the global storage, // even though it's no longer used for in-module data-passing. Calamares::JobQueue::instance()->globalStorage()->insert( "groupsUrl", groupsUrl ); - m_widget->loadGroupList( groupsUrl ); + if ( groupsUrl == QStringLiteral( "local" ) ) + { + QVariantList l = configurationMap.value( "groups" ).toList(); + m_widget->loadGroupList( l ); + } + else + { + m_widget->loadGroupList( groupsUrl ); + } } bool bogus = false; From 5e03df723ca7ecaf376cf10a7a24ae9caaa4714f Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 24 Mar 2020 12:02:16 +0100 Subject: [PATCH 18/35] [netinstall] Add a (stub) Config object - Add initial definition of Config object, which will extract the model- setting and loading code from the page, and which is also prep-work for a QML version of this module. - While here, remove superfluous code --- src/modules/netinstall/CMakeLists.txt | 1 + src/modules/netinstall/Config.cpp | 34 +++++++++++++++++ src/modules/netinstall/Config.h | 50 +++++++++++++++++++++++++ src/modules/netinstall/PackageModel.cpp | 8 +--- 4 files changed, 86 insertions(+), 7 deletions(-) create mode 100644 src/modules/netinstall/Config.cpp create mode 100644 src/modules/netinstall/Config.h diff --git a/src/modules/netinstall/CMakeLists.txt b/src/modules/netinstall/CMakeLists.txt index 9d0167670..3e6ac3cb5 100644 --- a/src/modules/netinstall/CMakeLists.txt +++ b/src/modules/netinstall/CMakeLists.txt @@ -2,6 +2,7 @@ calamares_add_plugin( netinstall TYPE viewmodule EXPORT_MACRO PLUGINDLLEXPORT_PRO SOURCES + Config.cpp NetInstallViewStep.cpp NetInstallPage.cpp PackageTreeItem.cpp diff --git a/src/modules/netinstall/Config.cpp b/src/modules/netinstall/Config.cpp new file mode 100644 index 000000000..9218fab22 --- /dev/null +++ b/src/modules/netinstall/Config.cpp @@ -0,0 +1,34 @@ +/* + * Copyright 2016, Luca Giambonini + * Copyright 2016, Lisa Vitolo + * Copyright 2017, Kyle Robbertze + * Copyright 2017-2018, 2020, 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 + * 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 "Config.h" + +Config::Config( QObject* parent ) + : m_model( nullptr ) +{ +} + +void +Config::setStatus( const QString& s ) +{ + m_status = s; + emit statusChanged( m_status ); +} diff --git a/src/modules/netinstall/Config.h b/src/modules/netinstall/Config.h new file mode 100644 index 000000000..497871633 --- /dev/null +++ b/src/modules/netinstall/Config.h @@ -0,0 +1,50 @@ +/* + * Copyright 2016, Luca Giambonini + * Copyright 2016, Lisa Vitolo + * Copyright 2017, Kyle Robbertze + * Copyright 2017-2018, 2020, Adriaan de Groot + * + * Calamares is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * Calamares is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Calamares. If not, see . + */ + +#ifndef NETINSTALL_CONFIG_H +#define NETINSTALL_CONFIG_H + +#include "PackageModel.h" + +#include + +class Config : public QObject +{ + Q_OBJECT + + Q_PROPERTY( PackageModel* packageModel MEMBER m_model FINAL ) + + Q_PROPERTY( QString status READ status WRITE setStatus NOTIFY statusChanged FINAL ) + +public: + Config( QObject* parent = nullptr ); + + QString status() const { return m_status; } + void setStatus( const QString& s ); + +signals: + void statusChanged( QString status ); + +private: + QString m_status; + PackageModel* m_model = nullptr; +}; + +#endif diff --git a/src/modules/netinstall/PackageModel.cpp b/src/modules/netinstall/PackageModel.cpp index 3a4deaf9a..26b5eb552 100644 --- a/src/modules/netinstall/PackageModel.cpp +++ b/src/modules/netinstall/PackageModel.cpp @@ -1,7 +1,7 @@ /* === This file is part of Calamares - === * * Copyright (c) 2017, Kyle Robbertze - * Copyright 2017-2018, Adriaan de Groot + * Copyright 2017-2018, 2020, 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 @@ -214,12 +214,6 @@ PackageModel::getItemPackages( PackageTreeItem* item ) const return selectedPackages; } -static bool -getBool( const YAML::Node& itemDefinition, const char* key ) -{ - return itemDefinition[ key ] ? CalamaresUtils::yamlToVariant( itemDefinition[ key ] ).toBool() : false; -} - void PackageModel::setupModelData( const QVariantList& groupList, PackageTreeItem* parent ) { From 938536c0c341e81b3c3870b577f7c80f97a7ea5e Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 24 Mar 2020 12:36:31 +0100 Subject: [PATCH 19/35] [netinstall] Allow post-creation loading of model data - Instead of loading all in the constructor, provide a public setupModelData(). - This allows creating the model and setting it for UI, before the load completes. --- src/modules/netinstall/NetInstallPage.cpp | 6 ++-- src/modules/netinstall/PackageModel.cpp | 43 ++++++++++++++--------- src/modules/netinstall/PackageModel.h | 7 ++-- src/modules/netinstall/Tests.cpp | 21 +++++------ 4 files changed, 43 insertions(+), 34 deletions(-) diff --git a/src/modules/netinstall/NetInstallPage.cpp b/src/modules/netinstall/NetInstallPage.cpp index 13e9418a4..b1e04c56a 100644 --- a/src/modules/netinstall/NetInstallPage.cpp +++ b/src/modules/netinstall/NetInstallPage.cpp @@ -87,7 +87,8 @@ NetInstallPage::readGroups( const QByteArray& yamlData ) cWarning() << "netinstall groups data does not form a sequence."; } Q_ASSERT( groups.IsSequence() ); - m_groups = new PackageModel( groups ); + m_groups = new PackageModel(); + m_groups->setupModelData( CalamaresUtils::yamlSequenceToVariant( groups ) ); return true; } catch ( YAML::Exception& e ) @@ -214,7 +215,8 @@ NetInstallPage::loadGroupList( const QVariantList& l ) { // This short-cuts through loading and just uses the data, // containing cruft from dataIsHere() and readGroups(). - m_groups = new PackageModel( l ); + m_groups = new PackageModel(); + m_groups->setupModelData( l ); retranslate(); // For changed model ui->groupswidget->setModel( m_groups ); ui->groupswidget->header()->setSectionResizeMode( 0, QHeaderView::ResizeToContents ); diff --git a/src/modules/netinstall/PackageModel.cpp b/src/modules/netinstall/PackageModel.cpp index 26b5eb552..88a06a1bb 100644 --- a/src/modules/netinstall/PackageModel.cpp +++ b/src/modules/netinstall/PackageModel.cpp @@ -22,18 +22,9 @@ #include "utils/Variant.h" #include "utils/Yaml.h" -PackageModel::PackageModel( const YAML::Node& data, QObject* parent ) +PackageModel::PackageModel( QObject* parent ) : QAbstractItemModel( parent ) { - m_rootItem = new PackageTreeItem(); - setupModelData( CalamaresUtils::yamlSequenceToVariant( data ), m_rootItem ); -} - -PackageModel::PackageModel( const QVariantList& data, QObject* parent ) - : QAbstractItemModel( parent ) -{ - m_rootItem = new PackageTreeItem(); - setupModelData( data, m_rootItem ); } PackageModel::~PackageModel() @@ -44,7 +35,7 @@ PackageModel::~PackageModel() QModelIndex PackageModel::index( int row, int column, const QModelIndex& parent ) const { - if ( !hasIndex( row, column, parent ) ) + if ( !m_rootItem || !hasIndex( row, column, parent ) ) { return QModelIndex(); } @@ -74,7 +65,7 @@ PackageModel::index( int row, int column, const QModelIndex& parent ) const QModelIndex PackageModel::parent( const QModelIndex& index ) const { - if ( !index.isValid() ) + if ( !m_rootItem || !index.isValid() ) { return QModelIndex(); } @@ -92,7 +83,7 @@ PackageModel::parent( const QModelIndex& index ) const int PackageModel::rowCount( const QModelIndex& parent ) const { - if ( parent.column() > 0 ) + if ( !m_rootItem || ( parent.column() > 0 ) ) { return 0; } @@ -119,7 +110,7 @@ PackageModel::columnCount( const QModelIndex& ) const QVariant PackageModel::data( const QModelIndex& index, int role ) const { - if ( !index.isValid() ) + if ( !m_rootItem || !index.isValid() ) { return QVariant(); } @@ -141,6 +132,11 @@ PackageModel::data( const QModelIndex& index, int role ) const bool PackageModel::setData( const QModelIndex& index, const QVariant& value, int role ) { + if ( !m_rootItem ) + { + return false; + } + if ( role == Qt::CheckStateRole && index.isValid() ) { PackageTreeItem* item = static_cast< PackageTreeItem* >( index.internalPointer() ); @@ -156,7 +152,7 @@ PackageModel::setData( const QModelIndex& index, const QVariant& value, int role Qt::ItemFlags PackageModel::flags( const QModelIndex& index ) const { - if ( !index.isValid() ) + if ( !m_rootItem || !index.isValid() ) { return Qt::ItemFlags(); } @@ -180,6 +176,11 @@ PackageModel::headerData( int section, Qt::Orientation orientation, int role ) c PackageTreeItem::List PackageModel::getPackages() const { + if ( !m_rootItem ) + { + return PackageTreeItem::List(); + } + auto items = getItemPackages( m_rootItem ); for ( auto package : m_hiddenItems ) { @@ -194,7 +195,7 @@ PackageModel::getPackages() const PackageTreeItem::List PackageModel::getItemPackages( PackageTreeItem* item ) const { - QList< PackageTreeItem* > selectedPackages; + PackageTreeItem::List selectedPackages; for ( int i = 0; i < item->childCount(); i++ ) { if ( item->child( i )->isSelected() == Qt::Unchecked ) @@ -256,3 +257,13 @@ PackageModel::setupModelData( const QVariantList& groupList, PackageTreeItem* pa } } } + +void +PackageModel::setupModelData( const QVariantList& l ) +{ + emit beginResetModel(); + delete m_rootItem; + m_rootItem = new PackageTreeItem(); + setupModelData( l, m_rootItem ); + emit endResetModel(); +} diff --git a/src/modules/netinstall/PackageModel.h b/src/modules/netinstall/PackageModel.h index 04004b661..b4e8fc102 100644 --- a/src/modules/netinstall/PackageModel.h +++ b/src/modules/netinstall/PackageModel.h @@ -47,10 +47,11 @@ public: */ static constexpr const int MetaExpandRole = Qt::UserRole + 1; - explicit PackageModel( const YAML::Node& data, QObject* parent = nullptr ); - explicit PackageModel( const QVariantList& data, QObject* parent = nullptr ); + explicit PackageModel( QObject* parent = nullptr ); ~PackageModel() override; + void setupModelData( const QVariantList& l ); + QVariant data( const QModelIndex& index, int role ) const override; bool setData( const QModelIndex& index, const QVariant& value, int role = Qt::EditRole ) override; Qt::ItemFlags flags( const QModelIndex& index ) const override; @@ -70,7 +71,7 @@ private: void setupModelData( const QVariantList& l, PackageTreeItem* parent ); - PackageTreeItem* m_rootItem; + PackageTreeItem* m_rootItem = nullptr; PackageTreeItem::List m_hiddenItems; }; diff --git a/src/modules/netinstall/Tests.cpp b/src/modules/netinstall/Tests.cpp index e85944f6c..cfaf20efa 100644 --- a/src/modules/netinstall/Tests.cpp +++ b/src/modules/netinstall/Tests.cpp @@ -234,20 +234,17 @@ ItemTests::testModel() QVariantList yamlContents = CalamaresUtils::yamlSequenceToVariant( yamldoc ); QCOMPARE( yamlContents.length(), 1 ); - PackageModel m0( yamlContents, nullptr ); - PackageModel m1( yamldoc, nullptr ); + PackageModel m0( nullptr ); + m0.setupModelData( yamlContents ); - QCOMPARE( m0.rowCount(), m1.rowCount() ); QCOMPARE( m0.m_hiddenItems.count(), 0 ); // Nothing hidden - QCOMPARE( m1.m_hiddenItems.count(), 0 ); QCOMPARE( m0.rowCount(), 1 ); // Group, the packages are invisible QCOMPARE( m0.rowCount( m0.index( 0, 0 ) ), 3 ); // The packages - QCOMPARE( m1.rowCount( m1.index( 0, 0 ) ), 3 ); // The packages checkAllSelected( m0.m_rootItem ); - checkAllSelected( m1.m_rootItem ); - PackageModel m2( YAML::Load( doc_with_expanded ), nullptr ); + PackageModel m2( nullptr ); + m2.setupModelData( CalamaresUtils::yamlSequenceToVariant( YAML::Load( doc_with_expanded ) ) ); QCOMPARE( m2.m_hiddenItems.count(), 0 ); QCOMPARE( m2.rowCount(), 1 ); // Group, now the packages expanded but not counted QCOMPARE( m2.rowCount( m2.index( 0, 0 ) ), 3 ); // The packages @@ -255,7 +252,6 @@ ItemTests::testModel() PackageTreeItem r; QVERIFY( r == *m0.m_rootItem ); - QVERIFY( r == *m1.m_rootItem ); QCOMPARE( m0.m_rootItem->childCount(), 1 ); @@ -277,8 +273,6 @@ ItemTests::testModel() } QVERIFY( found_one_bash ); - recursiveCompare( m0, m1 ); - // But m2 has "expanded" set which the others do no QVERIFY( *( m2.m_rootItem->child( 0 ) ) != *group ); } @@ -301,9 +295,10 @@ ItemTests::testExampleFiles() YAML::Node yamldoc = YAML::Load( contents.constData() ); QVariantList yamlContents = CalamaresUtils::yamlSequenceToVariant( yamldoc ); - PackageModel m0( yamldoc, nullptr ); - PackageModel m1( yamlContents, nullptr ); - recursiveCompare( m0, m1 ); + PackageModel m1( nullptr ); + m1.setupModelData( yamlContents ); + + // TODO: should test *something* about this file :/ } } From f5b4e5d5e1df2261e769d78bee855c6cb4cc6650 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 24 Mar 2020 13:13:18 +0100 Subject: [PATCH 20/35] [netinstall] Add data-loading to the Config object - Mostly copied from NetInstallPage --- src/modules/netinstall/Config.cpp | 103 +++++++++++++++++++++++++++++- src/modules/netinstall/Config.h | 24 ++++++- 2 files changed, 125 insertions(+), 2 deletions(-) diff --git a/src/modules/netinstall/Config.cpp b/src/modules/netinstall/Config.cpp index 9218fab22..1856e5a49 100644 --- a/src/modules/netinstall/Config.cpp +++ b/src/modules/netinstall/Config.cpp @@ -21,14 +21,115 @@ #include "Config.h" +#include "network/Manager.h" +#include "utils/Logger.h" +#include "utils/Yaml.h" + +#include + Config::Config( QObject* parent ) - : m_model( nullptr ) + : QObject( parent ) + , m_model( new PackageModel( this ) ) { } +Config::~Config() {} + void Config::setStatus( const QString& s ) { m_status = s; emit statusChanged( m_status ); } + +void +Config::loadGroupList( const QVariantList& groupData ) +{ + m_model->setupModelData( groupData ); +} + +void +Config::loadGroupList( const QUrl& url ) +{ + if ( !url.isValid() ) + { + setStatus( tr( "Network Installation. (Disabled: Incorrect configuration)" ) ); + } + + using namespace CalamaresUtils::Network; + + cDebug() << "NetInstall loading groups from" << url; + QNetworkReply* reply = Manager::instance().asynchronouseGet( + url, + RequestOptions( RequestOptions::FakeUserAgent | RequestOptions::FollowRedirect, std::chrono::seconds( 30 ) ) ); + + if ( !reply ) + { + cDebug() << Logger::Continuation << "request failed immediately."; + setStatus( tr( "Network Installation. (Disabled: Incorrect configuration)" ) ); + } + else + { + m_reply = reply; + connect( reply, &QNetworkReply::finished, this, &Config::receivedGroupData ); + } +} + +/// @brief Convenience to zero out and deleteLater on the reply, used in dataIsHere +struct ReplyDeleter +{ + QNetworkReply*& p; + + ~ReplyDeleter() + { + if ( p ) + { + p->deleteLater(); + } + p = nullptr; + } +}; + +void +Config::receivedGroupData() +{ + if ( !m_reply || !m_reply->isFinished() ) + { + cWarning() << "NetInstall data called too early."; + setStatus( tr( "Network Installation. (Disabled: internal error)" ) ); + return; + } + + cDebug() << "NetInstall group data received" << m_reply->size() << "bytes from" << m_reply->url(); + + ReplyDeleter d { m_reply }; + + // If m_required is *false* then we still say we're ready + // even if the reply is corrupt or missing. + if ( m_reply->error() != QNetworkReply::NoError ) + { + cWarning() << "unable to fetch netinstall package lists."; + cDebug() << Logger::SubEntry << "Netinstall reply error: " << m_reply->error(); + cDebug() << Logger::SubEntry << "Request for url: " << m_reply->url().toString() + << " failed with: " << m_reply->errorString(); + setStatus( tr( "Network Installation. (Disabled: Unable to fetch package lists, check your network connection)" ) ); + return; + } + + QByteArray yamlData = m_reply->readAll(); + try + { + YAML::Node groups = YAML::Load( yamlData.constData() ); + + if ( !groups.IsSequence() ) + { + cWarning() << "NetInstall groups data does not form a sequence."; + } + loadGroupList( CalamaresUtils::yamlSequenceToVariant( groups ) ); + } + catch ( YAML::Exception& e ) + { + CalamaresUtils::explainYamlException( e, yamlData, "netinstall groups data" ); + setStatus( tr( "Network Installation. (Disabled: Received invalid groups data)" ) ); + } +} diff --git a/src/modules/netinstall/Config.h b/src/modules/netinstall/Config.h index 497871633..17bfab31a 100644 --- a/src/modules/netinstall/Config.h +++ b/src/modules/netinstall/Config.h @@ -24,6 +24,9 @@ #include "PackageModel.h" #include +#include + +class QNetworkReply; class Config : public QObject { @@ -35,16 +38,35 @@ class Config : public QObject public: Config( QObject* parent = nullptr ); + virtual ~Config(); QString status() const { return m_status; } void setStatus( const QString& s ); + /** @brief Retrieves the groups, with name, description and packages + * + * Loads data from the given URL. Once done, the data is parsed + * and passed on to the other loadGroupList() method. + */ + void loadGroupList( const QUrl& url ); + + /** @brief Fill model from parsed data. + * + * Fills the model with a list of groups -- which can contain + * subgroups and packages -- from @p groupData. + */ + void loadGroupList( const QVariantList& groupData ); + signals: void statusChanged( QString status ); +private slots: + void receivedGroupData(); ///< From async-loading group data + private: QString m_status; - PackageModel* m_model = nullptr; + PackageModel* m_model; + QNetworkReply* m_reply = nullptr; // For fetching data }; #endif From 8dc81b6987b01a8a0af0e88bd8b2ed1a1f8558a8 Mon Sep 17 00:00:00 2001 From: demmm Date: Wed, 25 Mar 2020 19:43:29 +0100 Subject: [PATCH 21/35] Increase Manual Partition instructions used downstream since 2014, has helped a lot with increaisng correct setups --- src/modules/partition/gui/ChoicePage.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/modules/partition/gui/ChoicePage.cpp b/src/modules/partition/gui/ChoicePage.cpp index 89393262d..a89dd1edb 100644 --- a/src/modules/partition/gui/ChoicePage.cpp +++ b/src/modules/partition/gui/ChoicePage.cpp @@ -332,7 +332,9 @@ ChoicePage::setupChoices() CALAMARES_RETRANSLATE( m_somethingElseButton->setText( tr( "Manual partitioning
" - "You can create or resize partitions yourself." ) ); + "You can create or resize partitions yourself." + " Having a GPT partition table and fat32 512Mb /boot partition " + "is a must for UEFI installs, either use an existing without formatting or create one." ) ); updateSwapChoicesTr( m_eraseSwapChoiceComboBox ); ) } From 1a74a713b663485c68a35591c74c389b29d305dd Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Fri, 27 Mar 2020 14:54:06 +0100 Subject: [PATCH 22/35] [netinstall] Make status an enum - Since we might change translations after loading, display the message based on the status enum, rather than setting it once at load-time. --- src/modules/netinstall/Config.cpp | 35 ++++++++++++++++++++++++------- src/modules/netinstall/Config.h | 18 +++++++++++----- 2 files changed, 41 insertions(+), 12 deletions(-) diff --git a/src/modules/netinstall/Config.cpp b/src/modules/netinstall/Config.cpp index 1856e5a49..3ed9074c6 100644 --- a/src/modules/netinstall/Config.cpp +++ b/src/modules/netinstall/Config.cpp @@ -29,17 +29,38 @@ Config::Config( QObject* parent ) : QObject( parent ) + , m_status( Status::Ok ) , m_model( new PackageModel( this ) ) { } Config::~Config() {} +QString +Config::status() const +{ + switch ( m_status ) + { + case Status::Ok: + return QString(); + case Status::FailedBadConfiguration: + return tr( "Network Installation. (Disabled: Incorrect configuration)" ); + case Status::FailedBadData: + return tr( "Network Installation. (Disabled: Received invalid groups data)" ); + case Status::FailedInternalError: + return tr( "Network Installation. (Disabled: internal error)" ); + case Status::FailedNetworkError: + return tr( "Network Installation. (Disabled: Unable to fetch package lists, check your network connection)" ); + } + NOTREACHED return QString(); +} + + void -Config::setStatus( const QString& s ) +Config::setStatus( Status s ) { m_status = s; - emit statusChanged( m_status ); + emit statusChanged( status() ); } void @@ -53,7 +74,7 @@ Config::loadGroupList( const QUrl& url ) { if ( !url.isValid() ) { - setStatus( tr( "Network Installation. (Disabled: Incorrect configuration)" ) ); + setStatus( Status::FailedBadConfiguration ); } using namespace CalamaresUtils::Network; @@ -66,7 +87,7 @@ Config::loadGroupList( const QUrl& url ) if ( !reply ) { cDebug() << Logger::Continuation << "request failed immediately."; - setStatus( tr( "Network Installation. (Disabled: Incorrect configuration)" ) ); + setStatus( Status::FailedBadConfiguration ); } else { @@ -96,7 +117,7 @@ Config::receivedGroupData() if ( !m_reply || !m_reply->isFinished() ) { cWarning() << "NetInstall data called too early."; - setStatus( tr( "Network Installation. (Disabled: internal error)" ) ); + setStatus( Status::FailedInternalError ); return; } @@ -112,7 +133,7 @@ Config::receivedGroupData() cDebug() << Logger::SubEntry << "Netinstall reply error: " << m_reply->error(); cDebug() << Logger::SubEntry << "Request for url: " << m_reply->url().toString() << " failed with: " << m_reply->errorString(); - setStatus( tr( "Network Installation. (Disabled: Unable to fetch package lists, check your network connection)" ) ); + setStatus( Status::FailedNetworkError ); return; } @@ -130,6 +151,6 @@ Config::receivedGroupData() catch ( YAML::Exception& e ) { CalamaresUtils::explainYamlException( e, yamlData, "netinstall groups data" ); - setStatus( tr( "Network Installation. (Disabled: Received invalid groups data)" ) ); + setStatus( Status::FailedBadData ); } } diff --git a/src/modules/netinstall/Config.h b/src/modules/netinstall/Config.h index 17bfab31a..62d43c17e 100644 --- a/src/modules/netinstall/Config.h +++ b/src/modules/netinstall/Config.h @@ -33,15 +33,23 @@ class Config : public QObject Q_OBJECT Q_PROPERTY( PackageModel* packageModel MEMBER m_model FINAL ) - - Q_PROPERTY( QString status READ status WRITE setStatus NOTIFY statusChanged FINAL ) + Q_PROPERTY( QString status READ status NOTIFY statusChanged FINAL ) public: Config( QObject* parent = nullptr ); virtual ~Config(); - QString status() const { return m_status; } - void setStatus( const QString& s ); + enum class Status + { + Ok, + FailedBadConfiguration, + FailedInternalError, + FailedNetworkError, + FailedBadData + }; + + QString status() const; + void setStatus( Status s ); /** @brief Retrieves the groups, with name, description and packages * @@ -64,7 +72,7 @@ private slots: void receivedGroupData(); ///< From async-loading group data private: - QString m_status; + Status m_status; PackageModel* m_model; QNetworkReply* m_reply = nullptr; // For fetching data }; From 9a354271135031b577b09937ef0f632365d08450 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Fri, 27 Mar 2020 15:14:37 +0100 Subject: [PATCH 23/35] [netinstall] Remove unused m_jobs - Netinstall doesn't make any jobs itself, so drop the member variable - Use type alias, and simplify jobs() --- src/modules/netinstall/NetInstallViewStep.cpp | 4 ++-- src/modules/netinstall/NetInstallViewStep.h | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/modules/netinstall/NetInstallViewStep.cpp b/src/modules/netinstall/NetInstallViewStep.cpp index 9c8b186de..8515d537a 100644 --- a/src/modules/netinstall/NetInstallViewStep.cpp +++ b/src/modules/netinstall/NetInstallViewStep.cpp @@ -111,10 +111,10 @@ NetInstallViewStep::isAtEnd() const } -QList< Calamares::job_ptr > +Calamares::JobList NetInstallViewStep::jobs() const { - return m_jobs; + return Calamares::JobList(); } diff --git a/src/modules/netinstall/NetInstallViewStep.h b/src/modules/netinstall/NetInstallViewStep.h index ad796b8b2..ffcc785c8 100644 --- a/src/modules/netinstall/NetInstallViewStep.h +++ b/src/modules/netinstall/NetInstallViewStep.h @@ -47,7 +47,7 @@ public: bool isAtBeginning() const override; bool isAtEnd() const override; - QList< Calamares::job_ptr > jobs() const override; + Calamares::JobList jobs() const override; void onActivate() override; @@ -63,7 +63,6 @@ private: NetInstallPage* m_widget; bool m_nextEnabled; CalamaresUtils::Locale::TranslatedString* m_sidebarLabel; // As it appears in the sidebar - QList< Calamares::job_ptr > m_jobs; }; CALAMARES_PLUGIN_FACTORY_DECLARATION( NetInstallViewStepFactory ) From 4cdfe1276ae76bb42caf44e143ebe44357e6dc10 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Fri, 27 Mar 2020 15:51:03 +0100 Subject: [PATCH 24/35] [netinstall] Rip loading out of the UI page - Create a config object in the ViewStep - Model lives in the config object and loads there - Give model to the UI page for display --- src/modules/netinstall/Config.cpp | 1 - src/modules/netinstall/Config.h | 10 +- src/modules/netinstall/NetInstallPage.cpp | 162 +----------------- src/modules/netinstall/NetInstallPage.h | 47 +---- src/modules/netinstall/NetInstallViewStep.cpp | 11 +- src/modules/netinstall/NetInstallViewStep.h | 6 +- 6 files changed, 34 insertions(+), 203 deletions(-) diff --git a/src/modules/netinstall/Config.cpp b/src/modules/netinstall/Config.cpp index 3ed9074c6..af4ae8e50 100644 --- a/src/modules/netinstall/Config.cpp +++ b/src/modules/netinstall/Config.cpp @@ -29,7 +29,6 @@ Config::Config( QObject* parent ) : QObject( parent ) - , m_status( Status::Ok ) , m_model( new PackageModel( this ) ) { } diff --git a/src/modules/netinstall/Config.h b/src/modules/netinstall/Config.h index 62d43c17e..372c82bee 100644 --- a/src/modules/netinstall/Config.h +++ b/src/modules/netinstall/Config.h @@ -51,6 +51,9 @@ public: QString status() const; void setStatus( Status s ); + bool required() const { return m_required; } + void setRequired( bool r ) { m_required = r; } + /** @brief Retrieves the groups, with name, description and packages * * Loads data from the given URL. Once done, the data is parsed @@ -65,6 +68,8 @@ public: */ void loadGroupList( const QVariantList& groupData ); + PackageModel* model() const { return m_model; } + signals: void statusChanged( QString status ); @@ -72,9 +77,10 @@ private slots: void receivedGroupData(); ///< From async-loading group data private: - Status m_status; - PackageModel* m_model; + PackageModel* m_model = nullptr; QNetworkReply* m_reply = nullptr; // For fetching data + Status m_status = Status::Ok; + bool m_required = false; }; #endif diff --git a/src/modules/netinstall/NetInstallPage.cpp b/src/modules/netinstall/NetInstallPage.cpp index b1e04c56a..ab3e1a933 100644 --- a/src/modules/netinstall/NetInstallPage.cpp +++ b/src/modules/netinstall/NetInstallPage.cpp @@ -37,19 +37,13 @@ NetInstallPage::NetInstallPage( QWidget* parent ) : QWidget( parent ) , ui( new Ui::Page_NetInst ) - , m_reply( nullptr ) - , m_groups( nullptr ) { ui->setupUi( this ); setPageTitle( nullptr ); CALAMARES_RETRANSLATE_SLOT( &NetInstallPage::retranslate ); } -NetInstallPage::~NetInstallPage() -{ - delete m_groups; - delete m_reply; -} +NetInstallPage::~NetInstallPage() {} void NetInstallPage::setPageTitle( CalamaresUtils::Locale::TranslatedString* t ) @@ -75,165 +69,21 @@ NetInstallPage::retranslate() } } -bool -NetInstallPage::readGroups( const QByteArray& yamlData ) -{ - try - { - YAML::Node groups = YAML::Load( yamlData.constData() ); - - if ( !groups.IsSequence() ) - { - cWarning() << "netinstall groups data does not form a sequence."; - } - Q_ASSERT( groups.IsSequence() ); - m_groups = new PackageModel(); - m_groups->setupModelData( CalamaresUtils::yamlSequenceToVariant( groups ) ); - return true; - } - catch ( YAML::Exception& e ) - { - CalamaresUtils::explainYamlException( e, yamlData, "netinstall groups data" ); - return false; - } -} - -/// @brief Convenience to zero out and deleteLater on the reply, used in dataIsHere -struct ReplyDeleter -{ - QNetworkReply*& p; - - ~ReplyDeleter() - { - if ( p ) - { - p->deleteLater(); - } - p = nullptr; - } -}; - void -NetInstallPage::dataIsHere() -{ - if ( !m_reply || !m_reply->isFinished() ) - { - cWarning() << "NetInstall data called too early."; - return; - } - - cDebug() << "NetInstall group data received" << m_reply->url(); - - ReplyDeleter d { m_reply }; - - // If m_required is *false* then we still say we're ready - // even if the reply is corrupt or missing. - if ( m_reply->error() != QNetworkReply::NoError ) - { - cWarning() << "unable to fetch netinstall package lists."; - cDebug() << Logger::SubEntry << "Netinstall reply error: " << m_reply->error(); - cDebug() << Logger::SubEntry << "Request for url: " << m_reply->url().toString() - << " failed with: " << m_reply->errorString(); - ui->netinst_status->setText( - tr( "Network Installation. (Disabled: Unable to fetch package lists, check your network connection)" ) ); - emit checkReady( !m_required ); - return; - } - - if ( !readGroups( m_reply->readAll() ) ) - { - cWarning() << "netinstall groups data was received, but invalid."; - cDebug() << Logger::SubEntry << "Url: " << m_reply->url().toString(); - cDebug() << Logger::SubEntry << "Headers: " << m_reply->rawHeaderList(); - ui->netinst_status->setText( tr( "Network Installation. (Disabled: Received invalid groups data)" ) ); - emit checkReady( !m_required ); - return; - } - - retranslate(); // For changed model - ui->groupswidget->setModel( m_groups ); - ui->groupswidget->header()->setSectionResizeMode( 0, QHeaderView::ResizeToContents ); - ui->groupswidget->header()->setSectionResizeMode( 1, QHeaderView::Stretch ); - - expandGroups(); - - emit checkReady( true ); -} - -void -NetInstallPage::expandGroups() +NetInstallPage::setModel( QAbstractItemModel* model ) { + ui->groupswidget->setModel( model ); // Go backwards because expanding a group may cause rows to appear below it - for ( int i = m_groups->rowCount() - 1; i >= 0; --i ) + for ( int i = model->rowCount() - 1; i >= 0; --i ) { - auto index = m_groups->index( i, 0 ); - if ( m_groups->data( index, PackageModel::MetaExpandRole ).toBool() ) + auto index = model->index( i, 0 ); + if ( model->data( index, PackageModel::MetaExpandRole ).toBool() ) { ui->groupswidget->setExpanded( index, true ); } } } -PackageTreeItem::List -NetInstallPage::selectedPackages() const -{ - if ( m_groups ) - { - return m_groups->getPackages(); - } - else - { - cWarning() << "no netinstall groups are available."; - return PackageTreeItem::List(); - } -} - -void -NetInstallPage::loadGroupList( const QString& confUrl ) -{ - using namespace CalamaresUtils::Network; - - cDebug() << "NetInstall loading groups from" << confUrl; - QNetworkReply* reply = Manager::instance().asynchronouseGet( - QUrl( confUrl ), - RequestOptions( RequestOptions::FakeUserAgent | RequestOptions::FollowRedirect, std::chrono::seconds( 30 ) ) ); - - if ( !reply ) - { - cDebug() << Logger::Continuation << "request failed immediately."; - ui->netinst_status->setText( tr( "Network Installation. (Disabled: Incorrect configuration)" ) ); - } - else - { - m_reply = reply; - connect( reply, &QNetworkReply::finished, this, &NetInstallPage::dataIsHere ); - } -} - -void -NetInstallPage::loadGroupList( const QVariantList& l ) -{ - // This short-cuts through loading and just uses the data, - // containing cruft from dataIsHere() and readGroups(). - m_groups = new PackageModel(); - m_groups->setupModelData( l ); - retranslate(); // For changed model - ui->groupswidget->setModel( m_groups ); - ui->groupswidget->header()->setSectionResizeMode( 0, QHeaderView::ResizeToContents ); - ui->groupswidget->header()->setSectionResizeMode( 1, QHeaderView::Stretch ); - - expandGroups(); - - emit checkReady( true ); -} - - -void -NetInstallPage::setRequired( bool b ) -{ - m_required = b; -} - void NetInstallPage::onActivate() diff --git a/src/modules/netinstall/NetInstallPage.h b/src/modules/netinstall/NetInstallPage.h index fdbdbac88..4db0b2f5d 100644 --- a/src/modules/netinstall/NetInstallPage.h +++ b/src/modules/netinstall/NetInstallPage.h @@ -56,56 +56,27 @@ public: */ void setPageTitle( CalamaresUtils::Locale::TranslatedString* ); + /** @brief Sets the model of packages to display + * + * While setting up the UI, expand entries that should be pre-expanded. + * + * Follows the *expanded* key / the startExpanded field in the + * group entries of the model. Call this after filling up the model. + */ + void setModel( QAbstractItemModel* ); + void onActivate(); - /** @brief Retrieves the groups, with name, description and packages - * - * Loads data from the given URL. This should be called before - * displaying the page. - */ - void loadGroupList( const QString& url ); - /// @brief Retrieve pre-processed and fetched group data - void loadGroupList( const QVariantList& l ); - - // Sets the "required" state of netinstall data. Influences whether - // corrupt or unavailable data causes checkReady() to be emitted - // true (not-required) or false. - void setRequired( bool ); - bool getRequired() const { return m_required; } - - // Returns the list of packages belonging to groups that are - // selected in the view in this given moment. No data is cached here, so - // this function does not have constant time. - PackageTreeItem::List selectedPackages() const; - public slots: - void dataIsHere(); - void retranslate(); signals: void checkReady( bool ); private: - // Takes the YAML data representing the groups and reads them into the - // m_groups and m_groupOrder internal structures. See the README.md - // of this module to know the format expected of the YAML files. - bool readGroups( const QByteArray& yamlData ); - - /** @brief Expand entries that should be pre-expanded - * - * Follows the *expanded* key / the startExpanded field in the - * group entries of the model. Call this after filling up the model. - */ - void expandGroups(); - Ui::Page_NetInst* ui; std::unique_ptr< CalamaresUtils::Locale::TranslatedString > m_title; // Above the treeview - - QNetworkReply* m_reply; - PackageModel* m_groups; - bool m_required; }; #endif // NETINSTALLPAGE_H diff --git a/src/modules/netinstall/NetInstallViewStep.cpp b/src/modules/netinstall/NetInstallViewStep.cpp index 8515d537a..0b5fb8b15 100644 --- a/src/modules/netinstall/NetInstallViewStep.cpp +++ b/src/modules/netinstall/NetInstallViewStep.cpp @@ -33,8 +33,8 @@ CALAMARES_PLUGIN_FACTORY_DEFINITION( NetInstallViewStepFactory, registerPlugin< NetInstallViewStep::NetInstallViewStep( QObject* parent ) : Calamares::ViewStep( parent ) , m_widget( new NetInstallPage() ) - , m_nextEnabled( false ) , m_sidebarLabel( nullptr ) + , m_nextEnabled( false ) { emit nextStatusChanged( true ); connect( m_widget, &NetInstallPage::checkReady, this, &NetInstallViewStep::nextIsReady ); @@ -127,7 +127,7 @@ NetInstallViewStep::onActivate() void NetInstallViewStep::onLeave() { - auto packages = m_widget->selectedPackages(); + auto packages = m_config.model()->getPackages(); cDebug() << "Netinstall: Processing" << packages.length() << "packages."; static const char PACKAGEOP[] = "packageOperations"; @@ -201,7 +201,8 @@ NetInstallViewStep::nextIsReady( bool b ) void NetInstallViewStep::setConfigurationMap( const QVariantMap& configurationMap ) { - m_widget->setRequired( CalamaresUtils::getBool( configurationMap, "required", false ) ); + m_config.setRequired( CalamaresUtils::getBool( configurationMap, "required", false ) ); + m_widget->setModel( m_config.model() ); QString groupsUrl = CalamaresUtils::getString( configurationMap, "groupsUrl" ); if ( !groupsUrl.isEmpty() ) @@ -212,11 +213,11 @@ NetInstallViewStep::setConfigurationMap( const QVariantMap& configurationMap ) if ( groupsUrl == QStringLiteral( "local" ) ) { QVariantList l = configurationMap.value( "groups" ).toList(); - m_widget->loadGroupList( l ); + m_config.loadGroupList( l ); } else { - m_widget->loadGroupList( groupsUrl ); + m_config.loadGroupList( groupsUrl ); } } diff --git a/src/modules/netinstall/NetInstallViewStep.h b/src/modules/netinstall/NetInstallViewStep.h index ffcc785c8..2dcf464c3 100644 --- a/src/modules/netinstall/NetInstallViewStep.h +++ b/src/modules/netinstall/NetInstallViewStep.h @@ -20,6 +20,8 @@ #ifndef NETINSTALLVIEWSTEP_H #define NETINSTALLVIEWSTEP_H +#include "Config.h" + #include "DllMacro.h" #include "locale/TranslatableConfiguration.h" #include "utils/PluginFactory.h" @@ -60,9 +62,11 @@ public slots: void nextIsReady( bool ); private: + Config m_config; + NetInstallPage* m_widget; - bool m_nextEnabled; CalamaresUtils::Locale::TranslatedString* m_sidebarLabel; // As it appears in the sidebar + bool m_nextEnabled; }; CALAMARES_PLUGIN_FACTORY_DECLARATION( NetInstallViewStepFactory ) From 85551f0fdbda2d4d6083fb0ef0892402a70217d4 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Fri, 27 Mar 2020 16:12:48 +0100 Subject: [PATCH 25/35] [netinstall] Various refactoring - move ready-indication to Config - don't check pointers that can't be null - hand the whole Config to the page --- src/modules/netinstall/Config.cpp | 1 + src/modules/netinstall/Config.h | 3 ++- src/modules/netinstall/NetInstallPage.cpp | 19 ++++++++++++---- src/modules/netinstall/NetInstallPage.h | 22 +++++++++---------- src/modules/netinstall/NetInstallViewStep.cpp | 14 +++++------- src/modules/netinstall/NetInstallViewStep.h | 4 ++-- 6 files changed, 36 insertions(+), 27 deletions(-) diff --git a/src/modules/netinstall/Config.cpp b/src/modules/netinstall/Config.cpp index af4ae8e50..ebcda3b8b 100644 --- a/src/modules/netinstall/Config.cpp +++ b/src/modules/netinstall/Config.cpp @@ -66,6 +66,7 @@ void Config::loadGroupList( const QVariantList& groupData ) { m_model->setupModelData( groupData ); + emit statusReady(); } void diff --git a/src/modules/netinstall/Config.h b/src/modules/netinstall/Config.h index 372c82bee..781c9be5d 100644 --- a/src/modules/netinstall/Config.h +++ b/src/modules/netinstall/Config.h @@ -71,7 +71,8 @@ public: PackageModel* model() const { return m_model; } signals: - void statusChanged( QString status ); + void statusChanged( QString status ); ///< Something changed + void statusReady(); ///< Loading groups is complete private slots: void receivedGroupData(); ///< From async-loading group data diff --git a/src/modules/netinstall/NetInstallPage.cpp b/src/modules/netinstall/NetInstallPage.cpp index ab3e1a933..688e99b09 100644 --- a/src/modules/netinstall/NetInstallPage.cpp +++ b/src/modules/netinstall/NetInstallPage.cpp @@ -34,11 +34,16 @@ #include #include -NetInstallPage::NetInstallPage( QWidget* parent ) +NetInstallPage::NetInstallPage( Config* c, QWidget* parent ) : QWidget( parent ) + , m_config( c ) , ui( new Ui::Page_NetInst ) { ui->setupUi( this ); + ui->groupswidget->setModel( c->model() ); + connect( c, &Config::statusChanged, this, &NetInstallPage::setStatus ); + connect( c, &Config::statusReady, this, &NetInstallPage::expandGroups ); + setPageTitle( nullptr ); CALAMARES_RETRANSLATE_SLOT( &NetInstallPage::retranslate ); } @@ -63,16 +68,17 @@ NetInstallPage::setPageTitle( CalamaresUtils::Locale::TranslatedString* t ) void NetInstallPage::retranslate() { - if ( ui && m_title ) + if ( m_title ) { ui->label->setText( m_title->get() ); // That's get() on the TranslatedString } + ui->netinst_status->setText( m_config->status() ); } void -NetInstallPage::setModel( QAbstractItemModel* model ) +NetInstallPage::expandGroups() { - ui->groupswidget->setModel( model ); + auto* model = m_config->model(); // Go backwards because expanding a group may cause rows to appear below it for ( int i = model->rowCount() - 1; i >= 0; --i ) { @@ -84,6 +90,11 @@ NetInstallPage::setModel( QAbstractItemModel* model ) } } +void +NetInstallPage::setStatus( QString s ) +{ + ui->netinst_status->setText( s ); +} void NetInstallPage::onActivate() diff --git a/src/modules/netinstall/NetInstallPage.h b/src/modules/netinstall/NetInstallPage.h index 4db0b2f5d..13a106eaf 100644 --- a/src/modules/netinstall/NetInstallPage.h +++ b/src/modules/netinstall/NetInstallPage.h @@ -21,6 +21,7 @@ #ifndef NETINSTALLPAGE_H #define NETINSTALLPAGE_H +#include "Config.h" #include "PackageModel.h" #include "PackageTreeItem.h" @@ -42,7 +43,7 @@ class NetInstallPage : public QWidget { Q_OBJECT public: - NetInstallPage( QWidget* parent = nullptr ); + NetInstallPage( Config* config, QWidget* parent = nullptr ); virtual ~NetInstallPage(); /** @brief Sets the page title @@ -56,24 +57,21 @@ public: */ void setPageTitle( CalamaresUtils::Locale::TranslatedString* ); - /** @brief Sets the model of packages to display - * - * While setting up the UI, expand entries that should be pre-expanded. - * - * Follows the *expanded* key / the startExpanded field in the - * group entries of the model. Call this after filling up the model. - */ - void setModel( QAbstractItemModel* ); - void onActivate(); public slots: void retranslate(); + void setStatus( QString s ); -signals: - void checkReady( bool ); + /** @brief Expand entries that should be pre-expanded. + * + * Follows the *expanded* key / the startExpanded field in the + * group entries of the model. Call this after filling up the model. + */ + void expandGroups(); private: + Config* m_config; Ui::Page_NetInst* ui; std::unique_ptr< CalamaresUtils::Locale::TranslatedString > m_title; // Above the treeview diff --git a/src/modules/netinstall/NetInstallViewStep.cpp b/src/modules/netinstall/NetInstallViewStep.cpp index 0b5fb8b15..3eba788db 100644 --- a/src/modules/netinstall/NetInstallViewStep.cpp +++ b/src/modules/netinstall/NetInstallViewStep.cpp @@ -32,12 +32,11 @@ CALAMARES_PLUGIN_FACTORY_DEFINITION( NetInstallViewStepFactory, registerPlugin< NetInstallViewStep::NetInstallViewStep( QObject* parent ) : Calamares::ViewStep( parent ) - , m_widget( new NetInstallPage() ) + , m_widget( new NetInstallPage( &m_config ) ) , m_sidebarLabel( nullptr ) , m_nextEnabled( false ) { - emit nextStatusChanged( true ); - connect( m_widget, &NetInstallPage::checkReady, this, &NetInstallViewStep::nextIsReady ); + connect( &m_config, &Config::statusReady, this, &NetInstallViewStep::nextIsReady ); } @@ -86,7 +85,7 @@ NetInstallViewStep::widget() bool NetInstallViewStep::isNextEnabled() const { - return m_nextEnabled; + return !m_config.required() || m_nextEnabled; } @@ -192,17 +191,16 @@ NetInstallViewStep::onLeave() } void -NetInstallViewStep::nextIsReady( bool b ) +NetInstallViewStep::nextIsReady() { - m_nextEnabled = b; - emit nextStatusChanged( b ); + m_nextEnabled = true; + emit nextStatusChanged( true ); } void NetInstallViewStep::setConfigurationMap( const QVariantMap& configurationMap ) { m_config.setRequired( CalamaresUtils::getBool( configurationMap, "required", false ) ); - m_widget->setModel( m_config.model() ); QString groupsUrl = CalamaresUtils::getString( configurationMap, "groupsUrl" ); if ( !groupsUrl.isEmpty() ) diff --git a/src/modules/netinstall/NetInstallViewStep.h b/src/modules/netinstall/NetInstallViewStep.h index 2dcf464c3..d2114a346 100644 --- a/src/modules/netinstall/NetInstallViewStep.h +++ b/src/modules/netinstall/NetInstallViewStep.h @@ -59,14 +59,14 @@ public: void setConfigurationMap( const QVariantMap& configurationMap ) override; public slots: - void nextIsReady( bool ); + void nextIsReady(); private: Config m_config; NetInstallPage* m_widget; CalamaresUtils::Locale::TranslatedString* m_sidebarLabel; // As it appears in the sidebar - bool m_nextEnabled; + bool m_nextEnabled = false; }; CALAMARES_PLUGIN_FACTORY_DECLARATION( NetInstallViewStepFactory ) From 7a42a4d71fa33f34dac8431ae5a56e42cdd542ac Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Fri, 27 Mar 2020 16:35:06 +0100 Subject: [PATCH 26/35] [netinstall] Add example section that is immutable - The section can't be changed, but is selected (it doesn't make sense otherwise) --- src/modules/netinstall/netinstall.conf | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/modules/netinstall/netinstall.conf b/src/modules/netinstall/netinstall.conf index 96977bdd0..82e12d558 100644 --- a/src/modules/netinstall/netinstall.conf +++ b/src/modules/netinstall/netinstall.conf @@ -83,3 +83,13 @@ groups: - zsh - zsh-completion - zsh-extensions + - name: "Kernel" + description: "Kernel bits" + hidden: false + selected: true + critical: true + immutable: true + packages: + - kernel + - kernel-debugsym + - kernel-nvidia From 63b940a62365f262e050b4f1ce0e4541d504dd58 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Fri, 27 Mar 2020 16:47:33 +0100 Subject: [PATCH 27/35] [netinstall] Implement immutable groups - An immutable group doesn't show a checkbox at all --- src/modules/netinstall/PackageModel.cpp | 7 ++++++- src/modules/netinstall/PackageTreeItem.cpp | 1 + src/modules/netinstall/PackageTreeItem.h | 7 +++++++ 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/src/modules/netinstall/PackageModel.cpp b/src/modules/netinstall/PackageModel.cpp index 88a06a1bb..3339a7284 100644 --- a/src/modules/netinstall/PackageModel.cpp +++ b/src/modules/netinstall/PackageModel.cpp @@ -119,7 +119,7 @@ PackageModel::data( const QModelIndex& index, int role ) const switch ( role ) { case Qt::CheckStateRole: - return index.column() == NameColumn ? item->isSelected() : QVariant(); + return index.column() == NameColumn ? ( item->isImmutable() ? QVariant() : item->isSelected() ) : QVariant(); case Qt::DisplayRole: return item->isHidden() ? QVariant() : item->data( index.column() ); case MetaExpandRole: @@ -158,6 +158,11 @@ PackageModel::flags( const QModelIndex& index ) const } if ( index.column() == NameColumn ) { + PackageTreeItem* item = static_cast< PackageTreeItem* >( index.internalPointer() ); + if ( item->isImmutable() ) + { + return QAbstractItemModel::flags( index ); //Qt::NoItemFlags; + } return Qt::ItemIsUserCheckable | QAbstractItemModel::flags( index ); } return QAbstractItemModel::flags( index ); diff --git a/src/modules/netinstall/PackageTreeItem.cpp b/src/modules/netinstall/PackageTreeItem.cpp index e611da477..3c5ed0a85 100644 --- a/src/modules/netinstall/PackageTreeItem.cpp +++ b/src/modules/netinstall/PackageTreeItem.cpp @@ -41,6 +41,7 @@ PackageTreeItem::PackageTreeItem( const QString& packageName, PackageTreeItem* p , m_packageName( packageName ) , m_selected( parentCheckState( parent ) ) , m_isGroup( false ) + , m_showReadOnly( parent ? parent->isImmutable() : false ) { } diff --git a/src/modules/netinstall/PackageTreeItem.h b/src/modules/netinstall/PackageTreeItem.h index 3f7dcce86..3c3aca814 100644 --- a/src/modules/netinstall/PackageTreeItem.h +++ b/src/modules/netinstall/PackageTreeItem.h @@ -97,6 +97,13 @@ public: */ bool expandOnStart() const { return m_startExpanded; } + /** @brief Is this an immutable item? + * + * Groups can be immutable: then you can't toggle the selected + * state of any of its items. + */ + bool isImmutable() const { return m_showReadOnly; } + /** @brief is this item selected? * * Groups may be partially selected; packages are only on or off. From 464561b420ee1f247f4939e6ae64b2b2b89318a1 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Fri, 27 Mar 2020 17:28:32 +0100 Subject: [PATCH 28/35] [netinstall] Update subgroup-checkedness based on children - An unselected group with (some) selected subgroups was not displayed as (semi)checked -- it was unchecked, because its checked-ness was not updated based on the children. --- src/modules/netinstall/PackageModel.cpp | 4 ++++ src/modules/netinstall/PackageTreeItem.cpp | 21 ++++++++++++++------- src/modules/netinstall/PackageTreeItem.h | 7 +++++++ 3 files changed, 25 insertions(+), 7 deletions(-) diff --git a/src/modules/netinstall/PackageModel.cpp b/src/modules/netinstall/PackageModel.cpp index 3339a7284..0698d4cfb 100644 --- a/src/modules/netinstall/PackageModel.cpp +++ b/src/modules/netinstall/PackageModel.cpp @@ -249,6 +249,10 @@ PackageModel::setupModelData( const QVariantList& groupList, PackageTreeItem* pa if ( !subgroups.isEmpty() ) { setupModelData( subgroups, item ); + // The children might be checked while the parent isn't (yet). + // Children are added to their parent (below) without affecting + // the checked-state -- do it manually. + item->updateSelected(); } } if ( item->isHidden() ) diff --git a/src/modules/netinstall/PackageTreeItem.cpp b/src/modules/netinstall/PackageTreeItem.cpp index 3c5ed0a85..d6a3531f9 100644 --- a/src/modules/netinstall/PackageTreeItem.cpp +++ b/src/modules/netinstall/PackageTreeItem.cpp @@ -194,34 +194,41 @@ PackageTreeItem::setSelected( Qt::CheckState isSelected ) return; } + currentItem->updateSelected(); +} + +void +PackageTreeItem::updateSelected() +{ // Figure out checked-state based on the children int childrenSelected = 0; int childrenPartiallySelected = 0; - for ( int i = 0; i < currentItem->childCount(); i++ ) + for ( int i = 0; i < childCount(); i++ ) { - if ( currentItem->child( i )->isSelected() == Qt::Checked ) + if ( child( i )->isSelected() == Qt::Checked ) { childrenSelected++; } - if ( currentItem->child( i )->isSelected() == Qt::PartiallyChecked ) + if ( child( i )->isSelected() == Qt::PartiallyChecked ) { childrenPartiallySelected++; } } if ( !childrenSelected && !childrenPartiallySelected ) { - currentItem->setSelected( Qt::Unchecked ); + setSelected( Qt::Unchecked ); } - else if ( childrenSelected == currentItem->childCount() ) + else if ( childrenSelected == childCount() ) { - currentItem->setSelected( Qt::Checked ); + setSelected( Qt::Checked ); } else { - currentItem->setSelected( Qt::PartiallyChecked ); + setSelected( Qt::PartiallyChecked ); } } + void PackageTreeItem::setChildrenSelected( Qt::CheckState isSelected ) { diff --git a/src/modules/netinstall/PackageTreeItem.h b/src/modules/netinstall/PackageTreeItem.h index 3c3aca814..d443bcdc6 100644 --- a/src/modules/netinstall/PackageTreeItem.h +++ b/src/modules/netinstall/PackageTreeItem.h @@ -120,6 +120,13 @@ public: void setSelected( Qt::CheckState isSelected ); void setChildrenSelected( Qt::CheckState isSelected ); + /** @brief Update selectedness based on the children's states + * + * This only makes sense for groups, which might have packages + * or subgroups; it checks only direct children. + */ + void updateSelected(); + // QStandardItem methods int type() const override; From 14a3e10cc2850bd1405fcb0e7f8820c5b3868681 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Fri, 27 Mar 2020 20:36:34 +0100 Subject: [PATCH 29/35] [netinstall] Simplify getItemPackages - Use convenience predicate isPackage() - Name child->item(i) for brevity --- src/modules/netinstall/PackageModel.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/modules/netinstall/PackageModel.cpp b/src/modules/netinstall/PackageModel.cpp index 0698d4cfb..dad2207b2 100644 --- a/src/modules/netinstall/PackageModel.cpp +++ b/src/modules/netinstall/PackageModel.cpp @@ -203,18 +203,19 @@ PackageModel::getItemPackages( PackageTreeItem* item ) const PackageTreeItem::List selectedPackages; for ( int i = 0; i < item->childCount(); i++ ) { - if ( item->child( i )->isSelected() == Qt::Unchecked ) + auto* child = item->child( i ); + if ( child->isSelected() == Qt::Unchecked ) { continue; } - if ( !item->child( i )->childCount() ) // package + if ( child->isPackage() ) // package { - selectedPackages.append( item->child( i ) ); + selectedPackages.append( child ); } else { - selectedPackages.append( getItemPackages( item->child( i ) ) ); + selectedPackages.append( getItemPackages( child ) ); } } return selectedPackages; From 83a89c144c25f0e4b58853ae674886837705b8e8 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Fri, 27 Mar 2020 20:45:04 +0100 Subject: [PATCH 30/35] [netinstall] Packages should inherit critical-ness from parent --- src/modules/netinstall/PackageTreeItem.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/netinstall/PackageTreeItem.cpp b/src/modules/netinstall/PackageTreeItem.cpp index d6a3531f9..04358fd43 100644 --- a/src/modules/netinstall/PackageTreeItem.cpp +++ b/src/modules/netinstall/PackageTreeItem.cpp @@ -41,6 +41,7 @@ PackageTreeItem::PackageTreeItem( const QString& packageName, PackageTreeItem* p , m_packageName( packageName ) , m_selected( parentCheckState( parent ) ) , m_isGroup( false ) + , m_isCritical( parent ? parent->isCritical() : false ) , m_showReadOnly( parent ? parent->isImmutable() : false ) { } From 433ed8384f65a523a50b983018a38cd3e52972ad Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Fri, 27 Mar 2020 20:51:52 +0100 Subject: [PATCH 31/35] [netinstall] Inherit criticalness in groups - Groups inherit slightly differently: if a subgroup **explicitly** configures criticalness, use that. It would be weird, but possibly, to have a non-critical subgroup of a critical group. --- src/modules/netinstall/PackageTreeItem.cpp | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/modules/netinstall/PackageTreeItem.cpp b/src/modules/netinstall/PackageTreeItem.cpp index 04358fd43..edc89c536 100644 --- a/src/modules/netinstall/PackageTreeItem.cpp +++ b/src/modules/netinstall/PackageTreeItem.cpp @@ -22,6 +22,7 @@ #include "utils/Logger.h" #include "utils/Variant.h" +/** @brief Should a package be selected, given its parent's state? */ static Qt::CheckState parentCheckState( PackageTreeItem* parent ) { @@ -36,6 +37,20 @@ parentCheckState( PackageTreeItem* parent ) } } +/** @brief Should a subgroup be marked critical? + * + * If set explicitly, then use that, otherwise use the parent's critical-ness. + */ +static bool +parentCriticality( const QVariantMap& groupData, PackageTreeItem* parent ) +{ + if ( groupData.contains( "critical" ) ) + { + return CalamaresUtils::getBool( groupData, "critical", false ); + } + return parent ? parent->isCritical() : false; +} + PackageTreeItem::PackageTreeItem( const QString& packageName, PackageTreeItem* parent ) : m_parentItem( parent ) , m_packageName( packageName ) @@ -54,7 +69,7 @@ PackageTreeItem::PackageTreeItem( const QVariantMap& groupData, PackageTreeItem* , m_preScript( CalamaresUtils::getString( groupData, "pre-install" ) ) , m_postScript( CalamaresUtils::getString( groupData, "post-install" ) ) , m_isGroup( true ) - , m_isCritical( CalamaresUtils::getBool( groupData, "critical", false ) ) + , m_isCritical( parentCriticality( groupData, parent ) ) , m_isHidden( CalamaresUtils::getBool( groupData, "hidden", false ) ) , m_showReadOnly( CalamaresUtils::getBool( groupData, "immutable", false ) ) , m_startExpanded( CalamaresUtils::getBool( groupData, "expanded", false ) ) From 32ded8b7317233362a86af644c85d87609adde5c Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Fri, 27 Mar 2020 23:41:04 +0100 Subject: [PATCH 32/35] Changes: pre-release housekeeping --- CHANGES | 2 +- CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 270aa3191..e5958750f 100644 --- a/CHANGES +++ b/CHANGES @@ -3,7 +3,7 @@ contributors are listed. Note that Calamares does not have a historical changelog -- this log starts with version 3.2.0. The release notes on the website will have to do for older versions. -# 3.2.21 (unreleased) # +# 3.2.21 (2020-03-27) # This release contains contributions from (alphabetically by first name): - Anke Boersma diff --git a/CMakeLists.txt b/CMakeLists.txt index 7df089cf2..837010be4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -43,7 +43,7 @@ project( CALAMARES VERSION 3.2.21 LANGUAGES C CXX ) -set( CALAMARES_VERSION_RC 1 ) # Set to 0 during release cycle, 1 during development +set( CALAMARES_VERSION_RC 0 ) # Set to 0 during release cycle, 1 during development ### OPTIONS # From 034447e021b15dcc3c7f8fde3a601d73e1b2be1b Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Fri, 27 Mar 2020 23:43:49 +0100 Subject: [PATCH 33/35] i18n: [calamares] Automatic merge of Transifex translations --- lang/calamares_ar.ts | 532 +++++++++++++++++-------------- lang/calamares_as.ts | 532 +++++++++++++++++-------------- lang/calamares_ast.ts | 553 +++++++++++++++++--------------- lang/calamares_be.ts | 532 +++++++++++++++++-------------- lang/calamares_bg.ts | 532 +++++++++++++++++-------------- lang/calamares_ca.ts | 533 +++++++++++++++++-------------- lang/calamares_ca@valencia.ts | 532 +++++++++++++++++-------------- lang/calamares_cs_CZ.ts | 580 ++++++++++++++++++---------------- lang/calamares_da.ts | 533 +++++++++++++++++-------------- lang/calamares_de.ts | 532 +++++++++++++++++-------------- lang/calamares_el.ts | 532 +++++++++++++++++-------------- lang/calamares_en.ts | 533 +++++++++++++++++-------------- lang/calamares_en_GB.ts | 532 +++++++++++++++++-------------- lang/calamares_eo.ts | 532 +++++++++++++++++-------------- lang/calamares_es.ts | 532 +++++++++++++++++-------------- lang/calamares_es_MX.ts | 532 +++++++++++++++++-------------- lang/calamares_es_PR.ts | 532 +++++++++++++++++-------------- lang/calamares_et.ts | 532 +++++++++++++++++-------------- lang/calamares_eu.ts | 532 +++++++++++++++++-------------- lang/calamares_fa.ts | 532 +++++++++++++++++-------------- lang/calamares_fi_FI.ts | 533 +++++++++++++++++-------------- lang/calamares_fr.ts | 532 +++++++++++++++++-------------- lang/calamares_fr_CH.ts | 532 +++++++++++++++++-------------- lang/calamares_gl.ts | 532 +++++++++++++++++-------------- lang/calamares_gu.ts | 532 +++++++++++++++++-------------- lang/calamares_he.ts | 533 +++++++++++++++++-------------- lang/calamares_hi.ts | 532 +++++++++++++++++-------------- lang/calamares_hr.ts | 533 +++++++++++++++++-------------- lang/calamares_hu.ts | 532 +++++++++++++++++-------------- lang/calamares_id.ts | 532 +++++++++++++++++-------------- lang/calamares_is.ts | 532 +++++++++++++++++-------------- lang/calamares_it_IT.ts | 532 +++++++++++++++++-------------- lang/calamares_ja.ts | 533 +++++++++++++++++-------------- lang/calamares_kk.ts | 532 +++++++++++++++++-------------- lang/calamares_kn.ts | 532 +++++++++++++++++-------------- lang/calamares_ko.ts | 532 +++++++++++++++++-------------- lang/calamares_lo.ts | 532 +++++++++++++++++-------------- lang/calamares_lt.ts | 533 +++++++++++++++++-------------- lang/calamares_mk.ts | 532 +++++++++++++++++-------------- lang/calamares_ml.ts | 532 +++++++++++++++++-------------- lang/calamares_mr.ts | 532 +++++++++++++++++-------------- lang/calamares_nb.ts | 532 +++++++++++++++++-------------- lang/calamares_ne_NP.ts | 532 +++++++++++++++++-------------- lang/calamares_nl.ts | 532 +++++++++++++++++-------------- lang/calamares_pl.ts | 542 ++++++++++++++++--------------- lang/calamares_pt_BR.ts | 532 +++++++++++++++++-------------- lang/calamares_pt_PT.ts | 532 +++++++++++++++++-------------- lang/calamares_ro.ts | 532 +++++++++++++++++-------------- lang/calamares_ru.ts | 532 +++++++++++++++++-------------- lang/calamares_sk.ts | 532 +++++++++++++++++-------------- lang/calamares_sl.ts | 532 +++++++++++++++++-------------- lang/calamares_sq.ts | 533 +++++++++++++++++-------------- lang/calamares_sr.ts | 532 +++++++++++++++++-------------- lang/calamares_sr@latin.ts | 532 +++++++++++++++++-------------- lang/calamares_sv.ts | 552 +++++++++++++++++--------------- lang/calamares_th.ts | 532 +++++++++++++++++-------------- lang/calamares_tr_TR.ts | 533 +++++++++++++++++-------------- lang/calamares_uk.ts | 533 +++++++++++++++++-------------- lang/calamares_ur.ts | 532 +++++++++++++++++-------------- lang/calamares_uz.ts | 532 +++++++++++++++++-------------- lang/calamares_zh_CN.ts | 535 +++++++++++++++++-------------- lang/calamares_zh_TW.ts | 533 +++++++++++++++++-------------- 62 files changed, 17983 insertions(+), 15115 deletions(-) diff --git a/lang/calamares_ar.ts b/lang/calamares_ar.ts index 9184d2434..b66608a2b 100644 --- a/lang/calamares_ar.ts +++ b/lang/calamares_ar.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 قطاع الإقلاع الرئيسي ل %1 - + Boot Partition قسم الإقلاع @@ -42,7 +42,7 @@ لا تثبّت محمّل إقلاع - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done انتهى @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. يشغّل عمليّة %1. - + Bad working directory path مسار سيء لمجلد العمل - + Working directory %1 for python job %2 is not readable. لا يمكن القراءة من مجلد العمل %1 الخاص بعملية بايثون %2. - + Bad main script file ملفّ السّكربت الرّئيس سيّء. - + Main script file %1 for python job %2 is not readable. ملفّ السّكربت الرّئيس %1 لمهمّة بايثون %2 لا يمكن قراءته. - + Boost.Python error in job "%1". خطأ Boost.Python في العمل "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -261,175 +261,175 @@ Calamares::ViewManager - + &Back &رجوع - + &Next &التالي - + &Cancel &إلغاء - + Cancel setup without changing the system. - + Cancel installation without changing the system. الغاء الـ تثبيت من دون احداث تغيير في النظام - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install &ثبت - + Setup is complete. Close the setup program. اكتمل الإعداد. أغلق برنامج الإعداد. - + Cancel setup? إلغاء الإعداد؟ - + Cancel installation? إلغاء التثبيت؟ - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. هل تريد حقًا إلغاء عملية الإعداد الحالية؟ سيتم إنهاء برنامج الإعداد وسيتم فقد جميع التغييرات. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. أتريد إلغاء عمليّة التّثبيت الحاليّة؟ سيخرج المثبّت وتضيع كلّ التّغييرات. - - + + &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> مثبّت %1 على وشك بإجراء تعديلات على قرصك لتثبيت %2.<br/><strong>لن تستطيع التّراجع عن هذا.</strong> - + &Install now &ثبت الأن - + Go &back &إرجع - + &Done - + The installation is complete. Close the installer. اكتمل التثبيت , اغلق المثبِت - + Error خطأ - + Installation Failed فشل التثبيت @@ -437,22 +437,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type نوع الاستثناء غير معروف - + unparseable Python error خطأ بايثون لا يمكن تحليله - + unparseable Python traceback تتبّع بايثون خلفيّ لا يمكن تحليله - + Unfetchable Python error. خطأ لا يمكن الحصول علية في بايثون. @@ -469,17 +469,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program - + %1 Installer %1 المثبت - + Show debug information أظهر معلومات التّنقيح @@ -487,7 +487,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... يجمع معلومات النّظام... @@ -500,134 +500,134 @@ The installer will quit and all changes will be lost. نموذج - + After: بعد: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>تقسيم يدويّ</strong><br/>يمكنك إنشاء أو تغيير حجم الأقسام بنفسك. - + Boot loader location: مكان محمّل الإقلاع: - + Select storage de&vice: اختر &جهاز التّخزين: - - - - + + + + Current: الحاليّ: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>اختر قسمًا لتقليصه، ثمّ اسحب الشّريط السّفليّ لتغيير حجمه </strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> <strong>اختر القسم حيث سيكون التّثبيت عليه</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. تعذّر إيجاد قسم النّظام EFI في أيّ مكان. فضلًا ارجع واستخدم التّقسيم اليدويّ لإعداد %1. - + The EFI system partition at %1 will be used for starting %2. قسم النّظام EFI على %1 سيُستخدم لبدء %2. - + EFI system partition: قسم نظام EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. لا يبدو أن في جهاز التّخزين أيّ نظام تشغيل. ما الذي تودّ فعله؟<br/>يمكنك مراجعة الاختيارات وتأكيدها قبل تطبيقها على جهاز التّخزين. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>مسح القرص</strong><br/>هذا س<font color="red">يمسح</font> كلّ البيانات الموجودة في جهاز التّخزين المحدّد. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. على جهاز التّخزين %1. ما الذي تودّ فعله؟<br/>يمكنك مراجعة الاختيارات وتأكيدها قبل تطبيقها على جهاز التّخزين. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>ثبّت جنبًا إلى جنب</strong><br/>سيقلّص المثبّت قسمًا لتفريغ مساحة لِ‍ %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>استبدل قسمًا</strong><br/>يستبدل قسمًا مع %1 . - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. على جهاز التّخزين هذا نظام تشغيل ذأصلًا. ما الذي تودّ فعله؟<br/>يمكنك مراجعة الاختيارات وتأكيدها قبل تطبيقها على جهاز التّخزين. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. على جهاز التّخزين هذا عدّة أنظمة تشغيل. ما الذي تودّ فعله؟<br/>يمكنك مراجعة الاختيارات وتأكيدها قبل تطبيقها على جهاز التّخزين. @@ -635,17 +635,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 - + Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 @@ -692,10 +692,33 @@ The installer will quit and all changes will be lost. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + <h1>مرحبًا بك في مثبّت %1.</h1> + + ContextualProcessJob - + Contextual Processes Job @@ -753,27 +776,27 @@ The installer will quit and all changes will be lost. الح&جم: - + En&crypt تشفير - + Logical منطقيّ - + Primary أساسيّ - + GPT GPT - + Mountpoint already in use. Please select another one. @@ -781,22 +804,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. ينشئ قسم %1 جديد على %2. - + The installer failed to create partition on disk '%1'. فشل المثبّت في إنشاء قسم على القرص '%1'. @@ -832,22 +855,22 @@ 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. @@ -999,13 +1022,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) @@ -1118,7 +1141,7 @@ The installer will quit and all changes will be lost. أكّد عبارة المرور - + Please enter the same passphrase in both boxes. @@ -1126,37 +1149,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. يضبط نقاط الضّمّ. @@ -1240,22 +1263,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. يهيّء القسم %1 بنظام الملفّات %2. - + The installer failed to format partition %1 on disk '%2'. فشل المثبّت في تهيئة القسم %1 على القرص '%2'. @@ -1662,16 +1685,6 @@ 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) @@ -1683,7 +1696,7 @@ The installer will quit and all changes will be lost. - + Network Installation. (Disabled: Incorrect configuration) @@ -2029,7 +2042,7 @@ The installer will quit and all changes will be lost. - + Password is empty @@ -2075,6 +2088,19 @@ The installer will quit and all changes will be lost. + + PackageModel + + + Name + الاسم + + + + Description + الوصف + + Page_Keyboard @@ -2237,34 +2263,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space المساحة الحرّة - - + + New partition قسم جديد - + Name الاسم - + File System نظام الملفّات - + Mount Point نقطة الضّمّ - + Size الحجم @@ -2332,17 +2358,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? أمتأكّد من إنشاء جدول تقسيم جديد على %1؟ - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2516,65 +2542,65 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. معاملات نداء المهمة سيّئة. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2593,22 +2619,22 @@ Output: الافتراضي - + unknown مجهول - + extended ممتدّ - + unformatted غير مهيّأ - + swap @@ -2662,6 +2688,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + إزالة المستخدم المباشر من النظام الهدف + + RemoveVolumeGroupJob @@ -2689,140 +2723,152 @@ Output: نموذج - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. اختر مكان تثبيت %1.<br/><font color="red">تحذير: </font>سيحذف هذا كلّ الملفّات في القسم المحدّد. - + The selected item does not appear to be a valid partition. لا يبدو العنصر المحدّد قسمًا صالحًا. - + %1 cannot be installed on empty space. Please select an existing partition. لا يمكن تثبيت %1 في مساحة فارغة. فضلًا اختر قسمًا موجودًا. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. لا يمكن تثبيت %1 على قسم ممتدّ. فضلًا اختر قسمًا أساسيًّا أو ثانويًّا. - + %1 cannot be installed on this partition. لا يمكن تثبيت %1 على هذا القسم. - + Data partition (%1) قسم البيانات (%1) - + Unknown system partition (%1) قسم نظام مجهول (%1) - + %1 system partition (%2) قسم نظام %1 ‏(%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>القسم %1 صغير جدًّا ل‍ %2. فضلًا اختر قسمًا بحجم %3 غ.بايت على الأقلّ. - + <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/>تعذّر إيجاد قسم النّظام EFI في أيّ مكان. فضلًا ارجع واستخدم التّقسيم اليدويّ لإعداد %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>سيُثبّت %1 على %2.<br/><font color="red">تحذير: </font>ستفقد كلّ البيانات على القسم %2. - + The EFI system partition at %1 will be used for starting %2. سيُستخدم قسم نظام EFI على %1 لبدء %2. - + EFI system partition: قسم نظام EFI: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2880,12 +2926,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: لأفضل النّتائج، تحقّق من أن الحاسوب: - + System requirements متطلّبات النّظام @@ -2893,27 +2939,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> لا يستوفِ هذا الحاسوب أدنى متطلّبات تثبيت %1.<br/>لا يمكن متابعة التّثبيت. <a href="#details">التّفاصيل...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. لا يستوفِ هذا الحاسوب بعض المتطلّبات المستحسنة لتثبيت %1.<br/>يمكن للمثبّت المتابعة، ولكن قد تكون بعض الميزات معطّلة. - + This program will ask you some questions and set up %2 on your computer. سيطرح البرنامج بعض الأسئلة عليك ويعدّ %2 على حاسوبك. @@ -2934,17 +2980,17 @@ Output: SetHostNameJob - + Set hostname %1 اضبط اسم المضيف %1 - + Set hostname <strong>%1</strong>. اضبط اسم المضيف <strong>%1</strong> . - + Setting hostname %1. يضبط اسم المضيف 1%. @@ -2994,82 +3040,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. اضبط رايات القسم %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. يمحي رايات القسم <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. يمحي رايات القسم <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. يضبط رايات <strong>%2</strong> القسم<strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. فشل المثبّت في ضبط رايات القسم %1. @@ -3299,47 +3345,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. اسم المستخدم طويل جدًّا. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. اسم المضيف قصير جدًّا. - + Your hostname is too long. اسم المضيف طويل جدًّا. - + Your passwords do not match! لا يوجد تطابق في كلمات السر! @@ -3477,42 +3523,42 @@ Output: &حول - + <h1>Welcome to the %1 installer.</h1> <h1>مرحبًا بك في مثبّت %1.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer حول 1% المثبت - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 الدعم @@ -3520,7 +3566,7 @@ Output: WelcomeQmlViewStep - + Welcome مرحبا بك @@ -3528,7 +3574,7 @@ Output: WelcomeViewStep - + Welcome مرحبا بك @@ -3536,7 +3582,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_as.ts b/lang/calamares_as.ts index e6871325d..56e383073 100644 --- a/lang/calamares_as.ts +++ b/lang/calamares_as.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 %1ৰ প্ৰধান বুত্ নথি - + Boot Partition বুত্ বিভাজন @@ -42,7 +42,7 @@ বুত্ লোডাৰ ইনস্তল কৰিব নালাগে - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done হৈ গ'ল @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. %1 কাৰ্য চলি আছে। - + Bad working directory path বেয়া কৰ্মৰত ডাইৰেক্টৰী পথ - + Working directory %1 for python job %2 is not readable. %2 পাইথন কাৰ্য্যৰ %1 কৰ্মৰত ডাইৰেক্টৰী পঢ়িব নোৱাৰি।​ - + Bad main script file বেয়া মুখ্য লিপি ফাইল - + Main script file %1 for python job %2 is not readable. %2 পাইথন কাৰ্য্যৰ %1 মূখ্য লিপি ফাইল পঢ়িব নোৱাৰি। - + Boost.Python error in job "%1". "%1" কাৰ্য্যত Boost.Python ত্ৰুটি। @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,175 +253,175 @@ Calamares::ViewManager - + &Back পাছলৈ (&B) - + &Next পৰবর্তী (&N) - + &Cancel বাতিল কৰক (&C) - + Cancel setup without changing the system. চিছ্তেম সলনি নকৰাকৈ চেত্ আপ বাতিল কৰক। - + Cancel installation without changing the system. চিছ্তেম সলনি নকৰাকৈ ইনস্তলেচন বাতিল কৰক। - + Setup Failed চেত্ আপ বিফল হ'ল - + Would you like to paste the install log to the web? আপুনি ৱেবত ইণ্স্টল ল'গ পেস্ট কৰিব বিচাৰে নেকি? - + Install Log Paste URL ইনস্তল​ ল'গ পেস্ট URL - + The upload was unsuccessful. No web-paste was done. আপলোড বিফল হৈছিল। কোনো ৱেব-পেস্ট কৰা হোৱা নাছিল। - + Calamares Initialization Failed কেলামাৰেচৰ আৰম্ভণি বিফল হ'ল - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 ইনস্তল কৰিব পৰা নগ'ল। কেলামাৰেচে সকলোবোৰ সংৰূপ দিয়া মডিউল লোড্ কৰাত সফল নহ'ল। এইটো এটা আপোনাৰ ডিষ্ট্ৰিবিউচনে কি ধৰণে কেলামাৰেচ ব্যৱহাৰ কৰিছে, সেই সম্বন্ধীয় সমস্যা। - + <br/>The following modules could not be loaded: <br/>নিম্নোক্ত মডিউলবোৰ লোড্ কৰিৱ পৰা নগ'ল: - + Continue with installation? ইন্স্তলেচন অব্যাহত ৰাখিব? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> %1 চেত্ আপ প্ৰগ্ৰেমটোৱে %2 চেত্ আপ কৰিবলৈ আপোনাৰ ডিস্কত সালসলনি কৰিব।<br/><strong>আপুনি এইবোৰ পিছত পূৰ্বলৈ সলনি কৰিব নোৱাৰিব।</strong> - + &Set up now এতিয়া চেত্ আপ কৰক (&S) - + &Set up চেত্ আপ কৰক (&S) - + &Install ইনস্তল (&I) - + Setup is complete. Close the setup program. চেত্ আপ সম্পূৰ্ণ হ'ল। প্ৰোগ্ৰেম বন্ধ কৰক। - + Cancel setup? চেত্ আপ বাতিল কৰিব? - + Cancel installation? ইনস্তলেছন বাতিল কৰিব? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. সচাকৈয়ে চলিত চেত্ আপ প্ৰক্ৰিয়া বাতিল কৰিব বিচাৰে নেকি? চেত্ আপ প্ৰোগ্ৰেম বন্ধ হ'ব আৰু গোটেই সলনিবোৰ নোহোৱা হৈ যাব। - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. সচাকৈয়ে চলিত ইনস্তল প্ৰক্ৰিয়া বাতিল কৰিব বিচাৰে নেকি? ইনস্তলাৰ বন্ধ হ'ব আৰু গোটেই সলনিবোৰ নোহোৱা হৈ যাব। - - + + &Yes হয় (&Y) - - + + &No নহয় (&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 ইনস্তলেচন বিফল হ'ল @@ -429,22 +429,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type অপৰিচিত প্ৰকাৰৰ ব্যতিক্রম - + unparseable Python error অপ্ৰাপ্য পাইথন ত্ৰুটি - + unparseable Python traceback অপ্ৰাপ্য পাইথন ত্ৰেচবেক - + Unfetchable Python error. ঢুকি নোপোৱা পাইথন ক্ৰুটি। @@ -462,17 +462,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program %1 চেত্ আপ প্ৰোগ্ৰেম - + %1 Installer %1 ইনস্তলাৰ - + Show debug information দিবাগ তথ্য দেখাওক @@ -480,7 +480,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... চিছ্তেম তথ্য সংগ্ৰহ কৰা হৈ আছে... @@ -493,134 +493,134 @@ The installer will quit and all changes will be lost. ৰূপ - + After: পিছত: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>মেনুৱেল বিভাজন</strong><br/>আপুনি নিজে বিভাজন বনাব বা বিভজনৰ আয়তন সলনি কৰিব পাৰে। - + Boot loader location: বুত্ লোডাৰৰ অৱস্থান: - + Select storage de&vice: স্তোৰেজ ডিভাইচ চয়ণ কৰক (&v): - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 বিভজনক সৰু কৰি %2MiB কৰা হ'ব আৰু %4ৰ বাবে %3MiBৰ নতুন বিভজন বনোৱা হ'ব। - + <strong>Select a partition to install on</strong> <strong>ইনস্তল​ কৰিবলৈ এখন বিভাজন চয়ন কৰক</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. এই চিছটেমত এখনো EFI চিছটেম বিভাজন কতো পোৱা নগ'ল। অনুগ্ৰহ কৰি উভতি যাওক আৰু মেনুৱেল বিভাজন প্ৰক্ৰিয়া দ্বাৰা %1 চেত্ আপ কৰক। - + The EFI system partition at %1 will be used for starting %2. %1ত থকা EFI চিছটেম বিভাজনটো %2ক আৰম্ভ কৰাৰ বাবে ব্যৱহাৰ কৰা হ'ব। - + EFI system partition: EFI চিছটেম বিভাজন: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. এইটো ষ্টোৰেজ ডিভাইচত কোনো অপাৰেটিং চিছটেম নাই যেন লাগে। আপুনি কি কৰিব বিচাৰে?<br/>আপুনি ষ্টোৰেজ ডিভাইচটোত কিবা সলনি কৰাৰ আগতে পুনৰীক্ষণ আৰু চয়ন নিশ্চিত কৰিব পাৰিব। - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>ডিস্কত থকা গোটেই ডাটা আতৰাওক।</strong><br/> ইয়াৰ দ্ৱাৰা ষ্টোৰেজ ডিভাইছত বৰ্তমান থকা সকলো ডাটা <font color="red">বিলোপ</font> কৰা হ'ব। - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. এইটো ষ্টোৰেজ ডিভাইচত %1 আছে। <br/> আপুনি কি কৰিব বিচাৰে? ষ্টোৰেজ ডিভাইচটোত যিকোনো সলনি কৰাৰ আগত আপুনি পুনৰীক্ষণ আৰু সলনি কৰিব পাৰিব। - + No Swap কোনো স্ৱেপ নাই - + Reuse Swap স্ৱেপ পুনৰ ব্যৱহাৰ কৰক - + Swap (no Hibernate) স্ৱেপ (হাইবাৰনেট নোহোৱাকৈ) - + Swap (with Hibernate) স্ৱোআপ (হাইবাৰনেটৰ সৈতে) - + Swap to file ফাইললৈ স্ৱোআপ কৰক। - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>সমান্তৰালভাৱে ইনস্তল কৰক</strong><br/> ইনস্তলাৰটোৱে %1ক ইনস্তল​ কৰাৰ বাবে এখন বিভাজন সৰু কৰি দিব। - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>বিভাজন সলনি কৰক</strong> <br/>এখন বিভাজনক % ৰ্ সৈতে সলনি কৰক। - + 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. এইটো ষ্টোৰেজ ডিভাইচত একাধিক এটা অপাৰেটিং চিছটেম আছে। আপুনি কি কৰিব বিচাৰে? 1ষ্টোৰেজ ডিভাইচটোত যিকোনো সলনি কৰাৰ আগত আপুনি পুনৰীক্ষণ আৰু সলনি কৰিব পাৰিব। @@ -628,17 +628,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 %1ত বিভাজন কৰ্য্যৰ বাবে মাউণ্ট্ আতৰাওক - + Clearing mounts for partitioning operations on %1. %1ত বিভাজন কৰ্য্যৰ বাবে মাউণ্ট্ আতৰ কৰি আছে। - + Cleared all mounts for %1 %1ৰ গোটেই মাউন্ত আতৰোৱা হ'ল @@ -685,10 +685,33 @@ The installer will quit and all changes will be lost. কমাণ্ডটোৱে ব্যৱহাৰকাৰীৰ নাম জনাটো আৱশ্যক, কিন্তু কোনো ব্যৱহাৰকাৰীৰ নাম উল্লেখ নাই। + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>%1ৰ কেলামাৰেচ চেত্ আপ প্ৰগ্ৰামলৈ আদৰণি জনাইছো।</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1> %1 চেত্ আপলৈ আদৰণি জনাইছো।</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>%1ৰ কেলামাৰেচ ইনস্তলাৰলৈ আদৰণি জনাইছো।</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>%1 ইনস্তলাৰলৈ আদৰণি জনাইছো।</h1> + + ContextualProcessJob - + Contextual Processes Job প্রাসঙ্গিক প্ৰক্ৰিয়াবোৰৰ কাৰ্য্য @@ -746,27 +769,27 @@ The installer will quit and all changes will be lost. আয়তন (&z): - + En&crypt এনক্ৰিপ্ত্ (&c) - + Logical যুক্তিসম্মত - + Primary মূখ্য - + GPT GPT - + Mountpoint already in use. Please select another one. এইটো মাওন্ট্ পইন্ট্ ইতিমধ্যে ব্যৱহাৰ হৈ আছে। অনুগ্ৰহ কৰি বেলেগ এটা বাচনি কৰক। @@ -774,22 +797,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. %1 ফাইল চিছটেমৰ সৈতে %4 (%3) ত %2MiBৰ নতুন বিভাজন বনাওক। - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. <strong>%4</strong>ত নতুন (%3) <strong>%1</strong> ফাইল চিছটেমৰ <strong>%2MiB</strong> বিভাজন কৰক। - + Creating new %1 partition on %2. %2ত নতুন %1 বিভজন বনাই আছে। - + The installer failed to create partition on disk '%1'. '%1' ডিস্কত নতুন বিভাজন বনোৱাত ইনস্তলাৰটো বিফল হ'ল। @@ -825,22 +848,22 @@ 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ত বিভাজন তালিকা বনোৱাত বিফল হ'ল। @@ -992,13 +1015,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1111,7 +1134,7 @@ The installer will quit and all changes will be lost. পাছফ্ৰেছ নিশ্ৱিত কৰক - + Please enter the same passphrase in both boxes. অনুগ্ৰহ কৰি দুয়োটা বাকচত একে পাছফ্ৰেছ প্রবিষ্ট কৰক। @@ -1119,37 +1142,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>. %3 বিভাজন <strong>%1</strong> <strong>%2</strong>ৰ সৈতে স্থাপন কৰক। - + Install boot loader on <strong>%1</strong>. <strong>1%ত</strong> বুত্ লোডাৰ ইনস্তল কৰক। - + Setting up mount points. মাউন্ট পইন্ট চেত্ আপ হৈ আছে। @@ -1233,22 +1256,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. %4ত ফৰ্মেট বিভাজন %1 ( ফাইল চিছটেম: %2, আয়তন: %3 MiB) - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. <strong>%3MiB</strong> ৰ <strong>%1 %</strong> বিভাজন <strong>%2</strong> ফাইল চিছটেমৰ সৈতে ফৰ্মেট কৰক। - + Formatting partition %1 with file system %2. %1 ফৰ্মেট বিভাজনৰ সৈতে %2 ফাইল চিছটেম। - + The installer failed to format partition %1 on disk '%2'. ইনস্তলাৰটো '%2' ডিস্কত %1 বিভাজন​ ফৰ্মেট কৰাত বিফল হ'ল। @@ -1655,16 +1678,6 @@ 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) @@ -1676,7 +1689,7 @@ The installer will quit and all changes will be lost. নেটৱৰ্ক্ ইনস্তলেচন। (নিস্ক্ৰিয়: অকার্যকৰ গোটৰ তথ্য পোৱা গ'ল) - + Network Installation. (Disabled: Incorrect configuration) নেটৱৰ্ক ইনস্তলেচন। (নিস্ক্ৰিয়: ভুল কনফিগাৰেচন) @@ -2022,7 +2035,7 @@ The installer will quit and all changes will be lost. অজ্ঞাত ক্ৰুটি - + Password is empty খালী পাছৱৰ্ড @@ -2068,6 +2081,19 @@ The installer will quit and all changes will be lost. পেকেজ + + PackageModel + + + Name + নাম + + + + Description + বিৱৰণ + + Page_Keyboard @@ -2230,34 +2256,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space খালী ঠাই - - + + New partition নতুন বিভাজন - + Name নাম - + File System ফাইল চিছটেম - + Mount Point মাউন্ট পইন্ট - + Size আয়তন @@ -2325,17 +2351,17 @@ The installer will quit and all changes will be lost. বুট লোডাৰ ইনস্তল কৰক (&I): - + Are you sure you want to create a new partition table on %1? আপুনি নিশ্চিতভাৱে %1ত নতুন তালিকা বনাব বিচাৰে নেকি? - + Can not create new partition নতুন বিভাজন বনাব নোৱৰি - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. %1ত থকা বিভাজন তালিকাত ইতিমধ্যে %2 মূখ্য বিভাজন আছে, আৰু একো যোগ কৰিব নোৱাৰিব। তাৰ সলনি এখন মূখ্য বিভাজন বিলোপ কৰক আৰু এখন প্ৰসাৰিত বিভাজন যোগ কৰক। @@ -2509,14 +2535,14 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. কমাণ্ডৰ পৰা কোনো আউটপুট পোৱা নগ'ল। - + Output: @@ -2525,52 +2551,52 @@ Output: - + External command crashed. বাহ্যিক কমাণ্ড ক্ৰেছ্ কৰিলে। - + Command <i>%1</i> crashed. <i>%1</i> কমাণ্ড ক্ৰেছ্ কৰিলে। - + External command failed to start. বাহ্যিক কমাণ্ড আৰম্ভ হোৱাত বিফল হ'ল। - + Command <i>%1</i> failed to start. <i>%1</i> কমাণ্ড আৰম্ভ হোৱাত বিফল হ'ল। - + Internal error when starting command. কমাণ্ড আৰম্ভ কৰাৰ সময়ত আভ্যন্তৰীণ ক্ৰুটি। - + Bad parameters for process job call. প্ৰক্ৰিয়া কাৰ্য্যৰ বাবে বেয়া মান। - + External command failed to finish. বাহ্যিক কমাণ্ড সমাপ্ত কৰাত বিফল হ'ল। - + Command <i>%1</i> failed to finish in %2 seconds. <i>%1</i> কমাণ্ড সমাপ্ত কৰাত %2 ছেকেণ্ডত বিফল হ'ল। - + External command finished with errors. বাহ্যিক কমাণ্ড ক্ৰটিৰ সৈতে সমাপ্ত হ'ল। - + Command <i>%1</i> finished with exit code %2. <i>%1</i> কমাণ্ড %2 এক্সিড্ কোডৰ সৈতে সমাপ্ত হ'ল। @@ -2589,22 +2615,22 @@ Output: ডিফল্ট্ - + unknown অজ্ঞাত - + extended প্ৰসাৰিত - + unformatted ফৰ্মেট কৰা হোৱা নাই - + swap স্ৱেপ @@ -2658,6 +2684,14 @@ Output: <pre>%1</pre> ৰেন্ডম ফাইল বনাব পৰা নগ'ল। + + RemoveUserJob + + + Remove live user from target system + গন্তব্য চিছটেমৰ পৰা লাইভ ব্যৱহাৰকাৰি আতৰাওক + + RemoveVolumeGroupJob @@ -2685,140 +2719,152 @@ Output: ৰূপ - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. %1 ক'ত ইনস্তল লাগে বাচনি কৰক।<br/> <font color="red">সকীয়নি: ইয়ে বাচনি কৰা বিভাজনৰ সকলো ফাইল বিলোপ কৰিব। - + The selected item does not appear to be a valid partition. বাচনি কৰা বস্তুটো এটা বৈধ বিভাজন নহয়। - + %1 cannot be installed on empty space. Please select an existing partition. %1 খালী ঠাইত ইনস্তল কৰিব নোৱাৰি। উপস্থিতি থকা বিভাজন বাচনি কৰক। - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 প্ৰসাৰিত ঠাইত ইনস্তল কৰিব নোৱাৰি। উপস্থিতি থকা মূখ্য বা লজিকেল বিভাজন বাচনি কৰক। - + %1 cannot be installed on this partition. এইখন বিভাজনত %1 ইনস্তল কৰিব নোৱাৰি। - + Data partition (%1) ডাটা বিভাজন (%1) - + Unknown system partition (%1) অজ্ঞাত চিছটেম বিভাজন (%1) - + %1 system partition (%2) %1 চিছটেম বিভাজন (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/> %1 বিভাজনটো %2ৰ বাবে যথেষ্ট সৰু। অনুগ্ৰহ কৰি অতি কমেও %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/>এইটো চিছটেমৰ ক'তো এটা EFI চিছটেম বিভাজন বিচাৰি পোৱা নগ'ল। অনুগ্ৰহ কৰি উভতি যাওক আৰু %1 চেত্ আপ কৰিব মেনুৱেল বিভাজন ব্যৱহাৰ কৰক। - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/> %1 %2ত ইনস্তল হ'ব। <br/><font color="red">সকীয়নি​: </font>%2 বিভাজনত থকা গোটেই ডাটা বিলোপ হৈ যাব। - + The EFI system partition at %1 will be used for starting %2. %1 ত থকা EFI চিছটেম বিভাজনটো %2 আৰম্ভ কৰাৰ বাবে ব্যৱহাৰ কৰা হ'ব। - + EFI system partition: EFI চিছটেম বিভাজন: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job ফাইল চিছটেম কাৰ্য্যৰ আয়তন পৰিৱৰ্তন কৰক - + Invalid configuration অকার্যকৰ কনফিগাৰেচন - + The file-system resize job has an invalid configuration and will not run. ফাইল চিছটেমটোৰ আয়তন পৰিৱৰ্তন কাৰ্য্যৰ এটা অকার্যকৰ কনফিগাৰেচন আছে আৰু সেইটো নচলিব। - - + KPMCore not Available KPMCore ঊপলব্ধ নহয় - - + Calamares cannot start KPMCore for the file-system resize job. ফাইল চিছটেমৰ আয়তন সলনি কৰিবলৈ কেলামাৰেচে KPMCore আৰম্ভ নোৱাৰিলে। - - - - - + + + + + Resize Failed আয়তন পৰিৱৰ্তন কাৰ্য্য বিফল হ'ল - + The filesystem %1 could not be found in this system, and cannot be resized. এইটো চিছটেমত %1 ফাইল চিছটেম বিছাৰি পোৱা নগ'ল আৰু সেইটোৰ আয়তন সলনি কৰিব নোৱাৰি। - + The device %1 could not be found in this system, and cannot be resized. এইটো চিছটেমত %1 ডিভাইচ বিছাৰি পোৱা নগ'ল আৰু সেইটোৰ আয়তন সলনি কৰিব নোৱাৰি। - - + + The filesystem %1 cannot be resized. %1 ফাইল চিছটেমটোৰ আয়তন সলনি কৰিব নোৱাৰি। - - + + The device %1 cannot be resized. %1 ডিভাইচটোৰ আয়তন সলনি কৰিব নোৱাৰি। - + The filesystem %1 must be resized, but cannot. %1 ফাইল চিছটেমটোৰ আয়তন সলনি কৰিব লাগে, কিন্তু কৰিব নোৱাৰি। - + The device %1 must be resized, but cannot %1 ডিভাইচটোৰ আয়তন সলনি কৰিব লাগে, কিন্তু কৰিব নোৱাৰি। @@ -2876,12 +2922,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: উত্কৃষ্ট ফলাফলৰ বাবে অনুগ্ৰহ কৰি নিশ্চিত কৰক যে এইটো কম্পিউটাৰ হয়: - + System requirements চিছটেমৰ আৱশ্যকতাবোৰ @@ -2889,27 +2935,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> %1 চেত্ আপৰ বাবে নিম্নতম আৱশ্যকতা এই কম্পিউটাৰটোৱে পূৰ্ণ নকৰে। <br/>স্থাপন প্ৰক্ৰিয়া অবিৰত ৰাখিব নোৱাৰিব। <a href="#details">বিৱৰণ...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> %1 ইনস্তলচেন​ৰ বাবে নিম্নতম আৱশ্যকতা এই কম্পিউটাৰটোৱে পূৰ্ণ নকৰে। <br/>ইনস্তলচেন​ প্ৰক্ৰিয়া অবিৰত ৰাখিব নোৱাৰিব। <a href="#details">বিৱৰণ...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. %1 চেত্ আপৰ বাবে পৰামৰ্শ দিয়া আৱশ্যকতা এই কম্পিউটাৰটোৱে পূৰ্ণ নকৰে। <br/>স্থাপন প্ৰক্ৰিয়া অবিৰত ৰাখিব পাৰিব, কিন্তু কিছুমান সুবিধা নিষ্ক্রিয় হৈ থাকিব। - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. %1 ইনস্তলচেন​ৰ বাবে পৰামৰ্শ দিয়া আৱশ্যকতা এই কম্পিউটাৰটোৱে পূৰ্ণ নকৰে। ইনস্তলচেন​ অবিৰত ৰাখিব পাৰিব, কিন্তু কিছুমান সুবিধা নিষ্ক্রিয় হৈ থাকিব। - + This program will ask you some questions and set up %2 on your computer. এইটো প্ৰগ্ৰেমে অপোনাক কিছুমান প্ৰশ্ন সুধিব আৰু অপোনাৰ কম্পিউটাৰত %2 স্থাপন কৰিব। @@ -2930,17 +2976,17 @@ Output: SetHostNameJob - + Set hostname %1 %1 হোস্ট্ নাম চেত্ কৰক - + Set hostname <strong>%1</strong>. <strong>%1</strong> হোস্ট্ নাম চেত্ কৰক। - + Setting hostname %1. %1 হোস্ট্ নাম চেত্ কৰি আছে। @@ -2990,82 +3036,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. %1 বিভাজনত ফ্লেগ চেত্ কৰক। - + Set flags on %1MiB %2 partition. %1MiB ৰ %2 বিভাজনত ফ্লেগ চেত্ কৰক। - + Set flags on new partition. নতুন বিভাজনত ফ্লেগ চেত্ কৰক। - + Clear flags on partition <strong>%1</strong>. <strong>%1</strong> বিভাজনত ফ্লেগ আতৰাওক। - + Clear flags on %1MiB <strong>%2</strong> partition. %1MiB ৰ <strong>%2</strong> বিভাজনৰ ফ্লেগবোৰ আতৰাওক। - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. %1MiBৰ <strong>%2</strong> বিভাজনত <strong>%3</strong> ফ্লেগ লগাওক। - + Clearing flags on %1MiB <strong>%2</strong> partition. %1MiB ৰ <strong>%2</strong> বিভাজনৰ ফ্লেগবোৰ আতৰ কৰি আছে। - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. %1MiBৰ <strong>%2</strong> বিভাজনত <strong>%3</strong> ফ্লেগ লগাই আছে। - + Clear flags on new partition. নতুন বিভাজনৰ ফ্লেগ আতৰাওক। - + Flag partition <strong>%1</strong> as <strong>%2</strong>. <strong>%1</strong> বিভাজনত <strong>%2</strong>ৰ ফ্লেগ লগাওক। - + Flag new partition as <strong>%1</strong>. নতুন বিভাজনত <strong>%1</strong>ৰ ফ্লেগ লগাওক। - + Clearing flags on partition <strong>%1</strong>. <strong>%1</strong> বিভাজনৰ ফ্লেগ আতৰাই আছে। - + Clearing flags on new partition. নতুন বিভাজনৰ ফ্লেগ আতৰাই আছে। - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. <strong>%1</strong> বিভাজনত <strong>%2</strong> ফ্লেগ লগাই আছে। - + Setting flags <strong>%1</strong> on new partition. নতুন বিভাজনত <strong>%1</strong> ফ্লেগ লগাই আছে। - + The installer failed to set flags on partition %1. ইনস্তলাৰটো​ %1 বিভাজনত ফ্লেগ লগোৱাত বিফল হ'ল। @@ -3295,47 +3341,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>যদি এটাতকৈ বেছি ব্যক্তিয়ে এইটো কম্পিউটাৰ ব্যৱহাৰ কৰে, আপুনি চেত্ আপৰ পিছত বহুতো একাউন্ট বনাব পাৰে।</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>যদি এটাতকৈ বেছি ব্যক্তিয়ে এইটো কম্পিউটাৰ ব্যৱহাৰ কৰে, আপুনি ইনস্তলচেন​ৰ পিছত বহুতো একাউন্ট বনাব পাৰে।</small> - + Your username is too long. আপোনাৰ ইউজাৰ নাম বহুত দীঘল। - + Your username must start with a lowercase letter or underscore. আপোনাৰ ব্যৱহাৰকাৰী নাম lowercase বৰ্ণ বা underscoreৰে আৰম্ভ হ'ব লাগিব। - + Only lowercase letters, numbers, underscore and hyphen are allowed. কেৱল lowercase বৰ্ণ, সংখ্যা, underscore আৰু hyphenৰ হে মাত্ৰ অনুমতি আছে। - + Only letters, numbers, underscore and hyphen are allowed. কেৱল বৰ্ণ, সংখ্যা, underscore আৰু hyphenৰ হে মাত্ৰ অনুমতি আছে। - + Your hostname is too short. আপোনাৰ হ'স্ট্ নাম বহুত ছুটি। - + Your hostname is too long. আপোনাৰ হ'স্ট্ নাম বহুত দীঘল। - + Your passwords do not match! আপোনাৰ পাছৱৰ্ডকেইটাৰ মিল নাই! @@ -3473,42 +3519,42 @@ Output: সম্পর্কে (&A) - + <h1>Welcome to the %1 installer.</h1> <h1>%1 ইনস্তলাৰলৈ আদৰণি জনাইছো।</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>%1ৰ কেলামাৰেচ ইনস্তলাৰলৈ আদৰণি জনাইছো।</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>%1ৰ কেলামাৰেচ চেত্ আপ প্ৰগ্ৰামলৈ আদৰণি জনাইছো।</h1> - + <h1>Welcome to %1 setup.</h1> <h1> %1 চেত্ আপলৈ আদৰণি জনাইছো।</h1> - + About %1 setup %1 চেত্ আপ প্ৰগ্ৰামৰ বিষয়ে - + About %1 installer %1 ইনস্তলাৰৰ বিষয়ে - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <h1>%1</h1><br/><strong>%2<br/>ৰ বাবে %3</strong><br/><br/> মালিকিস্বত্ত 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>মালিকিস্বত্ত 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/><a href="https://calamares.io/team/">Calamares দল</a> আৰু <a href="https://www.transifex.com/calamares/calamares/">কেলামাৰেচ অনুবাদক দল</a>ক ধন্যবাদ জনাইছো।<br/><br/><a href="https://calamares.io/">Calamares</a>ৰ বিকাশ<br/><a href="http://www.blue-systems.com/">Blue Systems</a>- Liberating Softwareৰ দ্বাৰা প্ৰযোজিত। - + %1 support %1 সহায় @@ -3516,7 +3562,7 @@ Output: WelcomeQmlViewStep - + Welcome আদৰণি @@ -3524,7 +3570,7 @@ Output: WelcomeViewStep - + Welcome আদৰণি @@ -3532,7 +3578,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_ast.ts b/lang/calamares_ast.ts index b6e19297c..3417d9a42 100644 --- a/lang/calamares_ast.ts +++ b/lang/calamares_ast.ts @@ -6,7 +6,7 @@ The <strong>boot environment</strong> of this system.<br><br>Older x86 systems only support <strong>BIOS</strong>.<br>Modern systems usually use <strong>EFI</strong>, but may also show up as BIOS if started in compatibility mode. - L'<strong>entornu d'arrinque</strong> d'esti sistema.<br><br>Los sistemes x86 namái sofiten <strong>BIOS</strong>.<br>Los sistemes modernos usen <strong>EFI</strong> pero tamién podríen apaecer dalcuando como BIOS si s'anicien nel mou de compatibilidá. + L'<strong>entornu d'arrinque</strong> d'esti sistema.<br><br>Los sistemes x86 namás sofiten <strong>BIOS</strong>.<br>Los sistemes modernos usen <strong>EFI</strong> pero tamién podríen apaecer dalcuando como BIOS si s'anicien nel mou de compatibilidá. @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Master Boot Record de %1 - + Boot Partition Partición d'arrinque @@ -42,7 +42,7 @@ Nenyures - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Fecho @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Executando la operación %1. - + Bad working directory path El camín del direutoriu de trabayu ye incorreutu - + Working directory %1 for python job %2 is not readable. El direutoriu de trabayu %1 pal trabayu en Python %2 nun ye lleibe. - + Bad main script file El ficheru del script principal ye incorreutu - + Main script file %1 for python job %2 is not readable. El ficheru del script principal %1 pal trabayu en Python %2 nun ye lleibe. - + Boost.Python error in job "%1". Fallu de Boost.Python nel trabayu «%1». @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... Cargando... - + QML Step <i>%1</i>. - + Loading failed. Falló la carga. @@ -253,175 +253,175 @@ Calamares::ViewManager - + &Back &Atrás - + &Next &Siguiente - + &Cancel &Encaboxar - + Cancel setup without changing the system. Encaboxa la configuración ensin camudar el sistema. - + Cancel installation without changing the system. Encaboxa la instalación ensin camudar el sistema. - + Setup Failed Falló la configuración - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed Falló l'aniciu de Calamares - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 nun pue instalase. Calamares nun foi a cargar tolos módulos configuraos. Esto ye un problema col mou nel que la distribución usa Calamares. - + <br/>The following modules could not be loaded: <br/>Nun pudieron cargase los módulos de darréu: - + Continue with installation? ¿Siguir cola instalación? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> El programa d'instalación de %1 ta a piques de facer cambeos nel discu pa configurar %2.<br/><strong>Nun vas ser a desfacer estos cambeos.<strong> - + &Set up now &Configurar agora - + &Set up &Configurar - + &Install &Instalar - + Setup is complete. Close the setup program. Completóse la configuración. Zarra'l programa de configuración. - + Cancel setup? ¿Encaboxar la configuración? - + Cancel installation? ¿Encaboxar la instalación? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. ¿De xuru que quies encaboxar el procesu actual de configuración? El programa de configuración va colar y van perdese tolos cambeos. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. ¿De xuru que quies encaboxar el procesu actual d'instalación? L'instalador va colar y van perdese tolos cambeos. - - + + &Yes &Sí - - + + &No &Non - + &Close &Zarrar - + Continue with setup? ¿Siguir cola 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> L'instalador de %1 ta a piques de facer cambeos nel discu pa instalar %2.<br/><strong>Nun vas ser a desfacer esos cambeos.</strong> - + &Install now &Instalar agora - + Go &back Dir p'&atrás - + &Done &Fecho - + The installation is complete. Close the installer. Completóse la instalación. Zarra l'instalador. - + Error Fallu - + Installation Failed Falló la instalación @@ -429,22 +429,22 @@ L'instalador va colar y van perdese tolos cambeos. CalamaresPython::Helper - + Unknown exception type Desconozse la triba de la esceición - + unparseable Python error Fallu de Python que nun pue analizase - + unparseable Python traceback Traza inversa de Python que nun pue analizase - + Unfetchable Python error. Fallu de Python al que nun pue dise en cata. @@ -461,17 +461,17 @@ L'instalador va colar y van perdese tolos cambeos. CalamaresWindow - + %1 Setup Program Programa de configuración de %1 - + %1 Installer Instalador de %1 - + Show debug information Amosar la depuración @@ -479,7 +479,7 @@ L'instalador va colar y van perdese tolos cambeos. CheckerContainer - + Gathering system information... Recoyendo la información del sistema... @@ -492,134 +492,134 @@ L'instalador va colar y van perdese tolos cambeos. Formulariu - + After: Dempués: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Particionáu manual</strong><br/>Vas poder crear o redimensionar particiones. - + Boot loader location: Allugamientu del xestor d'arrinque: - + Select storage de&vice: Esbilla un preséu d'al&macenamientu: - - - - + + + + Current: Anguaño: - + Reuse %1 as home partition for %2. Reusu de %s como partición d'aniciu pa %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Esbilla una partición a redimensionar, dempués arrastra la barra baxera pa facelo</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 va redimensionase a %2MB y va crease una partición de %3MB pa %4. - + <strong>Select a partition to install on</strong> <strong>Esbilla una partición na qu'instalar</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Nun pudo alcontrase per nenyures una partición del sistema EFI. Volvi p'atrás y usa'l particionáu manual pa configurar %1, por favor. - + The EFI system partition at %1 will be used for starting %2. La partición del sistema EFI en %1 va usase p'aniciar %2. - + EFI system partition: Partición del sistema EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Esti preséu d'almacenamientu nun paez que tenga un sistema operativu nelli. ¿Qué te prestaría facer?<br/>Vas ser a revisar y confirmar lo qu'escueyas enantes de que se faiga cualesquier cambéu nel preséu d'almacenamientu. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Desaniciu d'un discu</strong><br/>Esto va <font color="red">desaniciar</font> tolos datos presentes nel preséu d'almacenamientu esbilláu. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Esti preséu d'almacenamientu tien %1 nelli. ¿Qué te prestaría facer?<br/>Vas ser a revisar y confirmar lo qu'escueyas enantes de que se faiga cualesquier cambéu nel preséu d'almacenamientu. - + No Swap Ensin intercambéu - + Reuse Swap Reusar un intercambéu - + Swap (no Hibernate) Intercambéu (ensin ivernación) - + Swap (with Hibernate) Intercambéu (con ivernación) - + Swap to file Intercambéu nun ficheru - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instalación anexa</strong><br/>L'instalador va redimensionar una partición pa dexar sitiu a %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Troquéu d'una partición</strong><br/>Troca una parción con %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Esti preséu d'almacenamientu yá tien un sistema operativu nelli. ¿Qué te prestaría facer?<br/>Vas ser a revisar y confirmar lo qu'escueyas enantes de que se faiga cualesquier cambéu nel preséu d'almacenamientu. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Esti preséu d'almacenamientu tien varios sistemes operativos nelli. ¿Qué te prestaría facer?<br/>Vas ser a revisar y confirmar lo qu'escueyas enantes de que se faiga cualesquier cambéu nel preséu d'almacenamientu. @@ -627,17 +627,17 @@ L'instalador va colar y van perdese tolos cambeos. ClearMountsJob - + Clear mounts for partitioning operations on %1 Llimpieza de los montaxes pa les operaciones de particionáu en %1. - + Clearing mounts for partitioning operations on %1. Llimpiando los montaxes pa les operaciones de particionáu en %1. - + Cleared all mounts for %1 Llimpiáronse tolos montaxes de %1 @@ -681,13 +681,36 @@ L'instalador va colar y van perdese tolos cambeos. The command needs to know the user's name, but no username is defined. - El comandu precisa saber el nome del usuariu, pero nun se definió dengún. + El comandu precisa saber el nome del usuariu, pero nun se definió nengún. + + + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>Afáyate nel programa de configuración de Calamares pa %1.</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>Afáyate na configuración de %1.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Afáyate nel instalador Calamares de %1.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Afáyate nel instalador de %1.</h1> ContextualProcessJob - + Contextual Processes Job Trabayu de procesos contestuales @@ -745,27 +768,27 @@ L'instalador va colar y van perdese tolos cambeos. Tama&ñu: - + En&crypt &Cifrar - + Logical Llóxica - + Primary Primaria - + GPT GPT - + Mountpoint already in use. Please select another one. El puntu de montaxe yá ta n'usu. Esbilla otru, por favor. @@ -773,22 +796,22 @@ L'instalador va colar y van perdese tolos cambeos. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. Creando una partición %1 en %2. - + The installer failed to create partition on disk '%1'. L'instalador falló al crear la partición nel discu «%1». @@ -824,22 +847,22 @@ L'instalador va colar y van perdese tolos cambeos. CreatePartitionTableJob - + Create new %1 partition table on %2. Creación d'una tabla de particiones %1 en %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Va crease una tabla de particiones <strong>%1</strong> en <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Creando una tabla de particiones %1 en %2. - + The installer failed to create a partition table on %1. L'instalador falló al crear la tabla de particiones en %1. @@ -970,7 +993,7 @@ L'instalador va colar y van perdese tolos cambeos. This is a <strong>loop</strong> device.<br><br>It is a pseudo-device with no partition table that makes a file accessible as a block device. This kind of setup usually only contains a single filesystem. - Esto ye un preséu <strong>loop</strong>.<br><br>Ye un pseudopreséu ensin una tabla de particiones que fai qu'un ficheru seya accesible como preséu de bloques. A vegaes, esta triba de configuración namái contién un sistema de ficheros. + Esto ye un preséu <strong>loop</strong>.<br><br>Ye un pseudopreséu ensin una tabla de particiones que fai qu'un ficheru seya accesible como preséu de bloques. A vegaes, esta triba de configuración namás contién un sistema de ficheros. @@ -985,19 +1008,19 @@ L'instalador va colar y van perdese tolos cambeos. <br><br>This partition table type is only advisable on older systems which start from a <strong>BIOS</strong> boot environment. GPT is recommended in most other cases.<br><br><strong>Warning:</strong> the MBR partition table is an obsolete MS-DOS era standard.<br>Only 4 <em>primary</em> partitions may be created, and of those 4, one can be an <em>extended</em> partition, which may in turn contain many <em>logical</em> partitions. - <br><br>Esta triba de tabla de particiones namái s'aconseya en sistemes vieyos qu'anicien dende un entornu d'arrinque <strong>BIOS</strong>. GPT aconséyase na mayoría de los demás casos.<br><br><strong>Alvertencia:</strong> la tabla de particiones MBR ye un estándar obsoletu de la dómina de MS-DOS.<br>Namái van poder crease cuatro particiones <em>primaries</em>, y una d'eses cuatro, namái vas poder ser una partición <em>estendida</em> que va contener munches particiones <em>llóxiques</em>. + <br><br>Esta triba de tabla de particiones namás s'aconseya en sistemes vieyos qu'anicien dende un entornu d'arrinque <strong>BIOS</strong>. GPT aconséyase na mayoría de los demás casos.<br><br><strong>Alvertencia:</strong> la tabla de particiones MBR ye un estándar obsoletu de la dómina de MS-DOS.<br>Namás van poder crease cuatro particiones <em>primaries</em>, y una d'eses cuatro, namás vas poder ser una partición <em>estendida</em> que va contener munches particiones <em>llóxiques</em>. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1110,7 +1133,7 @@ L'instalador va colar y van perdese tolos cambeos. Confirmación de la fras de pasu - + Please enter the same passphrase in both boxes. Introduz la mesma fras de pasu en dambes caxes, por favor. @@ -1118,37 +1141,37 @@ L'instalador va colar y van perdese tolos cambeos. FillGlobalStorageJob - + Set partition information Afitamientu de la información de les particiones - + Install %1 on <strong>new</strong> %2 system partition. Va instalase %1 na partición %2 <strong>nueva</strong> del sistema. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Va configurase una partición %2 <strong>nueva</strong> col puntu de montaxe <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Va instalase %2 na partición %3 del sistema de <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Va configurase la partición %3 de <strong>%1</strong> col puntu de montaxe <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Va instalase'l xestor d'arrinque en <strong>%1</strong>. - + Setting up mount points. Configurando los puntos de montaxe. @@ -1232,22 +1255,22 @@ L'instalador va colar y van perdese tolos cambeos. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. Formatiando la partición %1 col sistema de ficheros %2. - + The installer failed to format partition %1 on disk '%2'. L'instalador falló al formatiar la partición %1 nel discu «%2». @@ -1654,16 +1677,6 @@ L'instalador va colar y van perdese tolos cambeos. NetInstallPage - - - Name - Nome - - - - Description - Descripción - Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1675,7 +1688,7 @@ L'instalador va colar y van perdese tolos cambeos. Instalación per rede. (Desactivada: Recibiéronse datos non válidos de grupos) - + Network Installation. (Disabled: Incorrect configuration) @@ -1818,7 +1831,7 @@ L'instalador va colar y van perdese tolos cambeos. The password differs with case changes only - La contraseña namái s'estrema polos cambeos de mayúscules y minúscules + La contraseña namás s'estrema polos cambeos de mayúscules y minúscules @@ -1938,7 +1951,7 @@ L'instalador va colar y van perdese tolos cambeos. No password supplied - Nun s'apurrió denguna contraseña + Nun s'apurrió nenguna contraseña @@ -2021,7 +2034,7 @@ L'instalador va colar y van perdese tolos cambeos. Desconozse'l fallu - + Password is empty La contraseña ta balera @@ -2067,6 +2080,19 @@ L'instalador va colar y van perdese tolos cambeos. Paquetes + + PackageModel + + + Name + Nome + + + + Description + Descripción + + Page_Keyboard @@ -2229,34 +2255,34 @@ L'instalador va colar y van perdese tolos cambeos. PartitionModel - - + + Free Space Espaciu llibre - - + + New partition Partición nueva - + Name Nome - + File System Sistema de ficheros - + Mount Point Puntu de montaxe - + Size Tamañu @@ -2324,17 +2350,17 @@ L'instalador va colar y van perdese tolos cambeos. I&nstalar el xestor d'arrinque en: - + Are you sure you want to create a new partition table on %1? ¿De xuru que quies crear una tabla de particiones nueva en %1? - + Can not create new partition Nun pue crease la partición nueva - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. La tabla de particiones en %1 yá tien %2 particiones primaries y nun puen amestase más. Desanicia una partición primaria y amiesta otra estendida. @@ -2409,7 +2435,7 @@ L'instalador va colar y van perdese tolos cambeos. No EFI system partition configured - Nun se configuró denguna partición del sistema EFI + Nun se configuró nenguna partición del sistema EFI @@ -2508,14 +2534,14 @@ L'instalador va colar y van perdese tolos cambeos. ProcessResult - + There was no output from the command. -El comandu nun produxo denguna salida. +El comandu nun produxo nenguna salida. - + Output: @@ -2524,52 +2550,52 @@ Salida: - + External command crashed. El comandu esternu cascó. - + Command <i>%1</i> crashed. El comandu <i>%1</i> cascó. - + External command failed to start. El comandu esternu falló al aniciar. - + Command <i>%1</i> failed to start. El comandu <i>%1</i> falló al aniciar. - + Internal error when starting command. Fallu internu al aniciar el comandu. - + Bad parameters for process job call. Los parámetros son incorreutos pa la llamada del trabayu de procesos. - + External command failed to finish. El comandu esternu finó al finar. - + Command <i>%1</i> failed to finish in %2 seconds. El comandu <i>%1</i> falló al finar en %2 segundos. - + External command finished with errors. El comandu esternu finó con fallos. - + Command <i>%1</i> finished with exit code %2. El comandu <i>%1</i> finó col códigu de salida %2. @@ -2588,22 +2614,22 @@ Salida: Por defeutu - + unknown desconozse - + extended estendida - + unformatted ensin formatiar - + swap intercambéu @@ -2657,6 +2683,14 @@ Salida: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2684,140 +2718,153 @@ Salida: Formulariu - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Esbilla ónde instalar %1.<br/><font color="red">Alvertencia:</font> esto va desaniciar tolos ficheros de la partición esbillada. - + The selected item does not appear to be a valid partition. L'elementu esbilláu nun paez ser una partición válida. - + %1 cannot be installed on empty space. Please select an existing partition. %1 nun pue instalase nel espaciu baleru. Esbilla una partición esistente, por favor. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 nun pue instalase nuna partición estendida. Esbilla una partición primaria o llóxica esistente, por favor. - + %1 cannot be installed on this partition. %1 nun pue instalase nesta partición. - + Data partition (%1) Partición de datos (%1) - + Unknown system partition (%1) Desconozse la partición del sistema (%1) - + %1 system partition (%2) Partición %1 del sistema (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>La partición %1 ye perpequeña pa %2. Esbilla una con una capacidá de polo menos %3GB. - + <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/>Nun pudo alcontrase per nenyures una partición del sistema EFI. Volvi p'atrás y usa'l particionáu manual pa configurar %1, por favor. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 va instalase en %2.<br/><font color="red">Alvertencia: </font>van perdese tolos datos de la partición %2. - + The EFI system partition at %1 will be used for starting %2. La partición del sistema EFI en %1 va usase p'aniciar %2. - + EFI system partition: Partición del sistema EFI: + + RequirementsModel + + + This program will ask you some questions and set up your installation + Esti programa va facete dalgunes entrugues y configurar la instalación + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + Esti programa nun satisfaz los requirimientos mínimos pa la instalación. +La instalación nun pue siguir + + ResizeFSJob - + Resize Filesystem Job Trabayu de redimensionáu de sistemes de ficheros - + Invalid configuration La configuración nun ye válida - + The file-system resize job has an invalid configuration and will not run. El trabayu de redimensionáu de sistemes de ficheros tien una configuración non válida y nun va executase. - - + KPMCore not Available KPMCore nun ta disponible - - + Calamares cannot start KPMCore for the file-system resize job. Calamares nun pue aniciar KPMCore pal trabayu de redimensionáu de sistemes de ficheros. - - - - - + + + + + Resize Failed Falló'l redimensionáu - + The filesystem %1 could not be found in this system, and cannot be resized. Nun pudo alcontrase nel sistema'l sistema de ficheros %1 y nun pue redimensionase. - + The device %1 could not be found in this system, and cannot be resized. Nun pudo alcontrase nel sistema'l preséu %1 y nun pue redimensionase. - - + + The filesystem %1 cannot be resized. El sistema de ficheros %1 nun pue redimensionase. - - + + The device %1 cannot be resized. El preséu %1 nun pue redimensionase. - + The filesystem %1 must be resized, but cannot. El sistema de ficheros %1 ha redimensionase, pero nun se pue. - + The device %1 must be resized, but cannot El preséu %1 ha redimensionase, pero nun se pue @@ -2875,12 +2922,12 @@ Salida: ResultsListDialog - + For best results, please ensure that this computer: Pa los meyores resultaos, asegúrate qu'esti ordenador: - + System requirements Requirimientos del sistema @@ -2888,27 +2935,27 @@ Salida: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> Esti ordenador nun satisfaz dalgún de los requirimientos mínimos pa configurar %1.<br/>La configuración nun pue siguir. <a href="#details">Detalles...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Esti ordenador nun satisfaz los requirimientos mínimos pa instalar %1.<br/>La instalación nun pue siguir. <a href="#details">Detalles...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. Esti ordenador nun satisfaz dalgún de los requirimientos aconseyaos pa configurar %1.<br/>La configuración pue siguir pero dalgunes carauterístiques podríen desactivase. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Esti ordenador nun satisfaz dalgún requirimientu aconseyáu pa instalar %1.<br/>La instalación pue siguir pero podríen desactivase dalgunes carauterístiques. - + This program will ask you some questions and set up %2 on your computer. Esti programa va facete dalgunes entrugues y va configurar %2 nel ordenador. @@ -2929,17 +2976,17 @@ Salida: SetHostNameJob - + Set hostname %1 Afitamientu del nome d'agospiu a %1 - + Set hostname <strong>%1</strong>. Va afitase'l nome d'agospiu <strong>%1</strong>. - + Setting hostname %1. Afitando'l nome d'agospiu %1. @@ -2989,82 +3036,82 @@ Salida: SetPartFlagsJob - + Set flags on partition %1. Afitamientu de banderes na partición %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. Afitamientu de banderes na partición nueva. - + Clear flags on partition <strong>%1</strong>. Van llimpiase les banderes de la partición <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. Llimpieza de les banderes de la partición nueva. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Va afitase la bandera <strong>%2</strong> na partición <strong>%1</strong>. - + Flag new partition as <strong>%1</strong>. Va afitase la bandera <strong>%1</strong> na partición nueva. - + Clearing flags on partition <strong>%1</strong>. Llimpiando les banderes de la partición <strong>%1</strong>. - + Clearing flags on new partition. Llimpiando les banderes de la partición nueva. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Afitando les banderes <strong>%2</strong> na partición <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Afitando les banderes <strong>%1</strong> na partición nueva. - + The installer failed to set flags on partition %1. L'instalador falló al afitar les banderes na partición %1. @@ -3255,7 +3302,7 @@ Salida: <html><head/><body><p>By selecting this, you will send <span style=" font-weight:600;">no information at all</span> about your installation.</p></body></html> - <html><head/><body><p>Esbillando esto, <span style=" font-weight:600;">nun vas unviar denguna información</span> tocante a la instalación.</p></body></html> + <html><head/><body><p>Esbillando esto, <span style=" font-weight:600;">nun vas unviar nenguna información</span> tocante a la instalación.</p></body></html> @@ -3270,7 +3317,7 @@ Salida: By selecting this you will send information about your installation and hardware. This information will <b>only be sent once</b> after the installation finishes. - Esbillando esto vas unviar la información tocante a la instalación y el hardware. Esta información <b>namái va unviase una vegada</b> tres finar la instalación. + Esbillando esto vas unviar la información tocante a la instalación y el hardware. Esta información <b>namás va unviase una vegada</b> tres finar la instalación. @@ -3294,47 +3341,47 @@ Salida: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>Si va usar l'ordenador más d'una persona, pues crear más cuentes tres la configuración.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>Si va usar l'ordenador más d'una persona, pues crear más cuentes tres la instalación.</small> - + Your username is too long. El nome d'usuariu ye perllargu. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. El nome d'agospiu ye percurtiu. - + Your hostname is too long. El nome d'agospiu ye perllargu. - + Your passwords do not match! ¡Les contraseñes nun concasen! @@ -3472,42 +3519,42 @@ Salida: &Tocante a - + <h1>Welcome to the %1 installer.</h1> <h1>Afáyate nel instalador de %1.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Afáyate nel instalador Calamares de %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>Afáyate nel programa de configuración de Calamares pa %1.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>Afáyate na configuración de %1.</h1> - + About %1 setup Tocante a la configuración de %1 - + About %1 installer Tocante al instalador de %1 - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <h1>%1</h1><br/><strong>%2<br/>pa %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Gracies al <a href="https://calamares.io/team/">equipu de Calamares</a> y l'<a href="https://www.transifex.com/calamares/calamares/">equipu de traductores de Calamares</a>.<br/><br/> El desendolcu de <a href="https://calamares.io/">Calamares</a> patrocínalu <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support Sofitu de %1 @@ -3515,7 +3562,7 @@ Salida: WelcomeQmlViewStep - + Welcome Acoyida @@ -3523,7 +3570,7 @@ Salida: WelcomeViewStep - + Welcome Acoyida @@ -3531,7 +3578,7 @@ Salida: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_be.ts b/lang/calamares_be.ts index cef655b8a..7910c0ac1 100644 --- a/lang/calamares_be.ts +++ b/lang/calamares_be.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Галоўны загрузачны запіс %1 - + Boot Partition Загрузачны раздзел @@ -42,7 +42,7 @@ Не ўсталёўваць загрузчык - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -257,173 +257,173 @@ Calamares::ViewManager - + &Back - + &Next - + &Cancel - + Cancel setup without changing the system. - + Cancel installation without changing the system. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. - - + + &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 @@ -431,22 +431,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type - + unparseable Python error - + unparseable Python traceback - + Unfetchable Python error. @@ -463,17 +463,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program - + %1 Installer - + Show debug information @@ -481,7 +481,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... @@ -494,134 +494,134 @@ The installer will quit and all changes will be lost. Форма - + After: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + Select storage de&vice: - - - - + + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -629,17 +629,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 - + Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 @@ -686,10 +686,33 @@ The installer will quit and all changes will be lost. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + + + ContextualProcessJob - + Contextual Processes Job @@ -747,27 +770,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical - + Primary - + GPT - + Mountpoint already in use. Please select another one. @@ -775,22 +798,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. @@ -826,22 +849,22 @@ 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. @@ -993,13 +1016,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) - + %1 - (%2) device[name] - (device-node[name]) @@ -1112,7 +1135,7 @@ The installer will quit and all changes will be lost. - + Please enter the same passphrase in both boxes. @@ -1120,37 +1143,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. @@ -1234,22 +1257,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. - + The installer failed to format partition %1 on disk '%2'. @@ -1656,16 +1679,6 @@ 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) @@ -1677,7 +1690,7 @@ The installer will quit and all changes will be lost. - + Network Installation. (Disabled: Incorrect configuration) @@ -2023,7 +2036,7 @@ The installer will quit and all changes will be lost. - + Password is empty @@ -2069,6 +2082,19 @@ The installer will quit and all changes will be lost. + + PackageModel + + + Name + + + + + Description + + + Page_Keyboard @@ -2231,34 +2257,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space - - + + New partition - + Name - + File System - + Mount Point - + Size @@ -2326,17 +2352,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2510,65 +2536,65 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2587,22 +2613,22 @@ Output: - + unknown - + extended - + unformatted - + swap @@ -2656,6 +2682,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + Выдаліць часовага карыстальніка з мэтавай сістэмы + + RemoveVolumeGroupJob @@ -2683,140 +2717,152 @@ Output: Форма - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. - + %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. - + Data partition (%1) - + Unknown system partition (%1) - + %1 system partition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2874,12 +2920,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: - + System requirements @@ -2887,27 +2933,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - + This program will ask you some questions and set up %2 on your computer. @@ -2928,17 +2974,17 @@ Output: SetHostNameJob - + Set hostname %1 - + Set hostname <strong>%1</strong>. - + Setting hostname %1. @@ -2988,82 +3034,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. @@ -3293,47 +3339,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your passwords do not match! @@ -3471,42 +3517,42 @@ Output: - + <h1>Welcome to the %1 installer.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer - + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support @@ -3514,7 +3560,7 @@ Output: WelcomeQmlViewStep - + Welcome @@ -3522,7 +3568,7 @@ Output: WelcomeViewStep - + Welcome @@ -3530,7 +3576,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_bg.ts b/lang/calamares_bg.ts index dc419129d..e505403fa 100644 --- a/lang/calamares_bg.ts +++ b/lang/calamares_bg.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Сектор за начално зареждане на %1 - + Boot Partition Дял за начално зареждане @@ -42,7 +42,7 @@ Не инсталирай програма за начално зареждане - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Готово @@ -177,32 +177,32 @@ Calamares::PythonJob - + 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". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,174 +253,174 @@ Calamares::ViewManager - + &Back &Назад - + &Next &Напред - + &Cancel &Отказ - + Cancel setup without changing the system. - + Cancel installation without changing the system. Отказ от инсталацията без промяна на системата. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed Инициализацията на Calamares се провали - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 не може да се инсталира. Calamares не можа да зареди всичките конфигурирани модули. Това е проблем с начина, по който Calamares е използван от дистрибуцията. - + <br/>The following modules could not be loaded: <br/>Следните модули не могат да се заредят: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install &Инсталирай - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? Отмяна на инсталацията? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Наистина ли искате да отмените текущият процес на инсталиране? Инсталатора ще прекъсне и всичките промени ще бъдат загубени. - - + + &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> Инсталатора на %1 ще направи промени по вашия диск за да инсталира %2. <br><strong>Промените ще бъдат окончателни.</strong> - + &Install now &Инсталирай сега - + Go &back В&ръщане - + &Done &Готово - + The installation is complete. Close the installer. Инсталацията е завършена. Затворете инсталаторa. - + Error Грешка - + Installation Failed Неуспешна инсталация @@ -428,22 +428,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type Неизвестен тип изключение - + unparseable Python error неанализируема грешка на Python - + unparseable Python traceback неанализируемо проследяване на Python - + Unfetchable Python error. Недостъпна грешка на Python. @@ -460,17 +460,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program - + %1 Installer %1 Инсталатор - + Show debug information Покажи информация за отстраняване на грешки @@ -478,7 +478,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... Събиране на системна информация... @@ -491,134 +491,134 @@ The installer will quit and all changes will be lost. Форма - + After: След: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Самостоятелно поделяне</strong><br/>Можете да създадете или преоразмерите дяловете сами. - + Boot loader location: Локация на програмата за начално зареждане: - + Select storage de&vice: Изберете ус&тройство за съхранение: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> <strong>Изберете дял за инсталацията</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. EFI системен дял не е намерен. Моля, опитайте пак като използвате ръчно поделяне за %1. - + The EFI system partition at %1 will be used for starting %2. EFI системен дял в %1 ще бъде използван за стартиране на %2. - + EFI system partition: EFI системен дял: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Това устройство за съхранение няма инсталирана операционна система. Какво ще правите?<br/>Ще може да прегледате и потвърдите избора си, преди да се направят промени по устройството за съхранение. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Изтриване на диска</strong><br/>Това ще <font color="red">изтрие</font> всички данни върху устройството за съхранение. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Това устройство за съхранение има инсталиран %1. Какво ще правите?<br/>Ще може да прегледате и потвърдите избора си, преди да се направят промени по устройството за съхранение. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Инсталирайте покрай</strong><br/>Инсталатора ще раздроби дяла за да направи място за %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Замени дял</strong><br/>Заменя този дял с %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Това устройство за съхранение има инсталирана операционна система. Какво ще правите?<br/>Ще може да прегледате и потвърдите избора си, преди да се направят промени по устройството за съхранение. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Това устройство за съхранение има инсталирани операционни системи. Какво ще правите?<br/>Ще може да прегледате и потвърдите избора си, преди да се направят промени по устройството за съхранение. @@ -626,17 +626,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 Разчисти монтиранията за операциите на подялбата на %1 - + Clearing mounts for partitioning operations on %1. Разчистване на монтиранията за операциите на подялбата на %1 - + Cleared all mounts for %1 Разчистени всички монтирания за %1 @@ -683,10 +683,33 @@ The installer will quit and all changes will be lost. Командата трябва да установи потребителското име на профила, но такова не е определено. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Добре дошли при инсталатора Calamares на %1.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Добре дошли при инсталатора на %1.</h1> + + ContextualProcessJob - + Contextual Processes Job Задача с контекстуални процеси @@ -744,27 +767,27 @@ The installer will quit and all changes will be lost. Раз&мер: - + En&crypt Ши&фриране - + Logical Логическа - + Primary Главна - + GPT GPT - + Mountpoint already in use. Please select another one. Точката за монтиране вече се използва. Моля изберете друга. @@ -772,22 +795,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. Създаване на нов %1 дял върху %2. - + The installer failed to create partition on disk '%1'. Инсталатора не успя да създаде дял върху диск '%1'. @@ -823,22 +846,22 @@ 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. @@ -990,13 +1013,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) @@ -1109,7 +1132,7 @@ The installer will quit and all changes will be lost. Потвърди паролата - + Please enter the same passphrase in both boxes. Моля, въведете еднаква парола в двете полета. @@ -1117,37 +1140,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. Настройка на точките за монтиране. @@ -1231,22 +1254,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. Форматирай дял %1 с файлова система %2. - + The installer failed to format partition %1 on disk '%2'. Инсталатора не успя да форматира дял %1 на диск '%2'. @@ -1653,16 +1676,6 @@ 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) @@ -1674,7 +1687,7 @@ The installer will quit and all changes will be lost. Мрежова инсталация. (Изключена: Получени са данни за невалидни групи) - + Network Installation. (Disabled: Incorrect configuration) @@ -2020,7 +2033,7 @@ The installer will quit and all changes will be lost. Неизвестна грешка - + Password is empty @@ -2066,6 +2079,19 @@ The installer will quit and all changes will be lost. + + PackageModel + + + Name + Име + + + + Description + Описание + + Page_Keyboard @@ -2228,34 +2254,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space Свободно пространство - - + + New partition Нов дял - + Name Име - + File System Файлова система - + Mount Point Точка на монтиране - + Size Размер @@ -2323,17 +2349,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? Сигурни ли сте че искате да създадете нова таблица на дяловете върху %1? - + Can not create new partition Не може да се създаде нов дял - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Таблицата на дяловете на %1 вече има %2 главни дялове, повече не може да се добавят. Моля, премахнете един главен дял и добавете разширен дял, на негово място. @@ -2507,13 +2533,13 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. - + Output: @@ -2522,52 +2548,52 @@ Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. Невалидни параметри за извикване на задача за процес. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2586,22 +2612,22 @@ Output: По подразбиране - + unknown неизвестна - + extended разширена - + unformatted неформатирана - + swap swap @@ -2655,6 +2681,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2682,140 +2716,152 @@ Output: Форма - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Изберете къде да инсталирате %1.<br/><font color="red">Предупреждение: </font>това ще изтрие всички файлове върху избраният дял. - + The selected item does not appear to be a valid partition. Избраният предмет не изглежда да е валиден дял. - + %1 cannot be installed on empty space. Please select an existing partition. %1 не може да бъде инсталиран на празно пространство. Моля изберете съществуващ дял. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 не може да бъде инсталиран върху разширен дял. Моля изберете съществуващ основен или логически дял. - + %1 cannot be installed on this partition. %1 не може да бъде инсталиран върху този дял. - + Data partition (%1) Дял на данните (%1) - + Unknown system partition (%1) Непознат системен дял (%1) - + %1 system partition (%2) %1 системен дял (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>Дялът %1 е твърде малък за %2. Моля изберете дял с капацитет поне %3 ГБ. - + <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/>EFI системен дял не е намерен. Моля, опитайте пак като използвате ръчно поделяне за %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 ще бъде инсталиран върху %2.<br/><font color="red">Предупреждение: </font>всички данни на дял %2 ще бъдат изгубени. - + The EFI system partition at %1 will be used for starting %2. EFI системен дял в %1 ще бъде използван за стартиране на %2. - + EFI system partition: EFI системен дял: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2873,12 +2919,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: За най-добри резултати, моля бъдете сигурни че този компютър: - + System requirements Системни изисквания @@ -2886,28 +2932,28 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Този компютър не отговаря на минималните изисквания за инсталиране %1.<br/>Инсталацията не може да продължи. <a href="#details">Детайли...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Този компютър не отговаря на някои от препоръчителните изисквания за инсталиране %1.<br/>Инсталацията може да продължи, но някои свойства могат да бъдат недостъпни. - + This program will ask you some questions and set up %2 on your computer. Тази програма ще ви зададе няколко въпроса и ще конфигурира %2 на вашия компютър. @@ -2928,17 +2974,17 @@ Output: SetHostNameJob - + Set hostname %1 Поставете име на хоста %1 - + Set hostname <strong>%1</strong>. Поставете име на хост <strong>%1</strong>. - + Setting hostname %1. Задаване името на хоста %1 @@ -2988,82 +3034,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. Задай флагове на дял %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. Задай флагове на нов дял. - + Clear flags on partition <strong>%1</strong>. Изчисти флаговете на дял <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. Изчисти флагове на нов дял. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Сложи флаг на дял <strong>%1</strong> като <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Сложи флаг на новия дял като <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Изчистване на флаговете на дял <strong>%1</strong>. - + Clearing flags on new partition. Изчистване на флаговете на новия дял. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Задаване на флагове <strong>%2</strong> на дял <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Задаване на флагове <strong>%1</strong> на новия дял. - + The installer failed to set flags on partition %1. Инсталатора не успя да зададе флагове на дял %1. @@ -3293,47 +3339,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. Вашето потребителско име е твърде дълго. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. Вашето име на хоста е твърде кратко. - + Your hostname is too long. Вашето име на хоста е твърде дълго. - + Your passwords do not match! Паролите Ви не съвпадат! @@ -3471,42 +3517,42 @@ Output: &Относно - + <h1>Welcome to the %1 installer.</h1> <h1>Добре дошли при инсталатора на %1.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Добре дошли при инсталатора Calamares на %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer Относно инсталатор %1 - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 поддръжка @@ -3514,7 +3560,7 @@ Output: WelcomeQmlViewStep - + Welcome Добре дошли @@ -3522,7 +3568,7 @@ Output: WelcomeViewStep - + Welcome Добре дошли @@ -3530,7 +3576,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_ca.ts b/lang/calamares_ca.ts index 6938f5b1e..0245fef94 100644 --- a/lang/calamares_ca.ts +++ b/lang/calamares_ca.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Registre d'inici mestre (MBR) de %1 - + Boot Partition Partició d'arrencada @@ -42,7 +42,7 @@ No instal·lis cap gestor d'arrencada - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Fet @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. S'executa l'operació %1. - + Bad working directory path Camí incorrecte al directori de treball - + Working directory %1 for python job %2 is not readable. El directori de treball %1 per a la tasca python %2 no és llegible. - + Bad main script file Fitxer erroni d'script principal - + Main script file %1 for python job %2 is not readable. El fitxer de script principal %1 per a la tasca de python %2 no és llegible. - + Boost.Python error in job "%1". Error de Boost.Python a la tasca "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... Es carrega... - + QML Step <i>%1</i>. Pas QML <i>%1</i>. - + Loading failed. Ha fallat la càrrega. @@ -253,175 +253,175 @@ Calamares::ViewManager - + &Back &Enrere - + &Next &Següent - + &Cancel &Cancel·la - + Cancel setup without changing the system. Cancel·la la configuració sense canviar el sistema. - + Cancel installation without changing the system. Cancel·leu la instal·lació sense canviar el sistema. - + Setup Failed Ha fallat la configuració. - + Would you like to paste the install log to the web? Voleu enganxar el registre d'instal·lació a la xarxa? - + Install Log Paste URL URL de publicació del registre d'instal·lació - + The upload was unsuccessful. No web-paste was done. La càrrega no s'ha fet correctament. No s'ha enganxat res a la xarxa. - + Calamares Initialization Failed Ha fallat la inicialització de Calamares - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. No es pot instal·lar %1. El Calamares no ha pogut carregar tots els mòduls configurats. Aquest és un problema amb la manera com el Calamares és utilitzat per la distribució. - + <br/>The following modules could not be loaded: <br/>No s'han pogut carregar els mòduls següents: - + Continue with installation? Voleu continuar la instal·lació? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> El programa de configuració %1 està a punt de fer canvis al disc per tal de configurar %2.<br/><strong>No podreu desfer aquests canvis.</strong> - + &Set up now Con&figura-ho ara - + &Set up Con&figura-ho - + &Install &Instal·la - + Setup is complete. Close the setup program. La configuració s'ha acabat. Tanqueu el programa de configuració. - + Cancel setup? Voleu cancel·lar la configuració? - + Cancel installation? Voleu cancel·lar la instal·lació? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. Realment voleu cancel·lar el procés de configuració actual? El programa de configuració es tancarà i es perdran tots els canvis. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Voleu cancel·lar el procés d'instal·lació actual? L'instal·lador es tancarà i tots els canvis es perdran. - - + + &Yes &Sí - - + + &No &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 per a %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'l ara - + Go &back Ves &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. @@ -429,22 +429,22 @@ L'instal·lador es tancarà i tots els canvis es perdran. CalamaresPython::Helper - + Unknown exception type Tipus d'excepció desconeguda - + unparseable Python error Error de Python no analitzable - + unparseable Python traceback Traceback de Python no analitzable - + Unfetchable Python error. Error de Python irrecuperable. @@ -462,17 +462,17 @@ L'instal·lador es tancarà i tots els canvis es perdran. CalamaresWindow - + %1 Setup Program Programa de configuració %1 - + %1 Installer Instal·lador de %1 - + Show debug information Informació de depuració @@ -480,7 +480,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. CheckerContainer - + Gathering system information... Es recopila informació del sistema... @@ -493,134 +493,134 @@ L'instal·lador es tancarà i tots els canvis es perdran. Formulari - + After: Després: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Particions manuals</strong><br/>Podeu crear o canviar la mida de les particions vosaltres mateixos. - + Boot loader location: Ubicació del gestor d'arrencada: - + Select storage de&vice: Seleccioneu un dispositiu d'e&mmagatzematge: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 s'encongirà a %2 MiB i es crearà una partició nova de %3 MB per a %4. - + <strong>Select a partition to install on</strong> <strong>Seleccioneu una partició per fer-hi la instal·lació.</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. No s'ha pogut trobar enlloc una partició EFI en aquest sistema. Si us plau, torneu enrere i use les particions manuals per configurar %1. - + The EFI system partition at %1 will be used for starting %2. La partició EFI de sistema a %1 s'usarà per iniciar %2. - + EFI system partition: Partició EFI del sistema: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Aquest dispositiu d'emmagatzematge no sembla que tingui un sistema operatiu. Què voleu fer?<br/>Podreu revisar i confirmar la tria abans que es faci cap canvi al dispositiu. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Esborra el disc</strong><br/>Això <font color="red">suprimirà</font> totes les dades del dispositiu seleccionat. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Aquest dispositiu d'emmagatzematge té %1. Què voleu fer?<br/>Podreu revisar i confirmar la tria abans que es faci cap canvi al dispositiu. - + No Swap Sense intercanvi - + Reuse Swap Reutilitza l'intercanvi - + Swap (no Hibernate) Intercanvi (sense hibernació) - + Swap (with Hibernate) Intercanvi (amb hibernació) - + Swap to file Intercanvi en fitxer - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instal·la'l 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. @@ -628,17 +628,17 @@ L'instal·lador es tancarà i tots els canvis es perdran. ClearMountsJob - + Clear mounts for partitioning operations on %1 Neteja els muntatges per les operacions de partició a %1 - + Clearing mounts for partitioning operations on %1. Es netegen els muntatges per a les operacions de les particions a %1. - + Cleared all mounts for %1 S'han netejat tots els muntatges de %1 @@ -685,10 +685,33 @@ L'instal·lador es tancarà i tots els canvis es perdran. L'ordre necessita saber el nom de l'usuari, però no s'ha definit cap nom d'usuari. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>Benvingut/da al programa de configuració del Calamares per a %1.</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>Benvingut/da a la configuració per a %1.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Benvingut/da a l'instal·lador Calamares per a %1.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Benvingut/da a l'instal·lador per a %1.</h1> + + ContextualProcessJob - + Contextual Processes Job Tasca de procés contextual @@ -746,27 +769,27 @@ L'instal·lador es tancarà i tots els canvis es perdran. Mi&da: - + En&crypt En&cripta - + Logical Lògica - + Primary Primària - + GPT GPT - + Mountpoint already in use. Please select another one. El punt de muntatge ja està en ús. Si us plau, seleccioneu-ne un altre. @@ -774,22 +797,22 @@ L'instal·lador es tancarà i tots els canvis es perdran. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. Crea una partició nova de %2 MiB a %4 (%3) amb el sistema de fitxers %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Crea una partició nova de <strong>%2 MiB</strong> a <strong>%4</strong> (%3) amb el sistema de fitxers <strong>%1</strong>. - + Creating new %1 partition on %2. Es crea 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'. @@ -825,22 +848,22 @@ L'instal·lador es tancarà i tots els canvis es perdran. CreatePartitionTableJob - + Create new %1 partition table on %2. Crea una taula de particions nova %1 a %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Crea una taula de particions nova <strong>%1</strong> a <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Es crea la taula de particions nova %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. @@ -992,13 +1015,13 @@ L'instal·lador es tancarà i tots els canvis es perdran. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1111,7 +1134,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. Confirmeu la contrasenya - + Please enter the same passphrase in both boxes. Si us plau, escriviu la mateixa contrasenya a les dues caselles. @@ -1119,37 +1142,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 gestor d'arrencada a <strong>%1</strong>. - + Setting up mount points. S'estableixen els punts de muntatge. @@ -1233,22 +1256,22 @@ L'instal·lador es tancarà i tots els canvis es perdran. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. Formata la partició %1 (sistema de fitxers: %2, mida: %3 MiB) de %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. Formata la partició de <strong>%3 MiB</strong> <strong>%1</strong> amb el sistema de fitxers <strong>%2</strong>. - + Formatting partition %1 with file system %2. Es formata la partició %1 amb el sistema de fitxers %2. - + The installer failed to format partition %1 on disk '%2'. L'instal·lador no ha pogut formatar la partició %1 del disc '%2'. @@ -1655,16 +1678,6 @@ 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) @@ -1676,7 +1689,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. Instal·lació per xarxa. (Inhabilitada: dades de grups rebudes no vàlides) - + Network Installation. (Disabled: Incorrect configuration) Instal·lació per xarxa. (Inhabilitada: configuració incorrecta) @@ -2022,7 +2035,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. Error desconegut - + Password is empty La contrasenya és buida. @@ -2068,6 +2081,19 @@ L'instal·lador es tancarà i tots els canvis es perdran. Paquets + + PackageModel + + + Name + Nom + + + + Description + Descripció + + Page_Keyboard @@ -2230,34 +2256,34 @@ L'instal·lador es tancarà i tots els canvis es perdran. PartitionModel - - + + Free Space Espai lliure - - + + New partition Partició nova - + Name Nom - + File System Sistema de fitxers - + Mount Point Punt de muntatge - + Size Mida @@ -2325,17 +2351,17 @@ L'instal·lador es tancarà i tots els canvis es perdran. I&nstal·la el gestor d'arrencada a: - + Are you sure you want to create a new partition table on %1? Esteu segurs que voleu crear una nova taula de particions a %1? - + Can not create new partition No es pot crear la partició nova - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. La taula de particions de %1 ja té %2 particions primàries i no se n'hi poden afegir més. Si us plau, suprimiu una partició primària i afegiu-hi una partició ampliada. @@ -2509,14 +2535,14 @@ L'instal·lador es tancarà i tots els canvis es perdran. ProcessResult - + There was no output from the command. No hi ha hagut sortida de l'ordre. - + Output: @@ -2525,52 +2551,52 @@ Sortida: - + External command crashed. L'ordre externa ha fallat. - + Command <i>%1</i> crashed. L'ordre <i>%1</i> ha fallat. - + External command failed to start. L'ordre externa no s'ha pogut iniciar. - + Command <i>%1</i> failed to start. L'ordre <i>%1</i> no s'ha pogut iniciar. - + Internal error when starting command. Error intern en iniciar l'ordre. - + Bad parameters for process job call. Paràmetres incorrectes per a la crida de la tasca del procés. - + External command failed to finish. L'ordre externa no ha acabat correctament. - + Command <i>%1</i> failed to finish in %2 seconds. L'ordre <i>%1</i> no ha pogut acabar en %2 segons. - + External command finished with errors. L'ordre externa ha acabat amb errors. - + Command <i>%1</i> finished with exit code %2. L'ordre <i>%1</i> ha acabat amb el codi de sortida %2. @@ -2589,22 +2615,22 @@ Sortida: Per defecte - + unknown desconeguda - + extended ampliada - + unformatted sense format - + swap Intercanvi @@ -2658,6 +2684,14 @@ Sortida: No s'ha pogut crear el fitxer aleatori nou <pre>%1</pre>. + + RemoveUserJob + + + Remove live user from target system + Suprimeix l'usuari de la sessió autònoma del sistema de destinació + + RemoveVolumeGroupJob @@ -2685,140 +2719,153 @@ Sortida: Formulari - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Seleccioneu on instal·lar %1.<br/><font color="red">Atenció: </font>això suprimirà tots els fitxers de la partició seleccionada. - + The selected item does not appear to be a valid partition. L'element seleccionat no sembla que sigui una partició vàlida. - + %1 cannot be installed on empty space. Please select an existing partition. %1 no es pot instal·lar en un espai buit. Si us plau, seleccioneu una partició existent. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 no es pot instal·lar en un partició ampliada. Si us plau, seleccioneu una partició existent primària o lògica. - + %1 cannot be installed on this partition. %1 no es pot instal·lar en aquesta partició. - + Data partition (%1) Partició de dades (%1) - + Unknown system partition (%1) Partició de sistema desconeguda (%1) - + %1 system partition (%2) %1 partició de sistema (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>La partició %1 és massa petita per a %2. Si us plau, seleccioneu una partició amb capacitat d'almenys %3 GB. - + <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/>No es pot trobar cap partició EFI enlloc del sistema. Si us plau, torneu enrere i useu les particions manuals per establir %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 s'instal·larà a %2.<br/><font color="red">Atenció: </font>totes les dades de la partició %2 es perdran. - + 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: + + RequirementsModel + + + This program will ask you some questions and set up your installation + Aquest programa us farà unes preguntes i configurarà la instal·lació. + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + Aquest programa no satisfà els requisits mínims per a la instal·lació. +La instal·lació no pot continuar. + + ResizeFSJob - + Resize Filesystem Job Tasca de canviar de mida un sistema de fitxers - + Invalid configuration Configuració no vàlida - + The file-system resize job has an invalid configuration and will not run. La tasca de canviar de mida un sistema de fitxers té una configuració no vàlida i no s'executarà. - - + KPMCore not Available KPMCore no disponible - - + Calamares cannot start KPMCore for the file-system resize job. El Calamares no pot iniciar KPMCore per a la tasca de canviar de mida un sistema de fitxers. - - - - - + + + + + Resize Failed Ha fallat el canvi de mida. - + The filesystem %1 could not be found in this system, and cannot be resized. El sistema de fitxers %1 no s'ha pogut trobar en aquest sistema i, per tant, no se'n pot canviar la mida. - + The device %1 could not be found in this system, and cannot be resized. El dispositiu &1 no s'ha pogut trobar en aquest sistema i, per tant, no se'n pot canviar la mida. - - + + The filesystem %1 cannot be resized. No es pot canviar la mida del sistema de fitxers %1. - - + + The device %1 cannot be resized. No es pot canviar la mida del dispositiu %1. - + The filesystem %1 must be resized, but cannot. Cal canviar la mida del sistema de fitxers %1, però no es pot. - + The device %1 must be resized, but cannot Cal canviar la mida del dispositiu %1, però no es pot. @@ -2876,12 +2923,12 @@ Sortida: ResultsListDialog - + For best results, please ensure that this computer: Per obtenir els millors resultats, assegureu-vos, si us plau, que aquest ordinador... - + System requirements Requisits del sistema @@ -2889,27 +2936,27 @@ Sortida: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> Aquest ordinador no satisfà els requisits mínims per configurar-hi %1.<br/> La configuració no pot continuar. <a href="#details">Detalls...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Aquest ordinador no satisfà els requisits mínims per instal·lar-hi %1.<br/> La instal·lació no pot continuar. <a href="#details">Detalls...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. Aquest ordinador no satisfà alguns dels requisits recomanats per configurar-hi %1.<br/>La configuració pot continuar, però algunes característiques podrien estar inhabilitades. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Aquest ordinador no satisfà alguns dels requisits recomanats per instal·lar-hi %1.<br/>La instal·lació pot continuar, però algunes característiques podrien estar inhabilitades. - + This program will ask you some questions and set up %2 on your computer. Aquest programa us farà unes preguntes i instal·larà %2 a l'ordinador. @@ -2930,17 +2977,17 @@ Sortida: SetHostNameJob - + Set hostname %1 Estableix el nom d'amfitrió %1 - + Set hostname <strong>%1</strong>. Estableix el nom d'amfitrió <strong>%1</strong>. - + Setting hostname %1. S'estableix el nom d'amfitrió %1. @@ -2990,82 +3037,82 @@ Sortida: SetPartFlagsJob - + Set flags on partition %1. Estableix les banderes a la partició %1. - + Set flags on %1MiB %2 partition. Estableix les banderes a la partició %2 de %1 MiB. - + Set flags on new partition. Estableix les banderes a la partició nova. - + Clear flags on partition <strong>%1</strong>. Neteja les banderes de la partició <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. Neteja les banderes de la partició <strong>%2</strong> de %1 MiB. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. Estableix la bandera de la partició <strong>%2</strong> de %1 MiB com a <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. Es netegen les banderes de la partició <strong>%2</strong>de %1 MiB. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. S'estableixen les banderes <strong>%3</strong> a la partició <strong>%2</strong> de %1 MiB. - + Clear flags on new partition. Neteja les banderes de la partició nova. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Estableix la bandera <strong>%2</strong> a la partició <strong>%1</strong>. - + Flag new partition as <strong>%1</strong>. Estableix la bandera de la partició nova com a <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Es netegen les banderes de la partició <strong>%1</strong>. - + Clearing flags on new partition. Es netegen les banderes de la partició nova. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Establint les banderes <strong>%2</strong> a la partició <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. S'estableixen les banderes <strong>%1</strong> a la partició nova. - + The installer failed to set flags on partition %1. L'instal·lador ha fallat en establir les banderes a la partició %1. @@ -3295,47 +3342,47 @@ Sortida: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>Si més d'una persona usarà aquest ordinador, podeu crear diversos comptes després de la configuració.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>Si més d'una persona usarà aquest ordinador, podeu crear diversos comptes després de la instal·lació.</small> - + Your username is too long. El nom d'usuari és massa llarg. - + Your username must start with a lowercase letter or underscore. El nom d'usuari ha de començar amb una lletra en minúscula o una ratlla baixa. - + Only lowercase letters, numbers, underscore and hyphen are allowed. Només es permeten lletres en minúscula, números, ratlles baixes i guions. - + Only letters, numbers, underscore and hyphen are allowed. Només es permeten lletres, números, ratlles baixes i guions. - + Your hostname is too short. El nom d'amfitrió és massa curt. - + Your hostname is too long. El nom d'amfitrió és massa llarg. - + Your passwords do not match! Les contrasenyes no coincideixen! @@ -3473,42 +3520,42 @@ Sortida: &Quant a - + <h1>Welcome to the %1 installer.</h1> <h1>Benvingut/da a l'instal·lador per a %1.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Benvingut/da a l'instal·lador Calamares per a %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>Benvingut/da al programa de configuració del Calamares per a %1.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>Benvingut/da a la configuració per a %1.</h1> - + About %1 setup Quant a la configuració de %1 - + About %1 installer Quant a l'instal·lador %1 - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Agraïments per a <a href="https://calamares.io/team/">l'equip del Calamares</a> i per a <a href="https://www.transifex.com/calamares/calamares/">l'equip de traductors del Calamares</a>.<br/><br/>El desenvolupament del<a href="https://calamares.io/">Calamares</a> està patrocinat per <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 suport @@ -3516,7 +3563,7 @@ Sortida: WelcomeQmlViewStep - + Welcome Benvinguda @@ -3524,7 +3571,7 @@ Sortida: WelcomeViewStep - + Welcome Benvinguda @@ -3532,7 +3579,7 @@ Sortida: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> <h3>%1</h3> diff --git a/lang/calamares_ca@valencia.ts b/lang/calamares_ca@valencia.ts index 3470d90e1..15aa4ae6c 100644 --- a/lang/calamares_ca@valencia.ts +++ b/lang/calamares_ca@valencia.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 - + Boot Partition @@ -42,7 +42,7 @@ - + %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,173 +253,173 @@ Calamares::ViewManager - + &Back - + &Next - + &Cancel - + Cancel setup without changing the system. - + Cancel installation without changing the system. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. - - + + &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 @@ -427,22 +427,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type - + unparseable Python error - + unparseable Python traceback - + Unfetchable Python error. @@ -459,17 +459,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program - + %1 Installer - + Show debug information @@ -477,7 +477,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... @@ -490,134 +490,134 @@ The installer will quit and all changes will be lost. - + After: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + Select storage de&vice: - - - - + + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -625,17 +625,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 - + Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 @@ -682,10 +682,33 @@ The installer will quit and all changes will be lost. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + + + ContextualProcessJob - + Contextual Processes Job @@ -743,27 +766,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical - + Primary - + GPT - + Mountpoint already in use. Please select another one. @@ -771,22 +794,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. @@ -822,22 +845,22 @@ 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. @@ -989,13 +1012,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) - + %1 - (%2) device[name] - (device-node[name]) @@ -1108,7 +1131,7 @@ The installer will quit and all changes will be lost. - + Please enter the same passphrase in both boxes. @@ -1116,37 +1139,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. @@ -1230,22 +1253,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. - + The installer failed to format partition %1 on disk '%2'. @@ -1652,16 +1675,6 @@ 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) @@ -1673,7 +1686,7 @@ The installer will quit and all changes will be lost. - + Network Installation. (Disabled: Incorrect configuration) @@ -2019,7 +2032,7 @@ The installer will quit and all changes will be lost. - + Password is empty @@ -2065,6 +2078,19 @@ The installer will quit and all changes will be lost. + + PackageModel + + + Name + + + + + Description + + + Page_Keyboard @@ -2227,34 +2253,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space - - + + New partition - + Name - + File System - + Mount Point - + Size @@ -2322,17 +2348,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2506,65 +2532,65 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2583,22 +2609,22 @@ Output: - + unknown - + extended - + unformatted - + swap @@ -2652,6 +2678,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2679,140 +2713,152 @@ Output: - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. - + %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. - + Data partition (%1) - + Unknown system partition (%1) - + %1 system partition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2870,12 +2916,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: - + System requirements @@ -2883,27 +2929,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - + This program will ask you some questions and set up %2 on your computer. @@ -2924,17 +2970,17 @@ Output: SetHostNameJob - + Set hostname %1 - + Set hostname <strong>%1</strong>. - + Setting hostname %1. @@ -2984,82 +3030,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. @@ -3289,47 +3335,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your passwords do not match! @@ -3467,42 +3513,42 @@ Output: - + <h1>Welcome to the %1 installer.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer Sobre %1 instal·lador - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 soport @@ -3510,7 +3556,7 @@ Output: WelcomeQmlViewStep - + Welcome Benvingut @@ -3518,7 +3564,7 @@ Output: WelcomeViewStep - + Welcome Benvingut @@ -3526,7 +3572,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_cs_CZ.ts b/lang/calamares_cs_CZ.ts index 86db9b5ae..cbeb620cb 100644 --- a/lang/calamares_cs_CZ.ts +++ b/lang/calamares_cs_CZ.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Hlavní zaváděcí záznam (MBR) na %1 - + Boot Partition Zaváděcí oddíl @@ -42,7 +42,7 @@ Neinstalovat zavaděč systému - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Hotovo @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Spouštění %1 operace. - + Bad working directory path Chybný popis umístění pracovní složky - + Working directory %1 for python job %2 is not readable. Pracovní složku %1 pro Python skript %2 se nedaří otevřít pro čtení. - + Bad main script file Nesprávný soubor s hlavním skriptem - + Main script file %1 for python job %2 is not readable. Hlavní soubor s python skriptem %1 pro úlohu %2 se nedaří otevřít pro čtení.. - + Boost.Python error in job "%1". Boost.Python chyba ve skriptu „%1“. @@ -210,19 +210,19 @@ Calamares::QmlViewStep - + Loading ... - + Načítání… - + QML Step <i>%1</i>. - + QML Step <i>%1</i>. - + Loading failed. - + Načítání se nezdařilo. @@ -257,175 +257,175 @@ Calamares::ViewManager - + &Back &Zpět - + &Next &Další - + &Cancel &Storno - + Cancel setup without changing the system. Zrušit nastavení bez změny v systému. - + Cancel installation without changing the system. Zrušení instalace bez provedení změn systému. - + Setup Failed Nastavení se nezdařilo - + Would you like to paste the install log to the web? Chcete vyvěsit záznam událostí při instalaci na web? - + Install Log Paste URL URL pro vložení záznamu událostí při instalaci - + The upload was unsuccessful. No web-paste was done. Nahrání se nezdařilo. Na web nebylo nic vloženo. - + Calamares Initialization Failed Inicializace Calamares se nezdařila - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 nemůže být nainstalováno. Calamares se nepodařilo načíst všechny nastavené moduly. Toto je problém způsobu použití Calamares ve vámi používané distribuci. - + <br/>The following modules could not be loaded: <br/> Následující moduly se nepodařilo načíst: - + Continue with installation? Pokračovat v instalaci? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> 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> - + &Set up now Na&stavit nyní - + &Set up Na&stavit - + &Install Na&instalovat - + Setup is complete. Close the setup program. Nastavení je dokončeno. Ukončete nastavovací program. - + Cancel setup? Zrušit nastavování? - + Cancel installation? Přerušit instalaci? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. Opravdu chcete přerušit instalaci? Instalační program bude ukončen a všechny změny ztraceny. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Opravdu chcete instalaci přerušit? Instalační program bude ukončen a všechny změny ztraceny. - - + + &Yes &Ano - - + + &No &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> 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 je dokončena. Ukončete instalátor. - + Error Chyba - + Installation Failed Instalace se nezdařila @@ -433,22 +433,22 @@ Instalační program bude ukončen a všechny změny ztraceny. CalamaresPython::Helper - + Unknown exception type Neznámý typ výjimky - + unparseable Python error Chyba při zpracovávání (parse) Python skriptu. - + unparseable Python traceback Chyba při zpracovávání (parse) Python záznamu volání funkcí (traceback). - + Unfetchable Python error. Chyba při načítání Python skriptu. @@ -466,17 +466,17 @@ Instalační program bude ukončen a všechny změny ztraceny. CalamaresWindow - + %1 Setup Program Instalátor %1 - + %1 Installer %1 instalátor - + Show debug information Zobrazit ladící informace @@ -484,7 +484,7 @@ Instalační program bude ukončen a všechny změny ztraceny. CheckerContainer - + Gathering system information... Shromažďování informací o systému… @@ -497,134 +497,134 @@ Instalační program bude ukončen a všechny změny ztraceny. Formulář - + After: Po: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Ruční rozdělení datového úložiště</strong><br/>Sami si můžete vytvořit vytvořit nebo zvětšit/zmenšit oddíly. - + Boot loader location: Umístění zavaděče: - + Select storage de&vice: &Vyberte úložné zařízení: - - - - + + + + Current: Stávající: - + Reuse %1 as home partition for %2. Zrecyklovat %1 na oddíl pro domovské složky %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Vyberte oddíl, který chcete zmenšit, poté posouváním na spodní liště změňte jeho velikost.</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 bude zmenšen na %2MiB a nový %3MiB oddíl pro %4 bude vytvořen. - + <strong>Select a partition to install on</strong> <strong>Vyberte oddíl na který nainstalovat</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Nebyl nalezen žádný EFI systémový oddíl. Vraťte se zpět a nastavte %1 pomocí ručního rozdělení. - + The EFI system partition at %1 will be used for starting %2. Pro zavedení %2 se využije EFI systémový oddíl %1. - + EFI system partition: EFI systémový oddíl: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Zdá se, že na tomto úložném zařízení není žádný operační systém. Jak chcete postupovat?<br/>Než budou provedeny jakékoli změny na úložných zařízeních, bude zobrazen jejich přehled a budete požádáni o jejich potvrzení. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Vymazat datové úložiště</strong><br/>Touto volbou budou <font color="red">smazána</font> všechna data, která se na něm nyní nacházejí. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Na tomto úložném zařízení bylo nalezeno %1. Jak chcete postupovat?<br/>Než budou provedeny jakékoli změny na úložných zařízeních, bude zobrazen jejich přehled a budete požádáni o jejich potvrzení. - + No Swap Žádný odkládací prostor (swap) - + Reuse Swap Použít existující odkládací prostor - + Swap (no Hibernate) Odkládací prostor (bez uspávání na disk) - + Swap (with Hibernate) Odkládací prostor (s uspáváním na disk) - + Swap to file Odkládat do souboru - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Nainstalovat vedle</strong><br/>Instalátor zmenší oddíl a vytvoří místo pro %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Nahradit oddíl</strong><br/>Původní oddíl bude nahrazen %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Na tomto úložném zařízení se už nachází operační systém. Jak chcete postupovat?<br/>Než budou provedeny jakékoli změny na úložných zařízeních, bude zobrazen jejich přehled a budete požádáni o jejich potvrzení. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Na tomto úložném zařízení se už nachází několik operačních systémů. Jak chcete postupovat?<br/>Než budou provedeny jakékoli změny na úložných zařízeních, bude zobrazen jejich přehled změn a budete požádáni o jejich potvrzení. @@ -632,17 +632,17 @@ Instalační program bude ukončen a všechny změny ztraceny. ClearMountsJob - + Clear mounts for partitioning operations on %1 Odpojit souborové systémy před zahájením dělení %1 na oddíly - + Clearing mounts for partitioning operations on %1. Odpojují se souborové systémy před zahájením dělení %1 na oddíly - + Cleared all mounts for %1 Všechny souborové systémy na %1 odpojeny @@ -689,10 +689,33 @@ Instalační program bude ukončen a všechny změny ztraceny. Příkaz potřebuje znát uživatelské jméno, to ale zadáno nebylo. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>Vítejte v Calamares, instalačním programu (nejen) pro %1.</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>Vítejte v instalátoru pro %1.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Vítejte v Calamares, instalačním programu (nejen) pro %1.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Vítejte v instalátoru %1.</h1> + + ContextualProcessJob - + Contextual Processes Job Úloha kontextuálních procesů @@ -750,27 +773,27 @@ Instalační program bude ukončen a všechny změny ztraceny. &Velikost: - + En&crypt Š&ifrovat - + Logical Logický - + Primary Primární - + GPT GPT - + Mountpoint already in use. Please select another one. Tento přípojný bod už je používán – vyberte jiný. @@ -778,22 +801,22 @@ Instalační program bude ukončen a všechny změny ztraceny. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. Vytvořit nový %2MiB oddíl na %4 (%3) se souborovým systémem %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Vytvořit nový <strong>%2MiB</strong> oddíl na <strong>%4</strong> (%3) se souborovým systémem <strong>%1</strong>. - + Creating new %1 partition on %2. Vytváří se nový %1 oddíl na %2. - + The installer failed to create partition on disk '%1'. Instalátoru se nepodařilo vytvořit oddíl na datovém úložišti „%1“. @@ -829,22 +852,22 @@ 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áří se nová %1 tabulka oddílů na %2. - + The installer failed to create a partition table on %1. Instalátoru se nepodařilo vytvořit tabulku oddílů na %1. @@ -996,13 +1019,13 @@ Instalační program bude ukončen a všechny změny ztraceny. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 – %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 – (%2) @@ -1115,7 +1138,7 @@ Instalační program bude ukončen a všechny změny ztraceny. Potvrzení heslové fráze - + Please enter the same passphrase in both boxes. Zadejte stejnou heslovou frázi do obou kolonek. @@ -1123,37 +1146,37 @@ Instalační program bude ukončen a všechny změny ztraceny. FillGlobalStorageJob - + Set partition information Nastavit informace o oddílu - + Install %1 on <strong>new</strong> %2 system partition. 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>. 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>. Nainstalovat zavaděč do <strong>%1</strong>. - + Setting up mount points. Nastavují se přípojné body. @@ -1237,22 +1260,22 @@ Instalační program bude ukončen a všechny změny ztraceny. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. Formátovat oddíl %1 (souborový systém: %2, velikost %3 MiB) na %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. Naformátovat <strong>%3MiB</strong> oddíl <strong>%1</strong> souborovým systémem <strong>%2</strong>. - + Formatting partition %1 with file system %2. Vytváření souborového systému %2 na oddílu %1. - + The installer failed to format partition %1 on disk '%2'. Instalátoru se nepodařilo vytvořit souborový systém na oddílu %1 jednotky datového úložiště „%2“. @@ -1636,7 +1659,7 @@ Instalační program bude ukončen a všechny změny ztraceny. Could not configure LUKS key file on partition %1. - + Nedaří se nastavit LUKS klíč pro oddíl %1. @@ -1659,16 +1682,6 @@ Instalační program bude ukončen a všechny změny ztraceny. NetInstallPage - - - Name - Jméno - - - - Description - Popis - Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1680,7 +1693,7 @@ Instalační program bude ukončen a všechny změny ztraceny. Síťová instalace. (Vypnuto: Obdrženy neplatné údaje skupin) - + Network Installation. (Disabled: Incorrect configuration) Síťová instalace. (vypnuto: nesprávné nastavení) @@ -1696,52 +1709,52 @@ Instalační program bude ukončen a všechny změny ztraceny. Office software - + Aplikace pro kancelář Office package - + Balíček s kancelářským software Browser software - + Aplikace pro procházení webu Browser package - + Balíček s webovým prohlížečem Web browser - + Webový prohlížeč Kernel - + Jádro systému Services - + Služby Login - + Uživatelské jméno Desktop - + Desktop Applications - + Aplikace @@ -1749,7 +1762,7 @@ Instalační program bude ukončen a všechny změny ztraceny. Notes - + Poznámky @@ -2026,7 +2039,7 @@ Instalační program bude ukončen a všechny změny ztraceny. Neznámá chyba - + Password is empty Heslo není vyplněné @@ -2072,6 +2085,19 @@ Instalační program bude ukončen a všechny změny ztraceny. Balíčky + + PackageModel + + + Name + Název + + + + Description + Popis + + Page_Keyboard @@ -2234,34 +2260,34 @@ Instalační program bude ukončen a všechny změny ztraceny. PartitionModel - - + + Free Space Volné místo - - + + New partition Nový oddíl - + Name Název - + File System Souborový systém - + Mount Point Přípojný bod - + Size Velikost @@ -2329,17 +2355,17 @@ Instalační program bude ukončen a všechny změny ztraceny. Zavaděč systému &nainstalovat na: - + Are you sure you want to create a new partition table on %1? Opravdu chcete na %1 vytvořit novou tabulku oddílů? - + Can not create new partition Nedaří se vytvořit nový oddíl - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Tabulka oddílů na %1 už obsahuje %2 hlavních oddílů a proto už není možné přidat další. Odeberte jeden z hlavních oddílů a namísto něj vytvořte rozšířený oddíl. @@ -2449,7 +2475,7 @@ Instalační program bude ukončen a všechny změny ztraceny. There are no partitions to install on. - + Nejsou zde žádné oddíly na které by se dalo nainstalovat. @@ -2513,14 +2539,14 @@ Instalační program bude ukončen a všechny změny ztraceny. ProcessResult - + There was no output from the command. Příkaz neposkytl žádný výstup. - + Output: @@ -2529,52 +2555,52 @@ Výstup: - + External command crashed. Vnější příkaz byl neočekávaně ukončen. - + Command <i>%1</i> crashed. Příkaz <i>%1</i> byl neočekávaně ukončen. - + External command failed to start. Vnější příkaz se nepodařilo spustit. - + Command <i>%1</i> failed to start. Příkaz <i>%1</i> se nepodařilo spustit. - + Internal error when starting command. Vnitřní chyba při spouštění příkazu. - + Bad parameters for process job call. Chybné parametry volání úlohy procesu. - + External command failed to finish. Vnější příkaz se nepodařilo dokončit. - + Command <i>%1</i> failed to finish in %2 seconds. Příkaz <i>%1</i> se nepodařilo dokončit do %2 sekund. - + External command finished with errors. Vnější příkaz skončil s chybami. - + Command <i>%1</i> finished with exit code %2. Příkaz <i>%1</i> skončil s návratovým kódem %2. @@ -2593,22 +2619,22 @@ Výstup: Výchozí - + unknown neznámý - + extended rozšířený - + unformatted nenaformátovaný - + swap odkládací oddíl @@ -2662,6 +2688,14 @@ Výstup: Nepodařilo se vytvořit nový náhodný soubor <pre>%1</pre>. + + RemoveUserJob + + + Remove live user from target system + Odebrat uživatele živé relace z cílového systému + + RemoveVolumeGroupJob @@ -2689,140 +2723,153 @@ Výstup: Formulář - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Vyberte, kam nainstalovat %1.<br/><font color="red">Upozornění: </font>tímto smažete všechny soubory ve vybraném oddílu. - + The selected item does not appear to be a valid partition. Vybraná položka se nezdá být platným oddílem. - + %1 cannot be installed on empty space. Please select an existing partition. %1 nemůže být instalován na místo bez oddílu. Vyberte existující oddíl. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 nemůže být instalován na rozšířený oddíl. Vyberte existující primární nebo logický oddíl. - + %1 cannot be installed on this partition. %1 nemůže být instalován na tento oddíl. - + Data partition (%1) Datový oddíl (%1) - + Unknown system partition (%1) Neznámý systémový oddíl (%1) - + %1 system partition (%2) %1 systémový oddíl (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%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/>EFI systémový oddíl nenalezen. Vraťte se, zvolte ruční rozdělení jednotky, a nastavte %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 bude instalován na %2.<br/><font color="red">Upozornění: </font>všechna data v oddílu %2 budou ztracena. - + The EFI system partition at %1 will be used for starting %2. Pro zavedení %2 se využije EFI systémový oddíl %1. - + EFI system partition: EFI systémový oddíl: + + RequirementsModel + + + This program will ask you some questions and set up your installation + Tento program vám položí několik dotazů a na základě odpovědí nastaví instalaci + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + Tento program nesplňuje minimální požadavky pro instalaci. +Instalace nemůže pokračovat + + ResizeFSJob - + Resize Filesystem Job Úloha změny velikosti souborového systému - + Invalid configuration Neplatné nastavení - + The file-system resize job has an invalid configuration and will not run. Úloha změny velikosti souborového systému nemá platné nastavení a nebude spuštěna. - - + KPMCore not Available KPMCore není k dispozici - - + Calamares cannot start KPMCore for the file-system resize job. Kalamares nemůže spustit KPMCore pro úlohu změny velikosti souborového systému. - - - - - + + + + + Resize Failed Změna velikosti se nezdařila - + The filesystem %1 could not be found in this system, and cannot be resized. Souborový systém %1 nebyl na tomto systému nalezen a jeho velikost proto nemůže být změněna. - + The device %1 could not be found in this system, and cannot be resized. Zařízení %1 nebylo na tomto systému nalezeno a proto nemůže být jeho velikost změněna. - - + + The filesystem %1 cannot be resized. Velikost souborového systému %1 není možné změnit. - - + + The device %1 cannot be resized. Velikost zařízení %1 nelze měnit. - + The filesystem %1 must be resized, but cannot. Velikost souborového systému %1 je třeba změnit, ale není to možné. - + The device %1 must be resized, but cannot Velikost zařízení %1 je třeba změnit, ale není to možné @@ -2880,12 +2927,12 @@ Výstup: ResultsListDialog - + For best results, please ensure that this computer: Nejlepších výsledků se dosáhne, pokud tento počítač bude: - + System requirements Požadavky na systém @@ -2893,27 +2940,27 @@ Výstup: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup 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">Podrobnosti…</a> - + 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">Podrobnosti…</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. Počítač nesplňuje některé doporučené požadavky pro instalaci %1.<br/>Instalace může pokračovat, ale některé funkce mohou být vypnuty. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Počítač nesplňuje některé doporučené požadavky pro instalaci %1.<br/>Instalace může pokračovat, ale některé funkce mohou být vypnuty. - + This program will ask you some questions and set up %2 on your computer. Tento program vám položí několik dotazů, aby na základě odpovědí příslušně nainstaloval %2 na váš počítač. @@ -2934,17 +2981,17 @@ Výstup: SetHostNameJob - + Set hostname %1 Nastavit název počítače %1 - + Set hostname <strong>%1</strong>. Nastavit název počítače <strong>%1</strong>. - + Setting hostname %1. Nastavuje se název počítače %1. @@ -2994,82 +3041,82 @@ Výstup: SetPartFlagsJob - + Set flags on partition %1. Nastavit příznaky na oddílu %1. - + Set flags on %1MiB %2 partition. Nastavit příznaky na %1MiB %2 oddílu. - + Set flags on new partition. Nastavit příznaky na novém oddílu. - + Clear flags on partition <strong>%1</strong>. Vymazat příznaky z oddílu <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. Odstranit příznaky z %1MiB <strong>%2</strong> oddílu. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. Označit %1MiB <strong>%2</strong> oddíl jako <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. Odstraňování příznaků na %1MiB <strong>%2</strong> oddílu. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. Nastavování příznaků <strong>%3</strong> na %1MiB <strong>%2</strong> oddílu. - + Clear flags on new partition. Vymazat příznaky z nového oddílu. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Nastavit příznak oddílu <strong>%1</strong> jako <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Nastavit příznak <strong>%1</strong> na novém oddílu. - + Clearing flags on partition <strong>%1</strong>. Mazání příznaků oddílu <strong>%1</strong>. - + Clearing flags on new partition. Mazání příznaků na novém oddílu. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Nastavování příznaků <strong>%2</strong> na oddílu <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Nastavování příznaků <strong>%1</strong> na novém oddílu. - + The installer failed to set flags on partition %1. Instalátoru se nepodařilo nastavit příznak na oddílu %1 @@ -3299,47 +3346,47 @@ Výstup: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>Pokud bude tento počítač používat více lidí, můžete přidat uživatelské účty po dokončení instalace.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>Pokud bude tento počítač používat více lidí, můžete přidat uživatelské účty po dokončení instalace.</small> - + Your username is too long. Vaše uživatelské jméno je příliš dlouhé. - + Your username must start with a lowercase letter or underscore. Je třeba, aby uživatelské jméno začínalo na malé písmeno nebo podtržítko. - + Only lowercase letters, numbers, underscore and hyphen are allowed. Je možné použít pouze malá písmena, číslice, podtržítko a spojovník. - + Only letters, numbers, underscore and hyphen are allowed. Je možné použít pouze písmena, číslice, podtržítko a spojovník. - + Your hostname is too short. Název stroje je příliš krátký. - + Your hostname is too long. Název stroje je příliš dlouhý. - + Your passwords do not match! Zadání hesla se neshodují! @@ -3477,42 +3524,42 @@ Výstup: &O projektu - + <h1>Welcome to the %1 installer.</h1> <h1>Vítejte v instalátoru %1.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Vítejte v Calamares, instalačním programu (nejen) pro %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>Vítejte v Calamares, instalačním programu (nejen) pro %1.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>Vítejte v instalátoru pro %1.</h1> - + About %1 setup O nastavování %1 - + About %1 installer O instalátoru %1. - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Poděkování <a href="https://calamares.io/team/">týmu Calamares</a> a <a href="https://www.transifex.com/calamares/calamares/">týmu překladatelů Calamares</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> vývoj je sponzorován <br/><a href="http://www.blue-systems.com/">Blue Systems</a> – Liberating Software. - + %1 support %1 podpora @@ -3520,7 +3567,7 @@ Výstup: WelcomeQmlViewStep - + Welcome Vítejte @@ -3528,7 +3575,7 @@ Výstup: WelcomeViewStep - + Welcome Vítejte @@ -3536,10 +3583,11 @@ Výstup: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> - + <h3>%1</h3> + <p>Toto je příklad poznámek k vydání.</p> @@ -3547,32 +3595,32 @@ Výstup: <h3>%1 <quote>%2</quote></h3> - + <h3>%1 <quote>%2</quote></h3> About - + O projektu Support - + Podpora Known issues - + Známé problémy Release notes - + Poznámky k vydání Donate - + Podpořit vývoj darem diff --git a/lang/calamares_da.ts b/lang/calamares_da.ts index 7ec813813..cbf565aa0 100644 --- a/lang/calamares_da.ts +++ b/lang/calamares_da.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Master Boot Record af %1 - + Boot Partition Bootpartition @@ -42,7 +42,7 @@ Installér ikke en bootloader - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Færdig @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Kører %1-handling. - + Bad working directory path Ugyldig arbejdsmappesti - + Working directory %1 for python job %2 is not readable. Arbejdsmappen %1 til python-jobbet %2 er ikke læsbar. - + Bad main script file Ugyldig primær skriptfil - + Main script file %1 for python job %2 is not readable. Primær skriptfil %1 til python-jobbet %2 er ikke læsbar. - + Boost.Python error in job "%1". Boost.Python-fejl i job "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... Indlæser ... - + QML Step <i>%1</i>. QML-trin <i>%1</i>. - + Loading failed. Indlæsning mislykkedes. @@ -253,175 +253,175 @@ Calamares::ViewManager - + &Back &Tilbage - + &Next &Næste - + &Cancel &Annullér - + Cancel setup without changing the system. Annullér opsætningen uden at ændre systemet. - + Cancel installation without changing the system. Annullér installation uden at ændre systemet. - + Setup Failed Opsætningen mislykkedes - + Would you like to paste the install log to the web? Vil du indsætte installationsloggen på webbet? - + Install Log Paste URL Indsættelses-URL for installationslog - + The upload was unsuccessful. No web-paste was done. Uploaden lykkedes ikke. Der blev ikke foretaget nogen webindsættelse. - + Calamares Initialization Failed Initiering af Calamares mislykkedes - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 kan ikke installeres. Calamares kunne ikke indlæse alle de konfigurerede moduler. Det er et problem med den måde Calamares bruges på af distributionen. - + <br/>The following modules could not be loaded: <br/>Følgende moduler kunne ikke indlæses: - + Continue with installation? Fortsæt installationen? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> %1-opsætningsprogrammet er ved at foretage ændringer til din disk for at opsætte %2.<br/><strong>Det vil ikke være muligt at fortryde ændringerne.</strong> - + &Set up now &Sæt op nu - + &Set up &Sæt op - + &Install &Installér - + Setup is complete. Close the setup program. Opsætningen er fuldført. Luk opsætningsprogrammet. - + Cancel setup? Annullér opsætningen? - + Cancel installation? Annullér installationen? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. Vil du virkelig annullere den igangværende opsætningsproces? Opsætningsprogrammet vil stoppe og alle ændringer vil gå tabt. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Vil du virkelig annullere den igangværende installationsproces? Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. - - + + &Yes &Ja - - + + &No &Nej - + &Close &Luk - + Continue with setup? Fortsæt med opsætningen? - + 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 foretage ændringer til din disk for at installere %2.<br/><strong>Det vil ikke være muligt at fortryde ændringerne.</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 @@ -429,22 +429,22 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. CalamaresPython::Helper - + Unknown exception type Ukendt undtagelsestype - + unparseable Python error Python-fejl som ikke kan fortolkes - + unparseable Python traceback Python-traceback som ikke kan fortolkes - + Unfetchable Python error. Python-fejl som ikke kan hentes. @@ -462,17 +462,17 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. CalamaresWindow - + %1 Setup Program %1-opsætningsprogram - + %1 Installer %1-installationsprogram - + Show debug information Vis fejlretningsinformation @@ -480,7 +480,7 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. CheckerContainer - + Gathering system information... Indsamler systeminformation ... @@ -493,134 +493,134 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.Formular - + After: Efter: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Manuel partitionering</strong><br/>Du kan selv oprette og ændre størrelse på partitioner. - + Boot loader location: Placering af bootloader: - + Select storage de&vice: Vælg lageren&hed: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 vil blive skrumpet til %2 MiB og en ny %3 MiB partition vil blive oprettet for %4. - + <strong>Select a partition to install on</strong> <strong>Vælg en partition at installere på</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. En EFI-partition blev ikke fundet på systemet. Gå venligst tilbage og brug manuel partitionering til at opsætte %1. - + The EFI system partition at %1 will be used for starting %2. EFI-systempartitionen ved %1 vil blive brugt til at starte %2. - + EFI system partition: EFI-systempartition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Lagerenheden ser ikke ud til at indeholde et styresystem. Hvad ønsker du at gøre?<br/>Du vil få mulighed for at se og bekræfte dine valg før der sker ændringer til lagerenheden. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Slet disk</strong><br/>Det vil <font color="red">slette</font> alt data på den valgte lagerenhed. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Lagerenheden har %1 på sig. Hvad ønsker du at gøre?<br/>Du vil få mulighed for at se og bekræfte dine valg før det sker ændringer til lagerenheden. - + No Swap Ingen swap - + Reuse Swap Genbrug swap - + Swap (no Hibernate) Swap (ingen dvale) - + Swap (with Hibernate) Swap (med dvale) - + Swap to file Swap til fil - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Installér ved siden af</strong><br/>Installationsprogrammet vil mindske en partition for at gøre plads til %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Erstat en partition</strong><br/>Erstatter en partition med %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Lagerenheden indeholder allerede et styresystem. Hvad ønsker du at gøre?<br/>Du vil få mulighed for at se og bekræfte dine valg før der sker ændringer til lagerenheden. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Lagerenheden indeholder flere styresystemer. Hvad ønsker du at gøre?<br/>Du vil få mulighed for at se og bekræfte dine valg før der sker ændringer til lagerenheden. @@ -628,17 +628,17 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. ClearMountsJob - + Clear mounts for partitioning operations on %1 Ryd monteringspunkter for partitioneringshandlinger på %1 - + Clearing mounts for partitioning operations on %1. Rydder monteringspunkter for partitioneringshandlinger på %1. - + Cleared all mounts for %1 Ryddede alle monteringspunkter til %1 @@ -685,10 +685,33 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.Kommandoen har brug for at kende brugerens navn, men der er ikke defineret noget brugernavn. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>Velkommen til Calamares-opsætningsprogrammet til %1.</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>Velkommen til %1-opsætningen.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Velkommen til Calamares-installationsprogrammet for %1.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Velkommen til %1-installationsprogrammet.</h1> + + ContextualProcessJob - + Contextual Processes Job Kontekstuelt procesjob @@ -746,27 +769,27 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.&Størrelse: - + En&crypt Kryp&tér - + Logical Logisk - + Primary Primær - + GPT GPT - + Mountpoint already in use. Please select another one. Monteringspunktet er allerede i brug. Vælg venligst et andet. @@ -774,22 +797,22 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. Opret en ny %2 MiB partition på %4 (%3) med %1-filsystem. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Opret en ny <strong>%2 MiB</strong> partition på <strong>%4</strong> (%3) med <strong>%1</strong>-filsystem. - + Creating new %1 partition on %2. Opretter ny %1-partition på %2. - + The installer failed to create partition on disk '%1'. Installationsprogrammet kunne ikke oprette partition på disk '%1'. @@ -825,22 +848,22 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. CreatePartitionTableJob - + Create new %1 partition table on %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). - + 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. @@ -992,13 +1015,13 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1111,7 +1134,7 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.Bekræft adgangskode - + Please enter the same passphrase in both boxes. Indtast venligst samme adgangskode i begge bokse. @@ -1119,37 +1142,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>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. @@ -1233,22 +1256,22 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. Formatér partition %1 (filsystem: %2, størrelse: %3 MiB) på %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. Formatér <strong>%3 MiB</strong> partition <strong>%1</strong> med <strong>%2</strong>-filsystem. - + Formatting partition %1 with file system %2. Formatterer partition %1 med %2-filsystem. - + The installer failed to format partition %1 on disk '%2'. Installationsprogrammet kunne ikke formatere partition %1 på disk '%2'. @@ -1655,16 +1678,6 @@ 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) @@ -1676,7 +1689,7 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.Netværksinstallation. (Deaktiveret: Modtog ugyldige gruppers data) - + Network Installation. (Disabled: Incorrect configuration) Netværksinstallation. (deaktiveret: forkert konfiguration) @@ -2022,7 +2035,7 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.Ukendt fejl - + Password is empty Adgangskoden er tom @@ -2068,6 +2081,19 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.Pakker + + PackageModel + + + Name + Navn + + + + Description + Beskrivelse + + Page_Keyboard @@ -2230,34 +2256,34 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. PartitionModel - - + + Free Space Ledig plads - - + + New partition Ny partition - + Name Navn - + File System Filsystem - + Mount Point Monteringspunkt - + Size Størrelse @@ -2325,17 +2351,17 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.I&nstallér bootloader på: - + Are you sure you want to create a new partition table on %1? Er du sikker på, at du vil oprette en ny partitionstabel på %1? - + Can not create new partition Kan ikke oprette ny partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Partitionstabellen på %1 har allerede %2 primære partitioner, og der kan ikke tilføjes flere. Fjern venligst en primær partition og tilføj i stedet en udvidet partition. @@ -2509,14 +2535,14 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. ProcessResult - + There was no output from the command. Der var ikke nogen output fra kommandoen. - + Output: @@ -2525,52 +2551,52 @@ Output: - + External command crashed. Ekstern kommando holdt op med at virke. - + Command <i>%1</i> crashed. Kommandoen <i>%1</i> holdte op med at virke. - + External command failed to start. Ekstern kommando kunne ikke starte. - + Command <i>%1</i> failed to start. Kommandoen <i>%1</i> kunne ikke starte. - + Internal error when starting command. Intern fejl ved start af kommando. - + Bad parameters for process job call. Ugyldige parametre til kald af procesjob. - + External command failed to finish. Ekstern kommando blev ikke færdig. - + Command <i>%1</i> failed to finish in %2 seconds. Kommandoen <i>%1</i> blev ikke færdig på %2 sekunder. - + External command finished with errors. Ekstern kommando blev færdig med fejl. - + Command <i>%1</i> finished with exit code %2. Kommandoen <i>%1</i> blev færdig med afslutningskoden %2. @@ -2589,22 +2615,22 @@ Output: Standard - + unknown ukendt - + extended udvidet - + unformatted uformatteret - + swap swap @@ -2658,6 +2684,14 @@ Output: Kunne ikke oprette den tilfældige fil <pre>%1</pre>. + + RemoveUserJob + + + Remove live user from target system + Fjern livebruger fra målsystemet + + RemoveVolumeGroupJob @@ -2685,140 +2719,153 @@ Output: Formular - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Vælg hvor %1 skal installeres.<br/><font color="red">Advarsel: </font>Det vil slette alle filer på den valgte partition. - + The selected item does not appear to be a valid partition. Det valgte emne ser ikke ud til at være en gyldig partition. - + %1 cannot be installed on empty space. Please select an existing partition. %1 kan ikke installeres på tom plads. Vælg venligst en eksisterende partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 kan ikke installeres på en udvidet partition. Vælg venligst en eksisterende primær eller logisk partition. - + %1 cannot be installed on this partition. %1 kan ikke installeres på denne partition. - + Data partition (%1) Datapartition (%1) - + Unknown system partition (%1) Ukendt systempartition (%1) - + %1 system partition (%2) %1-systempartition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>Partitionen %1 er for lille til %2. Vælg venligst en partition med mindst %3 GiB plads. - + <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/>En EFI-systempartition kunne ikke findes på systemet. Gå venligst tilbage og brug manuel partitionering til at opsætte %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 vil blive installeret på %2.<br/><font color="red">Advarsel: </font>Al data på partition %2 vil gå tabt. - + 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: + + RequirementsModel + + + This program will ask you some questions and set up your installation + Programmet vil stille dig nogle spørgsmål og opsætte din installation + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + Programmet lever ikke op til minimumskravene for installation. +Installationen kan ikke fortsætte + + ResizeFSJob - + Resize Filesystem Job Job til ændring af størrelse - + Invalid configuration Ugyldig konfiguration - + The file-system resize job has an invalid configuration and will not run. Filsystemets job til ændring af størrelse har en ugyldig konfiguration og kan ikke køre. - - + KPMCore not Available KPMCore ikke tilgængelig - - + Calamares cannot start KPMCore for the file-system resize job. Calamares kan ikke starte KPMCore for jobbet til ændring af størrelse. - - - - - + + + + + Resize Failed Ændring af størrelse mislykkedes - + The filesystem %1 could not be found in this system, and cannot be resized. Filsystemet %1 kunne ikke findes i systemet, og kan ikke ændres i størrelse. - + The device %1 could not be found in this system, and cannot be resized. Enheden %1 kunne ikke findes i systemet, og kan ikke ændres i størrelse. - - + + The filesystem %1 cannot be resized. Filsystemet størrelse %1 kan ikke ændres. - - + + The device %1 cannot be resized. Enheden %1 kan ikke ændres i størrelse. - + The filesystem %1 must be resized, but cannot. Filsystemet %1 skal ændres i størrelse, men er ikke i stand til det. - + The device %1 must be resized, but cannot Enheden størrelse %1 skal ændres, men er ikke i stand til det. @@ -2876,12 +2923,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: For at få det bedste resultat sørg venligst for at computeren: - + System requirements Systemkrav @@ -2889,27 +2936,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> Computeren imødekommer ikke minimumsystemkravene for at opsætte %1.<br/>Opsætningen kan ikke fortsætte. <a href="#details">Detaljer ...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Computeren imødekommer ikke minimumsystemkravene for at installere %1.<br/>Installationen kan ikke fortsætte. <a href="#details">Detaljer ...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. Computeren imødekommer ikke nogle af de anbefalede systemkrav for at opsætte %1.<br/>Opsætningen kan fortsætte, men nogle funktionaliteter kan være deaktiveret. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Computeren imødekommer ikke nogle af de anbefalede systemkrav for at installere %1.<br/>Installationen kan fortsætte, men nogle funktionaliteter kan være deaktiveret. - + This program will ask you some questions and set up %2 on your computer. Programmet vil stille dig nogle spørgsmål og opsætte %2 på din computer. @@ -2930,17 +2977,17 @@ Output: SetHostNameJob - + Set hostname %1 Sæt værtsnavn %1 - + Set hostname <strong>%1</strong>. Sæt værtsnavn <strong>%1</strong>. - + Setting hostname %1. Sætter værtsnavn %1. @@ -2990,82 +3037,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. Sæt flag på partition %1. - + Set flags on %1MiB %2 partition. Sæt flag på %1 MiB %2 partition. - + Set flags on new partition. Sæt flag på ny partition. - + Clear flags on partition <strong>%1</strong>. Ryd flag på partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. Ryd flag på %1 MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. Flag %1 MiB <strong>%2</strong> partition som <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. Rydder flag på %1 MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. Sætter flag <strong>%3</strong> på %1 MiB <strong>%2</strong> partition. - + Clear flags on new partition. Ryd flag på ny partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Flag partition <strong>%1</strong> som <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Flag ny partition som <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Rydder flag på partition <strong>%1</strong>. - + Clearing flags on new partition. Rydder flag på ny partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Sætter flag <strong>%2</strong> på partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Sætter flag <strong>%1</strong> på ny partition. - + The installer failed to set flags on partition %1. Installationsprogrammet kunne ikke sætte flag på partition %1. @@ -3295,47 +3342,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>Hvis mere end én person bruger computeren, kan du oprette flere konti efter opsætningen.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>Hvis mere end én person bruger computeren, kan du oprette flere konti efter installationen.</small> - + Your username is too long. Dit brugernavn er for langt. - + Your username must start with a lowercase letter or underscore. Dit brugernavn skal begynde med et bogstav med småt eller understregning. - + Only lowercase letters, numbers, underscore and hyphen are allowed. Det er kun tilladt at bruge bogstaver med småt, tal, understregning og bindestreg. - + Only letters, numbers, underscore and hyphen are allowed. Det er kun tilladt at bruge bogstaver, tal, understregning og bindestreg. - + Your hostname is too short. Dit værtsnavn er for kort. - + Your hostname is too long. Dit værtsnavn er for langt. - + Your passwords do not match! Dine adgangskoder er ikke ens! @@ -3473,42 +3520,42 @@ Output: &Om - + <h1>Welcome to the %1 installer.</h1> <h1>Velkommen til %1-installationsprogrammet.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Velkommen til Calamares-installationsprogrammet for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>Velkommen til Calamares-opsætningsprogrammet til %1.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>Velkommen til %1-opsætningen.</h1> - + About %1 setup Om %1-opsætningen - + About %1 installer Om %1-installationsprogrammet - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <h1>%1</h1><br/><strong>%2<br/>til %3</strong><br/><br/>Ophavsret 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Ophavsret 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Tak til <a href="https://calamares.io/team/">Calamares-teamet</a> og <a href="https://www.transifex.com/calamares/calamares/">Calamares oversætter-teamet</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> udvikling er sponsoreret af <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 support @@ -3516,7 +3563,7 @@ Output: WelcomeQmlViewStep - + Welcome Velkommen @@ -3524,7 +3571,7 @@ Output: WelcomeViewStep - + Welcome Velkommen @@ -3532,7 +3579,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> <h3>%1</h3> diff --git a/lang/calamares_de.ts b/lang/calamares_de.ts index c05d247a0..8a11e0ae3 100644 --- a/lang/calamares_de.ts +++ b/lang/calamares_de.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Master Boot Record von %1 - + Boot Partition Boot-Partition @@ -42,7 +42,7 @@ Installiere keinen Bootloader - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Fertig @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Operation %1 wird ausgeführt. - + Bad working directory path Fehlerhafter Arbeitsverzeichnis-Pfad - + Working directory %1 for python job %2 is not readable. Arbeitsverzeichnis %1 für Python-Job %2 ist nicht lesbar. - + Bad main script file Fehlerhaftes Hauptskript - + Main script file %1 for python job %2 is not readable. Hauptskript-Datei %1 für Python-Job %2 ist nicht lesbar. - + Boost.Python error in job "%1". Boost.Python-Fehler in Job "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... Lade ... - + QML Step <i>%1</i>. QML Schritt <i>%1</i>. - + Loading failed. Laden fehlgeschlagen. @@ -253,175 +253,175 @@ Calamares::ViewManager - + &Back &Zurück - + &Next &Weiter - + &Cancel &Abbrechen - + Cancel setup without changing the system. Installation abbrechen ohne das System zu verändern. - + Cancel installation without changing the system. Installation abbrechen, ohne das System zu verändern. - + Setup Failed Setup fehlgeschlagen - + Would you like to paste the install log to the web? Möchten Sie das Installationsprotokoll an eine Internetadresse senden? - + Install Log Paste URL Internetadresse für das Senden des Installationsprotokolls - + The upload was unsuccessful. No web-paste was done. Das Hochladen ist fehlgeschlagen. Es wurde nichts an eine Internetadresse gesendet. - + Calamares Initialization Failed Initialisierung von Calamares fehlgeschlagen - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 kann nicht installiert werden. Calamares war nicht in der Lage, alle konfigurierten Module zu laden. Dieses Problem hängt mit der Art und Weise zusammen, wie Calamares von der jeweiligen Distribution eingesetzt wird. - + <br/>The following modules could not be loaded: <br/>Die folgenden Module konnten nicht geladen werden: - + Continue with installation? Installation fortsetzen? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> Das %1 Installationsprogramm ist dabei, Änderungen an Ihrer Festplatte vorzunehmen, um %2 einzurichten.<br/><strong> Sie werden diese Änderungen nicht rückgängig machen können.</strong> - + &Set up now &Jetzt einrichten - + &Set up &Einrichten - + &Install &Installieren - + Setup is complete. Close the setup program. Setup ist abgeschlossen. Schließe das Installationsprogramm. - + Cancel setup? Installation abbrechen? - + Cancel installation? Installation abbrechen? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. Wollen Sie die Installation wirklich abbrechen? Dadurch wird das Installationsprogramm beendet und alle Änderungen gehen verloren. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Wollen Sie wirklich die aktuelle Installation abbrechen? Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. - - + + &Yes &Ja - - + + &No &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 @@ -429,22 +429,22 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. CalamaresPython::Helper - + Unknown exception type Unbekannter Ausnahmefehler - + unparseable Python error Nicht analysierbarer Python-Fehler - + unparseable Python traceback Nicht analysierbarer Python-Traceback - + Unfetchable Python error. Nicht zuzuordnender Python-Fehler @@ -462,17 +462,17 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. CalamaresWindow - + %1 Setup Program %1 Installationsprogramm - + %1 Installer %1 Installationsprogramm - + Show debug information Debug-Information anzeigen @@ -480,7 +480,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. CheckerContainer - + Gathering system information... Sammle Systeminformationen... @@ -493,134 +493,134 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. Form - + After: Nachher: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Manuelle Partitionierung</strong><br/>Sie können Partitionen eigenhändig erstellen oder in der Grösse verändern. - + Boot loader location: Installationsziel des Bootloaders: - + Select storage de&vice: Speichermedium auswählen - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 wird auf %2MiB verkleinert und eine neue Partition mit einer Größe von %3MiB wird für %4 erstellt werden. - + <strong>Select a partition to install on</strong> <strong>Wählen Sie eine Partition für die Installation</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Es wurde keine EFI-Systempartition auf diesem System gefunden. Bitte gehen Sie zurück und nutzen Sie die manuelle Partitionierung für das Einrichten von %1. - + The EFI system partition at %1 will be used for starting %2. Die EFI-Systempartition %1 wird benutzt, um %2 zu starten. - + EFI system partition: EFI-Systempartition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Auf diesem Speichermedium scheint kein Betriebssystem installiert zu sein. Was möchten Sie tun?<br/>Sie können Ihre Auswahl überprüfen und bestätigen, bevor Änderungen auf diesem Speichermedium vorgenommen werden. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Festplatte löschen</strong><br/>Dies wird alle vorhandenen Daten auf dem gewählten Speichermedium <font color="red">löschen</font>. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Auf diesem Speichermedium ist %1 installiert. Was möchten Sie tun?<br/>Sie können Ihre Auswahl überprüfen und bestätigen, bevor Änderungen an dem Speichermedium vorgenommen werden. - + No Swap Kein Swap - + Reuse Swap Swap wiederverwenden - + Swap (no Hibernate) Swap (ohne Ruhezustand) - + Swap (with Hibernate) Swap (mit Ruhezustand) - + Swap to file Auslagerungsdatei verwenden - - - - + + + + <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. @@ -628,17 +628,17 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. ClearMountsJob - + Clear mounts for partitioning operations on %1 Leere Mount-Points für Partitioning-Operation auf %1 - + Clearing mounts for partitioning operations on %1. Löse eingehängte Laufwerke für die Partitionierung von %1 - + Cleared all mounts for %1 Alle Mount-Points für %1 geleert @@ -685,10 +685,33 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. Dieser Befehl benötigt den Benutzernamen, jedoch ist kein Benutzername definiert. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>Willkommen bei Calamares, dem Installationsprogramm für %1.</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>Willkommen zur Installation von %1.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Willkommen beim Calamares-Installationsprogramm für %1. + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Willkommen im %1 Installationsprogramm.</h1> + + ContextualProcessJob - + Contextual Processes Job Job für kontextuale Prozesse @@ -746,27 +769,27 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. Grö&sse: - + En&crypt Verschlüsseln - + Logical Logisch - + Primary Primär - + GPT GPT - + Mountpoint already in use. Please select another one. Dieser Einhängepunkt wird schon benuztzt. Bitte wählen Sie einen anderen. @@ -774,22 +797,22 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. Erstelle eine neue Partition mit einer Größe von %2MiB auf %4 (%3) mit dem Dateisystem %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Erstelle eine neue Partition mit einer Größe von <strong>%2MiB</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'. @@ -825,22 +848,22 @@ 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. @@ -992,13 +1015,13 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1111,7 +1134,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. Passwort wiederholen - + Please enter the same passphrase in both boxes. Bitte tragen Sie dasselbe Passwort in beide Felder ein. @@ -1119,37 +1142,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. @@ -1233,22 +1256,22 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. Formatiere Partition %1 (Dateisystem: %2, Größe: %3 MiB) auf %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. Formatiere <strong>%3MiB</strong> Partition <strong>%1</strong> mit dem Dateisystem <strong>%2</strong>. - + Formatting partition %1 with file system %2. Formatiere Partition %1 mit Dateisystem %2. - + The installer failed to format partition %1 on disk '%2'. Das Formatieren von Partition %1 auf Datenträger '%2' ist fehlgeschlagen. @@ -1655,16 +1678,6 @@ 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) @@ -1676,7 +1689,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. Netwerk-Installation. (Deaktiviert: Ungültige Gruppen-Daten eingegeben) - + Network Installation. (Disabled: Incorrect configuration) Netzwerk-Installation. (Deaktiviert: Ungültige Konfiguration) @@ -2022,7 +2035,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. Unbekannter Fehler - + Password is empty Passwort nicht vergeben @@ -2068,6 +2081,19 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. Pakete + + PackageModel + + + Name + Name + + + + Description + Beschreibung + + Page_Keyboard @@ -2230,34 +2256,34 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. PartitionModel - - + + Free Space Freier Platz - - + + New partition Neue Partition - + Name Name - + File System Dateisystem - + Mount Point Einhängepunkt - + Size Grösse @@ -2325,17 +2351,17 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. I&nstalliere Bootloader auf: - + Are you sure you want to create a new partition table on %1? Sind Sie sicher, dass Sie eine neue Partitionstabelle auf %1 erstellen möchten? - + Can not create new partition Neue Partition kann nicht erstellt werden - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Die Partitionstabelle auf %1 hat bereits %2 primäre Partitionen und weitere können nicht hinzugefügt werden. Bitte entfernen Sie eine primäre Partition und fügen Sie stattdessen eine erweiterte Partition hinzu. @@ -2509,14 +2535,14 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. ProcessResult - + There was no output from the command. Dieser Befehl hat keine Ausgabe erzeugt. - + Output: @@ -2525,52 +2551,52 @@ Ausgabe: - + External command crashed. Externes Programm abgestürzt. - + Command <i>%1</i> crashed. Programm <i>%1</i> abgestürzt. - + External command failed to start. Externes Programm konnte nicht gestartet werden. - + Command <i>%1</i> failed to start. Das Programm <i>%1</i> konnte nicht gestartet werden. - + Internal error when starting command. Interner Fehler beim Starten des Programms. - + Bad parameters for process job call. Ungültige Parameter für Prozessaufruf. - + External command failed to finish. Externes Programm konnte nicht abgeschlossen werden. - + Command <i>%1</i> failed to finish in %2 seconds. Programm <i>%1</i> konnte nicht innerhalb von %2 Sekunden abgeschlossen werden. - + External command finished with errors. Externes Programm mit Fehlern beendet. - + Command <i>%1</i> finished with exit code %2. Befehl <i>%1</i> beendet mit Exit-Code %2. @@ -2589,22 +2615,22 @@ Ausgabe: Standard - + unknown unbekannt - + extended erweitert - + unformatted unformatiert - + swap Swap @@ -2658,6 +2684,14 @@ Ausgabe: Die neue Zufallsdatei <pre>%1</pre> konnte nicht erstellt werden. + + RemoveUserJob + + + Remove live user from target system + Entferne Live-Benutzer aus dem Zielsystem + + RemoveVolumeGroupJob @@ -2685,140 +2719,152 @@ Ausgabe: Form - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Wählen Sie den Installationsort für %1.<br/><font color="red">Warnung: </font>Dies wird alle Daten auf der ausgewählten Partition löschen. - + The selected item does not appear to be a valid partition. Die aktuelle Auswahl scheint keine gültige Partition zu sein. - + %1 cannot be installed on empty space. Please select an existing partition. %1 kann nicht in einem unpartitionierten Bereich installiert werden. Bitte wählen Sie eine existierende Partition aus. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 kann nicht auf einer erweiterten Partition installiert werden. Bitte wählen Sie eine primäre oder logische Partition aus. - + %1 cannot be installed on this partition. %1 kann auf dieser Partition nicht installiert werden. - + Data partition (%1) Datenpartition (%1) - + Unknown system partition (%1) Unbekannte Systempartition (%1) - + %1 system partition (%2) %1 Systempartition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>Die Partition %1 ist zu klein für %2. Bitte wählen Sie eine Partition mit einer Kapazität von mindestens %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/>Es wurde keine EFI-Systempartition auf diesem System gefunden. Bitte gehen Sie zurück, und nutzen Sie die manuelle Partitionierung, um %1 aufzusetzen. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 wird installiert auf %2.<br/><font color="red">Warnung: </font> Alle Daten auf der Partition %2 werden gelöscht. - + The EFI system partition at %1 will be used for starting %2. Die EFI-Systempartition auf %1 wird benutzt, um %2 zu starten. - + EFI system partition: EFI-Systempartition: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job Auftrag zur Änderung der Dateisystemgröße - + Invalid configuration Ungültige Konfiguration - + The file-system resize job has an invalid configuration and will not run. Die Aufgabe zur Änderung der Größe des Dateisystems enthält eine ungültige Konfiguration und wird nicht ausgeführt. - - + KPMCore not Available KPMCore ist nicht verfügbar - - + Calamares cannot start KPMCore for the file-system resize job. Calamares kann KPMCore zur Änderung der Dateisystemgröße nicht starten. - - - - - + + + + + Resize Failed Größenänderung ist fehlgeschlagen. - + The filesystem %1 could not be found in this system, and cannot be resized. Das Dateisystem %1 konnte auf diesem System weder gefunden noch in der Größe verändert werden. - + The device %1 could not be found in this system, and cannot be resized. Das Gerät %1 konnte auf diesem System weder gefunden noch in der Größe verändert werden. - - + + The filesystem %1 cannot be resized. Die Größe des Dateisystems %1 kann nicht geändert werden. - - + + The device %1 cannot be resized. Das Gerät %1 kann nicht in seiner Größe verändert werden. - + The filesystem %1 must be resized, but cannot. Die Größe des Dateisystems %1 muss geändert werden, dies ist aber nicht möglich. - + The device %1 must be resized, but cannot Das Gerät %1 muss in seiner Größe verändert werden, dies ist aber nicht möglich. @@ -2876,12 +2922,12 @@ Ausgabe: ResultsListDialog - + For best results, please ensure that this computer: Für das beste Ergebnis stellen Sie bitte sicher, dass dieser Computer: - + System requirements Systemanforderungen @@ -2889,27 +2935,27 @@ Ausgabe: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> Dieser Computer erfüllt nicht die Mindestvoraussetzungen für die Installation von %1.<br/>Die Installation kann nicht fortgesetzt werden. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Dieser Computer erfüllt nicht die Mindestvoraussetzungen für die Installation von %1.<br/>Die Installation kann nicht fortgesetzt werden. <a href="#details">Details...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. Dieser Computer erfüllt nicht alle empfohlenen Voraussetzungen für die Installation von %1.<br/>Die Installation kann fortgesetzt werden, aber es werden eventuell nicht alle Funktionen verfügbar sein. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Dieser Computer erfüllt nicht alle empfohlenen Voraussetzungen für die Installation von %1.<br/>Die Installation kann fortgesetzt werden, aber es werden eventuell nicht alle Funktionen verfügbar sein. - + This program will ask you some questions and set up %2 on your computer. Dieses Programm wird Ihnen einige Fragen stellen, um %2 auf Ihrem Computer zu installieren. @@ -2930,17 +2976,17 @@ Ausgabe: SetHostNameJob - + Set hostname %1 Setze Computername auf %1 - + Set hostname <strong>%1</strong>. Setze Computernamen <strong>%1</strong>. - + Setting hostname %1. Setze Computernamen %1. @@ -2990,82 +3036,82 @@ Ausgabe: SetPartFlagsJob - + Set flags on partition %1. Setze Markierungen für Partition %1. - + Set flags on %1MiB %2 partition. Setze Markierungen für %1MiB %2 Partition. - + Set flags on new partition. Setze Markierungen für neue Partition. - + Clear flags on partition <strong>%1</strong>. Markierungen für Partition <strong>%1</strong> entfernen. - + Clear flags on %1MiB <strong>%2</strong> partition. Markierungen für %1MiB <strong>%2</strong> Partition entfernen. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. Markiere %1MiB <strong>%2</strong> Partition als <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. Lösche Markierungen für %1MiB <strong>%2</strong> Partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. Setze Markierungen <strong>%3</strong> für %1MiB <strong>%2</strong> Partition. - + Clear flags on new partition. Markierungen für neue Partition entfernen. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Partition markieren <strong>%1</strong> als <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Markiere neue Partition als <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Lösche Markierungen für Partition <strong>%1</strong>. - + Clearing flags on new partition. Lösche Markierungen für neue Partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Setze Markierungen <strong>%2</strong> für Partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Setze Markierungen <strong>%1</strong> für neue Partition. - + The installer failed to set flags on partition %1. Das Installationsprogramm konnte keine Markierungen für Partition %1 setzen. @@ -3295,47 +3341,47 @@ Ausgabe: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>Falls dieser Computer von mehr als einer Person benutzt werden soll, können weitere Benutzerkonten nach der Installation eingerichtet werden.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>Falls dieser Computer von mehr als einer Person benutzt werden soll, können weitere Benutzerkonten nach der Installation eingerichtet werden.</small> - + Your username is too long. Ihr Nutzername ist zu lang. - + Your username must start with a lowercase letter or underscore. Ihr Benutzername muss mit einem Kleinbuchstaben oder Unterstrich beginnen. - + Only lowercase letters, numbers, underscore and hyphen are allowed. Es sind nur Kleinbuchstaben, Zahlen, Unterstrich und Bindestrich erlaubt. - + Only letters, numbers, underscore and hyphen are allowed. Es sind nur Buchstaben, Zahlen, Unter- und Bindestriche erlaubt. - + Your hostname is too short. Ihr Computername ist zu kurz. - + Your hostname is too long. Ihr Computername ist zu lang. - + Your passwords do not match! Ihre Passwörter stimmen nicht überein! @@ -3473,42 +3519,42 @@ Ausgabe: &Über - + <h1>Welcome to the %1 installer.</h1> <h1>Willkommen im %1 Installationsprogramm.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Willkommen beim Calamares-Installationsprogramm für %1. - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>Willkommen bei Calamares, dem Installationsprogramm für %1.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>Willkommen zur Installation von %1.</h1> - + About %1 setup Über das Installationsprogramm %1 - + About %1 installer Über das %1 Installationsprogramm - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <h1>%1</h1><br/><strong>%2<br/>für %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Dank an <a href="https://calamares.io/team/">das Calamares-Team</a> und das <a href="https://www.transifex.com/calamares/calamares/">Calamares-Übersetzerteam</a>.<br/><br/>Die <a href="https://calamares.io/">Calamares</a>-Entwicklung wird unterstützt von<br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support Unterstützung für %1 @@ -3516,7 +3562,7 @@ Ausgabe: WelcomeQmlViewStep - + Welcome Willkommen @@ -3524,7 +3570,7 @@ Ausgabe: WelcomeViewStep - + Welcome Willkommen @@ -3532,7 +3578,7 @@ Ausgabe: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> <h3>%1</h3> diff --git a/lang/calamares_el.ts b/lang/calamares_el.ts index 73c565140..08b5f5e7f 100644 --- a/lang/calamares_el.ts +++ b/lang/calamares_el.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Master Boot Record του %1 - + Boot Partition Κατάτμηση εκκίνησης @@ -42,7 +42,7 @@ Να μην εγκατασταθεί το πρόγραμμα εκκίνησης - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Ολοκληρώθηκε @@ -177,32 +177,32 @@ Calamares::PythonJob - + 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". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,174 +253,174 @@ Calamares::ViewManager - + &Back &Προηγούμενο - + &Next &Επόμενο - + &Cancel &Ακύρωση - + Cancel setup without changing the system. - + Cancel installation without changing the system. Ακύρωση της εγκατάστασης χωρίς αλλαγές στο σύστημα. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed Η αρχικοποίηση του Calamares απέτυχε - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install &Εγκατάσταση - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? Ακύρωση της εγκατάστασης; - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Θέλετε πραγματικά να ακυρώσετε τη διαδικασία εγκατάστασης; Το πρόγραμμα εγκατάστασης θα τερματιστεί και όλες οι αλλαγές θα χαθούν. - - + + &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> Το πρόγραμμα εγκατάστασης %1 θα κάνει αλλαγές στον δίσκο για να εγκαταστήσετε το %2.<br/><strong>Δεν θα είστε σε θέση να αναιρέσετε τις αλλαγές.</strong> - + &Install now &Εγκατάσταση τώρα - + Go &back Μετάβαση &πίσω - + &Done &Ολοκληρώθηκε - + The installation is complete. Close the installer. Η εγκτάσταση ολοκληρώθηκε. Κλείστε το πρόγραμμα εγκατάστασης. - + Error Σφάλμα - + Installation Failed Η εγκατάσταση απέτυχε @@ -428,22 +428,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type Άγνωστος τύπος εξαίρεσης - + unparseable Python error Μη αναγνώσιμο σφάλμα Python - + unparseable Python traceback Μη αναγνώσιμη ανίχνευση Python - + Unfetchable Python error. Μη ανακτήσιµο σφάλμα Python. @@ -460,17 +460,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program - + %1 Installer Εφαρμογή εγκατάστασης του %1 - + Show debug information Εμφάνιση πληροφοριών απασφαλμάτωσης @@ -478,7 +478,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... Συλλογή πληροφοριών συστήματος... @@ -491,134 +491,134 @@ The installer will quit and all changes will be lost. Τύπος - + After: Μετά: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Χειροκίνητη τμηματοποίηση</strong><br/>Μπορείτε να δημιουργήσετε κατατμήσεις ή να αλλάξετε το μέγεθός τους μόνοι σας. - + Boot loader location: Τοποθεσία προγράμματος εκκίνησης: - + Select storage de&vice: Επιλέξτε συσκευή απ&οθήκευσης: - - - - + + + + Current: Τρέχον: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Επιλέξτε ένα διαμέρισμα για σμίκρυνση, και μετά σύρετε το κάτω τμήμα της μπάρας για αλλαγή του μεγέθους</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> <strong>Επιλέξτε διαμέρισμα για την εγκατάσταση</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Πουθενά στο σύστημα δεν μπορεί να ανιχθευθεί μία κατάτμηση EFI. Παρακαλώ επιστρέψτε πίσω και χρησιμοποιήστε τη χειροκίνητη τμηματοποίηση για την εγκατάσταση του %1. - + The EFI system partition at %1 will be used for starting %2. Η κατάτμηση συστήματος EFI στο %1 θα χρησιμοποιηθεί για την εκκίνηση του %2. - + EFI system partition: Κατάτμηση συστήματος EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Η συσκευή αποθήκευσης δεν φαίνεται να διαθέτει κάποιο λειτουργικό σύστημα. Τί θα ήθελες να κάνεις;<br/>Θα έχεις την δυνατότητα να επιβεβαιώσεις και αναθεωρήσεις τις αλλαγές πριν γίνει οποιαδήποτε αλλαγή στην συσκευή αποθήκευσης. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Διαγραφή του δίσκου</strong><br/>Αυτό θα <font color="red">διαγράψει</font> όλα τα αρχεία στην επιλεγμένη συσκευή αποθήκευσης. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Εγκατάσταση σε επαλληλία</strong><br/>Η εγκατάσταση θα συρρικνώσει μία κατάτμηση για να κάνει χώρο για το %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Αντικατάσταση μίας κατάτμησης</strong><br/>Αντικαθιστά μία κατάτμηση με το %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -626,17 +626,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 - + Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 Καθαρίστηκαν όλες οι προσαρτήσεις για %1 @@ -683,10 +683,33 @@ The installer will quit and all changes will be lost. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Καλώς ήλθατε στην εγκατάσταση του %1.</h1> + + ContextualProcessJob - + Contextual Processes Job @@ -744,27 +767,27 @@ The installer will quit and all changes will be lost. &Μέγεθος: - + En&crypt - + Logical Λογική - + Primary Πρωτεύουσα - + GPT GPT - + Mountpoint already in use. Please select another one. @@ -772,22 +795,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. Δημιουργείται νέα %1 κατάτμηση στο %2. - + The installer failed to create partition on disk '%1'. Η εγκατάσταση απέτυχε να δημιουργήσει μία κατάτμηση στον δίσκο '%1'. @@ -823,22 +846,22 @@ 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. @@ -990,13 +1013,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) @@ -1109,7 +1132,7 @@ The installer will quit and all changes will be lost. Επιβεβαίωση λέξης κλειδί - + Please enter the same passphrase in both boxes. Παρακαλώ εισάγετε την ίδια λέξη κλειδί και στα δύο κουτιά. @@ -1117,37 +1140,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. @@ -1231,22 +1254,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. - + The installer failed to format partition %1 on disk '%2'. @@ -1653,16 +1676,6 @@ 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) @@ -1674,7 +1687,7 @@ The installer will quit and all changes will be lost. - + Network Installation. (Disabled: Incorrect configuration) @@ -2020,7 +2033,7 @@ The installer will quit and all changes will be lost. - + Password is empty @@ -2066,6 +2079,19 @@ The installer will quit and all changes will be lost. + + PackageModel + + + Name + Όνομα + + + + Description + Περιγραφή + + Page_Keyboard @@ -2228,34 +2254,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space Ελεύθερος χώρος - - + + New partition Νέα κατάτμηση - + Name Όνομα - + File System Σύστημα αρχείων - + Mount Point Σημείο προσάρτησης - + Size Μέγεθος @@ -2323,17 +2349,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? Θέλετε σίγουρα να δημιουργήσετε έναν νέο πίνακα κατατμήσεων στο %1; - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2507,65 +2533,65 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. Λανθασμένοι παράμετροι για την κλήση διεργασίας. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2584,22 +2610,22 @@ Output: Προκαθορισμένο - + unknown άγνωστη - + extended εκτεταμένη - + unformatted μη μορφοποιημένη - + swap @@ -2653,6 +2679,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2680,140 +2714,152 @@ Output: Τύπος - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. Το επιλεγμένο στοιχείο φαίνεται να μην είναι ένα έγκυρο διαμέρισμα. - + %1 cannot be installed on empty space. Please select an existing partition. %1 δεν μπορεί να εγκατασταθεί σε άδειο χώρο. Παρακαλώ επίλεξε ένα υφιστάμενο διαμέρισμα. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 δεν μπορεί να εγκατασταθεί σε ένα εκτεταμένο διαμέρισμα. Παρακαλώ επίλεξε ένα υφιστάμενο πρωτεύον ή λογικό διαμέρισμα. - + %1 cannot be installed on this partition. %1 δεν μπορεί να εγκατασταθεί σ' αυτό το διαμέρισμα. - + Data partition (%1) Κατάτμηση δεδομένων (%1) - + Unknown system partition (%1) Άγνωστη κατάτμηση συστήματος (%1) - + %1 system partition (%2) %1 κατάτμηση συστήματος (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. <strong>%2</strong><br/><br/>Πουθενά στο σύστημα δεν μπορεί να ανιχθευθεί μία κατάτμηση EFI. Παρακαλώ επιστρέψτε πίσω και χρησιμοποιήστε τη χειροκίνητη τμηματοποίηση για την εγκατάσταση του %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. Η κατάτμηση συστήματος EFI στο %1 θα χρησιμοποιηθεί για την εκκίνηση του %2. - + EFI system partition: Κατάτμηση συστήματος EFI: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2871,12 +2917,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: Για καλύτερο αποτέλεσμα, παρακαλώ βεβαιωθείτε ότι ο υπολογιστής: - + System requirements Απαιτήσεις συστήματος @@ -2884,27 +2930,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Ο υπολογιστής δεν ικανοποιεί τις ελάχιστες απαιτήσεις για την εγκατάσταση του %1.<br/>Η εγκατάσταση δεν μπορεί να συνεχιστεί. <a href="#details">Λεπτομέριες...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Αυτός ο υπολογιστής δεν ικανοποιεί μερικές από τις συνιστώμενες απαιτήσεις για την εγκατάσταση του %1.<br/>Η εγκατάσταση μπορεί να συνεχιστεί, αλλά ορισμένες λειτουργίες μπορεί να απενεργοποιηθούν. - + This program will ask you some questions and set up %2 on your computer. Το πρόγραμμα θα σας κάνει μερικές ερωτήσεις και θα ρυθμίσει το %2 στον υπολογιστή σας. @@ -2925,17 +2971,17 @@ Output: SetHostNameJob - + Set hostname %1 Ορισμός ονόματος υπολογιστή %1 - + Set hostname <strong>%1</strong>. Ορισμός ονόματος υπολογιστή <strong>%1</strong>. - + Setting hostname %1. Ορίζεται το όνομα υπολογιστή %1. @@ -2985,82 +3031,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. Ο εγκαταστάτης απέτυχε να θέσει τις σημαίες στο διαμέρισμα %1. @@ -3290,47 +3336,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. Το όνομα χρήστη είναι πολύ μακρύ. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. Το όνομα υπολογιστή είναι πολύ σύντομο. - + Your hostname is too long. Το όνομα υπολογιστή είναι πολύ μακρύ. - + Your passwords do not match! Οι κωδικοί πρόσβασης δεν ταιριάζουν! @@ -3468,42 +3514,42 @@ Output: Σ&χετικά με - + <h1>Welcome to the %1 installer.</h1> <h1>Καλώς ήλθατε στην εγκατάσταση του %1.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer Σχετικά με το πρόγραμμα εγκατάστασης %1 - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support Υποστήριξη %1 @@ -3511,7 +3557,7 @@ Output: WelcomeQmlViewStep - + Welcome Καλώς ήλθατε @@ -3519,7 +3565,7 @@ Output: WelcomeViewStep - + Welcome Καλώς ήλθατε @@ -3527,7 +3573,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_en.ts b/lang/calamares_en.ts index 415225480..60b0713fb 100644 --- a/lang/calamares_en.ts +++ b/lang/calamares_en.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Master Boot Record of %1 - + Boot Partition Boot Partition @@ -42,7 +42,7 @@ Do not install a boot loader - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Done @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Running %1 operation. - + Bad working directory path Bad working directory path - + Working directory %1 for python job %2 is not readable. Working directory %1 for python job %2 is not readable. - + Bad main script file Bad main script file - + Main script file %1 for python job %2 is not readable. Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". Boost.Python error in job "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... Loading ... - + QML Step <i>%1</i>. QML Step <i>%1</i>. - + Loading failed. Loading failed. @@ -253,175 +253,175 @@ Calamares::ViewManager - + &Back &Back - + &Next &Next - + &Cancel &Cancel - + Cancel setup without changing the system. Cancel setup without changing the system. - + Cancel installation without changing the system. Cancel installation without changing the system. - + Setup Failed Setup Failed - + Would you like to paste the install log to the web? Would you like to paste the install log to the web? - + Install Log Paste URL Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: <br/>The following modules could not be loaded: - + Continue with installation? Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now &Set up now - + &Set up &Set up - + &Install &Install - + Setup is complete. Close the setup program. Setup is complete. Close the setup program. - + Cancel setup? Cancel setup? - + Cancel installation? Cancel installation? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Do you really want to cancel the current install process? The installer will quit and all changes will be lost. - - + + &Yes &Yes - - + + &No &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 @@ -429,22 +429,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type Unknown exception type - + unparseable Python error unparseable Python error - + unparseable Python traceback unparseable Python traceback - + Unfetchable Python error. Unfetchable Python error. @@ -462,17 +462,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program %1 Setup Program - + %1 Installer %1 Installer - + Show debug information Show debug information @@ -480,7 +480,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... Gathering system information... @@ -493,134 +493,134 @@ The installer will quit and all changes will be lost. Form - + After: After: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: Boot loader location: - + Select storage de&vice: Select storage de&vice: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. The EFI system partition at %1 will be used for starting %2. - + EFI system partition: EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap No Swap - + Reuse Swap Reuse Swap - + Swap (no Hibernate) Swap (no Hibernate) - + Swap (with Hibernate) Swap (with Hibernate) - + Swap to file Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -628,17 +628,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 Clear mounts for partitioning operations on %1 - + Clearing mounts for partitioning operations on %1. Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 Cleared all mounts for %1 @@ -685,10 +685,33 @@ The installer will quit and all changes will be lost. The command needs to know the user's name, but no username is defined. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>Welcome to %1 setup.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Welcome to the Calamares installer for %1.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Welcome to the %1 installer.</h1> + + ContextualProcessJob - + Contextual Processes Job Contextual Processes Job @@ -746,27 +769,27 @@ The installer will quit and all changes will be lost. Si&ze: - + En&crypt En&crypt - + Logical Logical - + Primary Primary - + GPT GPT - + Mountpoint already in use. Please select another one. Mountpoint already in use. Please select another one. @@ -774,22 +797,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Create new <strong>%2MiB</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'. @@ -825,22 +848,22 @@ 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. @@ -992,13 +1015,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1111,7 +1134,7 @@ The installer will quit and all changes will be lost. Confirm passphrase - + Please enter the same passphrase in both boxes. Please enter the same passphrase in both boxes. @@ -1119,37 +1142,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. @@ -1233,22 +1256,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. Formatting partition %1 with file system %2. - + The installer failed to format partition %1 on disk '%2'. The installer failed to format partition %1 on disk '%2'. @@ -1655,16 +1678,6 @@ 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) @@ -1676,7 +1689,7 @@ The installer will quit and all changes will be lost. Network Installation. (Disabled: Received invalid groups data) - + Network Installation. (Disabled: Incorrect configuration) Network Installation. (Disabled: Incorrect configuration) @@ -2022,7 +2035,7 @@ The installer will quit and all changes will be lost. Unknown error - + Password is empty Password is empty @@ -2068,6 +2081,19 @@ The installer will quit and all changes will be lost. Packages + + PackageModel + + + Name + Name + + + + Description + Description + + Page_Keyboard @@ -2230,34 +2256,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space Free Space - - + + New partition New partition - + Name Name - + File System File System - + Mount Point Mount Point - + Size Size @@ -2325,17 +2351,17 @@ The installer will quit and all changes will be lost. I&nstall boot loader on: - + Are you sure you want to create a new partition table on %1? Are you sure you want to create a new partition table on %1? - + Can not create new partition Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2509,14 +2535,14 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. There was no output from the command. - + Output: @@ -2525,52 +2551,52 @@ Output: - + External command crashed. External command crashed. - + Command <i>%1</i> crashed. Command <i>%1</i> crashed. - + External command failed to start. External command failed to start. - + Command <i>%1</i> failed to start. Command <i>%1</i> failed to start. - + Internal error when starting command. Internal error when starting command. - + Bad parameters for process job call. Bad parameters for process job call. - + External command failed to finish. External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. External command finished with errors. - + Command <i>%1</i> finished with exit code %2. Command <i>%1</i> finished with exit code %2. @@ -2589,22 +2615,22 @@ Output: Default - + unknown unknown - + extended extended - + unformatted unformatted - + swap swap @@ -2658,6 +2684,14 @@ Output: Could not create new random file <pre>%1</pre>. + + RemoveUserJob + + + Remove live user from target system + Remove live user from target system + + RemoveVolumeGroupJob @@ -2685,140 +2719,153 @@ Output: Form - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. The selected item does not appear to be a valid partition. - + %1 cannot be installed on empty space. Please select an existing partition. %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. %1 cannot be installed on this partition. - + Data partition (%1) Data partition (%1) - + Unknown system partition (%1) Unknown system partition (%1) - + %1 system partition (%2) %1 system partition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. The EFI system partition at %1 will be used for starting %2. - + EFI system partition: EFI system partition: + + RequirementsModel + + + This program will ask you some questions and set up your installation + This program will ask you some questions and set up your installation + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + ResizeFSJob - + Resize Filesystem Job Resize Filesystem Job - + Invalid configuration Invalid configuration - + The file-system resize job has an invalid configuration and will not run. The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot The device %1 must be resized, but cannot @@ -2876,12 +2923,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: For best results, please ensure that this computer: - + System requirements System requirements @@ -2889,27 +2936,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - + This program will ask you some questions and set up %2 on your computer. This program will ask you some questions and set up %2 on your computer. @@ -2930,17 +2977,17 @@ Output: SetHostNameJob - + Set hostname %1 Set hostname %1 - + Set hostname <strong>%1</strong>. Set hostname <strong>%1</strong>. - + Setting hostname %1. Setting hostname %1. @@ -2990,82 +3037,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. Set flags on partition %1. - + Set flags on %1MiB %2 partition. Set flags on %1MiB %2 partition. - + Set flags on new partition. Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. The installer failed to set flags on partition %1. @@ -3295,47 +3342,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. Your username is too long. - + Your username must start with a lowercase letter or underscore. Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. Your hostname is too short. - + Your hostname is too long. Your hostname is too long. - + Your passwords do not match! Your passwords do not match! @@ -3473,42 +3520,42 @@ Output: &About - + <h1>Welcome to the %1 installer.</h1> <h1>Welcome to the %1 installer.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>Welcome to %1 setup.</h1> - + About %1 setup About %1 setup - + About %1 installer About %1 installer - + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 support @@ -3516,7 +3563,7 @@ Output: WelcomeQmlViewStep - + Welcome Welcome @@ -3524,7 +3571,7 @@ Output: WelcomeViewStep - + Welcome Welcome @@ -3532,7 +3579,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> <h3>%1</h3> diff --git a/lang/calamares_en_GB.ts b/lang/calamares_en_GB.ts index 90009c582..c76ab3ac7 100644 --- a/lang/calamares_en_GB.ts +++ b/lang/calamares_en_GB.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Master Boot Record of %1 - + Boot Partition Boot Partition @@ -42,7 +42,7 @@ Do not install a boot loader - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Done @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Running %1 operation. - + Bad working directory path Bad working directory path - + Working directory %1 for python job %2 is not readable. Working directory %1 for python job %2 is not readable. - + Bad main script file Bad main script file - + Main script file %1 for python job %2 is not readable. Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". Boost.Python error in job "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,174 +253,174 @@ Calamares::ViewManager - + &Back &Back - + &Next &Next - + &Cancel &Cancel - + Cancel setup without changing the system. - + Cancel installation without changing the system. Cancel installation without changing the system. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed Calamares Initialisation Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install &Install - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? Cancel installation? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Do you really want to cancel the current install process? The installer will quit and all changes will be lost. - - + + &Yes &Yes - - + + &No &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 @@ -428,22 +428,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type Unknown exception type - + unparseable Python error unparseable Python error - + unparseable Python traceback unparseable Python traceback - + Unfetchable Python error. Unfetchable Python error. @@ -460,17 +460,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program - + %1 Installer %1 Installer - + Show debug information Show debug information @@ -478,7 +478,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... Gathering system information... @@ -491,134 +491,134 @@ The installer will quit and all changes will be lost. Form - + After: After: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: Boot loader location: - + Select storage de&vice: Select storage de&vice: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. The EFI system partition at %1 will be used for starting %2. - + EFI system partition: EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -626,17 +626,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 Clear mounts for partitioning operations on %1 - + Clearing mounts for partitioning operations on %1. Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 Cleared all mounts for %1 @@ -683,10 +683,33 @@ The installer will quit and all changes will be lost. The command needs to know the user's name, but no username is defined. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Welcome to the Calamares installer for %1.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Welcome to the %1 installer.</h1> + + ContextualProcessJob - + Contextual Processes Job Contextual Processes Job @@ -744,27 +767,27 @@ The installer will quit and all changes will be lost. Si&ze: - + En&crypt En&crypt - + Logical Logical - + Primary Primary - + GPT GPT - + Mountpoint already in use. Please select another one. Mountpoint already in use. Please select another one. @@ -772,22 +795,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</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'. @@ -823,22 +846,22 @@ 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. @@ -990,13 +1013,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) @@ -1109,7 +1132,7 @@ The installer will quit and all changes will be lost. Confirm passphrase - + Please enter the same passphrase in both boxes. Please enter the same passphrase in both boxes. @@ -1117,37 +1140,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. @@ -1231,22 +1254,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. Formatting partition %1 with file system %2. - + The installer failed to format partition %1 on disk '%2'. The installer failed to format partition %1 on disk '%2'. @@ -1653,16 +1676,6 @@ 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) @@ -1674,7 +1687,7 @@ The installer will quit and all changes will be lost. Network Installation. (Disabled: Received invalid groups data) - + Network Installation. (Disabled: Incorrect configuration) @@ -2020,7 +2033,7 @@ The installer will quit and all changes will be lost. Unknown error - + Password is empty @@ -2066,6 +2079,19 @@ The installer will quit and all changes will be lost. + + PackageModel + + + Name + Name + + + + Description + Description + + Page_Keyboard @@ -2228,34 +2254,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space Free Space - - + + New partition New partition - + Name Name - + File System File System - + Mount Point Mount Point - + Size Size @@ -2323,17 +2349,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? Are you sure you want to create a new partition table on %1? - + Can not create new partition Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2507,14 +2533,14 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. There was no output from the command. - + Output: @@ -2523,52 +2549,52 @@ Output: - + External command crashed. External command crashed. - + Command <i>%1</i> crashed. Command <i>%1</i> crashed. - + External command failed to start. External command failed to start. - + Command <i>%1</i> failed to start. Command <i>%1</i> failed to start. - + Internal error when starting command. Internal error when starting command. - + Bad parameters for process job call. Bad parameters for process job call. - + External command failed to finish. External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. External command finished with errors. - + Command <i>%1</i> finished with exit code %2. Command <i>%1</i> finished with exit code %2. @@ -2587,22 +2613,22 @@ Output: Default - + unknown unknown - + extended extended - + unformatted unformatted - + swap swap @@ -2656,6 +2682,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2683,140 +2717,152 @@ Output: Form - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. The selected item does not appear to be a valid partition. - + %1 cannot be installed on empty space. Please select an existing partition. %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. %1 cannot be installed on this partition. - + Data partition (%1) Data partition (%1) - + Unknown system partition (%1) Unknown system partition (%1) - + %1 system partition (%2) %1 system partition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. The EFI system partition at %1 will be used for starting %2. - + EFI system partition: EFI system partition: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2874,12 +2920,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: For best results, please ensure that this computer: - + System requirements System requirements @@ -2887,27 +2933,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - + This program will ask you some questions and set up %2 on your computer. This program will ask you some questions and set up %2 on your computer. @@ -2928,17 +2974,17 @@ Output: SetHostNameJob - + Set hostname %1 Set hostname %1 - + Set hostname <strong>%1</strong>. Set hostname <strong>%1</strong>. - + Setting hostname %1. Setting hostname %1. @@ -2988,82 +3034,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. The installer failed to set flags on partition %1. @@ -3293,47 +3339,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. Your username is too long. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. Your hostname is too short. - + Your hostname is too long. Your hostname is too long. - + Your passwords do not match! Your passwords do not match! @@ -3471,42 +3517,42 @@ Output: &About - + <h1>Welcome to the %1 installer.</h1> <h1>Welcome to the %1 installer.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer About %1 installer - + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 support @@ -3514,7 +3560,7 @@ Output: WelcomeQmlViewStep - + Welcome Welcome @@ -3522,7 +3568,7 @@ Output: WelcomeViewStep - + Welcome Welcome @@ -3530,7 +3576,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_eo.ts b/lang/calamares_eo.ts index 386b98a85..f87443a34 100644 --- a/lang/calamares_eo.ts +++ b/lang/calamares_eo.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 - + Boot Partition @@ -42,7 +42,7 @@ - + %1 (%2) %1(%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Finita @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,174 +253,174 @@ Calamares::ViewManager - + &Back &Reen - + &Next &Sekva - + &Cancel &Nuligi - + Cancel setup without changing the system. - + Cancel installation without changing the system. Nuligi instalado sen ŝanĝante la sistemo. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now &Aranĝu nun - + &Set up &Aranĝu - + &Install &Instali - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? Nuligi instalado? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Ĉu vi vere volas nuligi la instalan procedon? La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. - - + + &Yes &Jes - - + + &No &Ne - + &Close &Fermi - + 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 &Instali nun - + Go &back Iru &Reen - + &Done &Finita - + The installation is complete. Close the installer. - + Error Eraro - + Installation Failed @@ -428,22 +428,22 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. CalamaresPython::Helper - + Unknown exception type - + unparseable Python error - + unparseable Python traceback - + Unfetchable Python error. @@ -460,17 +460,17 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. CalamaresWindow - + %1 Setup Program - + %1 Installer %1 Instalilo - + Show debug information @@ -478,7 +478,7 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. CheckerContainer - + Gathering system information... @@ -491,134 +491,134 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. Formularo - + After: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + Select storage de&vice: Elektita &tenada aparato - - - - + + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -626,17 +626,17 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. ClearMountsJob - + Clear mounts for partitioning operations on %1 - + Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 @@ -683,10 +683,33 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + + + ContextualProcessJob - + Contextual Processes Job @@ -744,27 +767,27 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. &Grandeco: - + En&crypt &Ĉifras - + Logical Logika - + Primary Ĉefa - + GPT - + Mountpoint already in use. Please select another one. Muntopunkto jam utiliĝi. Bonvolu elektu alian. @@ -772,22 +795,22 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. @@ -823,22 +846,22 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. 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. @@ -990,13 +1013,13 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) - + %1 - (%2) device[name] - (device-node[name]) @@ -1109,7 +1132,7 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. - + Please enter the same passphrase in both boxes. @@ -1117,37 +1140,37 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. 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. @@ -1231,22 +1254,22 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. - + The installer failed to format partition %1 on disk '%2'. @@ -1653,16 +1676,6 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. NetInstallPage - - - Name - - - - - Description - - Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1674,7 +1687,7 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. - + Network Installation. (Disabled: Incorrect configuration) @@ -2020,7 +2033,7 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. - + Password is empty @@ -2066,6 +2079,19 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. + + PackageModel + + + Name + + + + + Description + + + Page_Keyboard @@ -2228,34 +2254,34 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. PartitionModel - - + + Free Space - - + + New partition - + Name - + File System - + Mount Point - + Size @@ -2323,17 +2349,17 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2507,65 +2533,65 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2584,22 +2610,22 @@ Output: - + unknown - + extended kromsubdisko - + unformatted - + swap @@ -2653,6 +2679,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2680,140 +2714,152 @@ Output: Formularo - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. - + %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. - + Data partition (%1) - + Unknown system partition (%1) - + %1 system partition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2871,12 +2917,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: - + System requirements @@ -2884,27 +2930,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - + This program will ask you some questions and set up %2 on your computer. @@ -2925,17 +2971,17 @@ Output: SetHostNameJob - + Set hostname %1 - + Set hostname <strong>%1</strong>. - + Setting hostname %1. @@ -2985,82 +3031,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. @@ -3290,47 +3336,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your passwords do not match! @@ -3468,42 +3514,42 @@ Output: - + <h1>Welcome to the %1 installer.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer - + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support @@ -3511,7 +3557,7 @@ Output: WelcomeQmlViewStep - + Welcome @@ -3519,7 +3565,7 @@ Output: WelcomeViewStep - + Welcome @@ -3527,7 +3573,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_es.ts b/lang/calamares_es.ts index 15da55c41..07055efa4 100644 --- a/lang/calamares_es.ts +++ b/lang/calamares_es.ts @@ -23,12 +23,12 @@ Para configurar el arranque desde un entorno BIOS, este instalador debe instalar BootLoaderModel - + Master Boot Record of %1 Master Boot Record de %1 - + Boot Partition Partición de Arranque @@ -43,7 +43,7 @@ Para configurar el arranque desde un entorno BIOS, este instalador debe instalar No instalar el gestor de arranque - + %1 (%2) %1 (%2) @@ -144,7 +144,7 @@ Para configurar el arranque desde un entorno BIOS, este instalador debe instalar Calamares::JobThread - + Done Hecho @@ -178,32 +178,32 @@ Para configurar el arranque desde un entorno BIOS, este instalador debe instalar Calamares::PythonJob - + Running %1 operation. Ejecutando %1 operación. - + Bad working directory path Error en la ruta del directorio de trabajo - + Working directory %1 for python job %2 is not readable. El directorio de trabajo %1 para el script de python %2 no se puede leer. - + Bad main script file Script principal erróneo - + Main script file %1 for python job %2 is not readable. El script principal %1 del proceso python %2 no es accesible. - + Boost.Python error in job "%1". Error Boost.Python en el proceso "%1". @@ -211,17 +211,17 @@ Para configurar el arranque desde un entorno BIOS, este instalador debe instalar Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -254,174 +254,174 @@ Para configurar el arranque desde un entorno BIOS, este instalador debe instalar Calamares::ViewManager - + &Back &Atrás - + &Next &Siguiente - + &Cancel &Cancelar - + Cancel setup without changing the system. - + Cancel installation without changing the system. Cancelar instalación sin cambiar el sistema. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed La inicialización de Calamares falló - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 no se pudo instalar. Calamares no fue capaz de cargar todos los módulos configurados. Esto es un problema con la forma en que Calamares es usado por la distribución - + <br/>The following modules could not be loaded: Los siguientes módulos no se pudieron cargar: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install &Instalar - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? ¿Cancelar la instalación? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. ¿Realmente quiere cancelar el proceso de instalación? Saldrá del instalador y se perderán todos los cambios. - - + + &Yes &Sí - - + + &No &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 @@ -429,22 +429,22 @@ Saldrá del instalador y se perderán todos los cambios. CalamaresPython::Helper - + Unknown exception type Excepción desconocida - + unparseable Python error error unparseable Python - + unparseable Python traceback rastreo de Python unparseable - + Unfetchable Python error. Error de Python Unfetchable. @@ -461,17 +461,17 @@ Saldrá del instalador y se perderán todos los cambios. CalamaresWindow - + %1 Setup Program - + %1 Installer %1 Instalador - + Show debug information Mostrar información de depuración. @@ -479,7 +479,7 @@ Saldrá del instalador y se perderán todos los cambios. CheckerContainer - + Gathering system information... Obteniendo información del sistema... @@ -492,134 +492,134 @@ Saldrá del instalador y se perderán todos los cambios. Formulario - + After: Despues: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Particionado manual </strong><br/> Usted puede crear o cambiar el tamaño de las particiones usted mismo. - + Boot loader location: Ubicación del cargador de arranque: - + Select storage de&vice: Seleccionar dispositivo de almacenamiento: - - - - + + + + Current: Actual: - + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> <strong>Seleccione una partición para instalar en</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. No se puede encontrar una partición de sistema EFI en ningún lugar de este sistema. Por favor, vuelva y use el particionamiento manual para establecer %1. - + The EFI system partition at %1 will be used for starting %2. La partición de sistema EFI en %1 se usará para iniciar %2. - + EFI system partition: Partición del sistema EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de almacenamiento no parece tener un sistema operativo en él. ¿Qué quiere hacer?<br/>Podrá revisar y confirmar sus elecciones antes de que se haga cualquier cambio en el dispositivo de almacenamiento. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Borrar disco</strong><br/>Esto <font color="red">borrará</font> todos los datos presentes actualmente en el dispositivo de almacenamiento. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. %1 se encuentra instalado en este dispositivo de almacenamiento. ¿Qué desea hacer?<br/>Podrá revisar y confirmar su elección antes de que cualquier cambio se haga efectivo en el dispositivo de almacenamiento. - + No Swap Sin Swap - + Reuse Swap Reusar Swap - + Swap (no Hibernate) Swap (sin hibernación) - + Swap (with Hibernate) Swap (con hibernación) - + Swap to file Swap a archivo - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instalar junto al otro SO</strong><br/>El instalador reducirá la partición del SO existente para tener espacio para instalar %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Reemplazar una partición</strong><br/>Reemplazar una partición con %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de almacenamiento parece que ya tiene un sistema operativo instalado en él. ¿Qué desea hacer?<br/>Podrá revisar y confirmar su elección antes de que cualquier cambio se haga efectivo en el dispositivo de almacenamiento. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de almacenamiento contiene múltiples sistemas operativos instalados en él. ¿Qué desea hacer?<br/>Podrá revisar y confirmar su elección antes de que cualquier cambio se haga efectivo en el dispositivo de almacenamiento. @@ -627,17 +627,17 @@ Saldrá del instalador y se perderán todos los cambios. ClearMountsJob - + Clear mounts for partitioning operations on %1 Limpiar puntos de montaje para operaciones de particionamiento en %1 - + Clearing mounts for partitioning operations on %1. Limpiando puntos de montaje para operaciones de particionamiento en %1. - + Cleared all mounts for %1 Limpiados todos los puntos de montaje para %1 @@ -684,10 +684,33 @@ Saldrá del instalador y se perderán todos los cambios. El comando necesita saber el nombre de usuario, pero no hay nombre de usuario definido. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Bienvenido al instalador de Calamares para %1.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Bienvenido al instalador %1.</h1> + + ContextualProcessJob - + Contextual Processes Job Tarea Contextual Processes @@ -745,27 +768,27 @@ Saldrá del instalador y se perderán todos los cambios. &Tamaño: - + En&crypt &Cifrar - + Logical Lógica - + Primary Primaria - + GPT GPT - + Mountpoint already in use. Please select another one. Punto de montaje ya en uso. Por favor, seleccione otro. @@ -773,22 +796,22 @@ Saldrá del instalador y se perderán todos los cambios. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <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'. @@ -824,22 +847,22 @@ 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. @@ -991,13 +1014,13 @@ Saldrá del instalador y se perderán todos los cambios. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1-(%2) @@ -1110,7 +1133,7 @@ Saldrá del instalador y se perderán todos los cambios. Confirmar frase-contraseña - + Please enter the same passphrase in both boxes. Por favor, introduzca la misma frase-contraseña en ambos recuadros. @@ -1118,37 +1141,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. @@ -1232,22 +1255,22 @@ Saldrá del instalador y se perderán todos los cambios. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. Formateando partición %1 con sistema de ficheros %2. - + The installer failed to format partition %1 on disk '%2'. El instalador falló al formatear la partición %1 del disco '%2'. @@ -1654,16 +1677,6 @@ 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) @@ -1675,7 +1688,7 @@ Saldrá del instalador y se perderán todos los cambios. Instalación de red. (Deshabilitada: Se recibieron grupos de datos no válidos) - + Network Installation. (Disabled: Incorrect configuration) @@ -2021,7 +2034,7 @@ Saldrá del instalador y se perderán todos los cambios. Error desconocido - + Password is empty @@ -2067,6 +2080,19 @@ Saldrá del instalador y se perderán todos los cambios. + + PackageModel + + + Name + Nombre + + + + Description + Descripción + + Page_Keyboard @@ -2229,34 +2255,34 @@ Saldrá del instalador y se perderán todos los cambios. PartitionModel - - + + Free Space Espacio libre - - + + New partition Partición nueva - + Name Nombre - + File System Sistema de archivos - + Mount Point Punto de montaje - + Size Tamaño @@ -2324,17 +2350,17 @@ Saldrá del instalador y se perderán todos los cambios. Instalar gestor de arranque en: - + Are you sure you want to create a new partition table on %1? ¿Está seguro de querer crear una nueva tabla de particiones en %1? - + Can not create new partition No se puede crear una partición nueva - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. La tabla de particiones en %1 tiene %2 particiones primarias y no se pueden agregar más. Por favor remueva una partición primaria y agregue una partición extendida en su reemplazo. @@ -2508,14 +2534,14 @@ Saldrá del instalador y se perderán todos los cambios. ProcessResult - + There was no output from the command. No hubo salida del comando. - + Output: @@ -2524,52 +2550,52 @@ Salida: - + External command crashed. El comando externo falló. - + Command <i>%1</i> crashed. El comando <i>%1</i> falló. - + External command failed to start. El comando externo no se pudo iniciar. - + Command <i>%1</i> failed to start. El comando <i>%1</i> no se pudo iniciar. - + Internal error when starting command. Error interno al iniciar el comando. - + Bad parameters for process job call. Parámetros erróneos para la llamada de la tarea del procreso. - + External command failed to finish. El comando externo no se pudo finalizar. - + Command <i>%1</i> failed to finish in %2 seconds. El comando <i>%1</i> no se pudo finalizar en %2 segundos. - + External command finished with errors. El comando externo finalizó con errores. - + Command <i>%1</i> finished with exit code %2. El comando <i>%1</i> finalizó con un código de salida %2. @@ -2588,22 +2614,22 @@ Salida: Por defecto - + unknown desconocido - + extended extendido - + unformatted sin formato - + swap swap @@ -2657,6 +2683,14 @@ Salida: + + RemoveUserJob + + + Remove live user from target system + Borre el usuario "en vivo" del sistema objetivo + + RemoveVolumeGroupJob @@ -2684,140 +2718,152 @@ Salida: Formulario - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Seleccione dónde instalar %1<br/><font color="red">Atención: </font>esto borrará todos sus archivos en la partición seleccionada. - + The selected item does not appear to be a valid partition. El elemento seleccionado no parece ser una partición válida. - + %1 cannot be installed on empty space. Please select an existing partition. %1 no se puede instalar en el espacio vacío. Por favor, seleccione una partición existente. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 no se puede instalar en una partición extendida. Por favor, seleccione una partición primaria o lógica existente. - + %1 cannot be installed on this partition. %1 no se puede instalar en esta partición. - + Data partition (%1) Partición de datos (%1) - + Unknown system partition (%1) Partición desconocida del sistema (%1) - + %1 system partition (%2) %1 partición del sistema (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>La partición %1 es demasiado pequeña para %2. Por favor, seleccione una participación con capacidad para al menos %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/>No se puede encontrar una partición de sistema EFI en ninguna parte de este sistema. Por favor, retroceda y use el particionamiento manual para establecer %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 se instalará en %2.<br/><font color="red">Advertencia: </font>Todos los datos en la partición %2 se perderán. - + The EFI system partition at %1 will be used for starting %2. La partición del sistema EFI en %1 se utilizará para iniciar %2. - + EFI system partition: Partición del sistema EFI: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job Tarea de redimensionamiento de sistema de archivos - + Invalid configuration Configuración no válida - + The file-system resize job has an invalid configuration and will not run. La tarea de redimensionamiento del sistema de archivos no posee una configuración válida y no se ejecutará. - - + KPMCore not Available KPMCore no disponible - - + Calamares cannot start KPMCore for the file-system resize job. Calamares no puede iniciar KPMCore para la tarea de redimensionamiento del sistema de archivos. - - - - - + + + + + Resize Failed Falló el redimiensionamiento - + The filesystem %1 could not be found in this system, and cannot be resized. No se encontró en este sistema el sistema de archivos %1, por lo que no puede redimensionarse. - + The device %1 could not be found in this system, and cannot be resized. No se encontró en este sistema el dispositivo %1, por lo que no puede redimensionarse. - - + + The filesystem %1 cannot be resized. No puede redimensionarse el sistema de archivos %1. - - + + The device %1 cannot be resized. No puede redimensionarse el dispositivo %1. - + The filesystem %1 must be resized, but cannot. Es necesario redimensionar el sistema de archivos %1 pero no es posible hacerlo. - + The device %1 must be resized, but cannot Es necesario redimensionar el dispositivo %1 pero no es posible hacerlo. @@ -2875,12 +2921,12 @@ Salida: ResultsListDialog - + For best results, please ensure that this computer: Para obtener los mejores resultados, por favor asegúrese que este ordenador: - + System requirements Requisitos del sistema @@ -2888,27 +2934,27 @@ Salida: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Este ordenador no cumple los requisitos mínimos para la instalación. %1.<br/>La instalación no puede continuar. <a href="#details">Detalles...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Este ordenador no cumple alguno de los requisitos recomendados para la instalación %1.<br/>La instalación puede continuar, pero algunas funcionalidades podrían ser deshabilitadas. - + This program will ask you some questions and set up %2 on your computer. El programa le preguntará algunas cuestiones y configurará %2 en su ordenador. @@ -2929,17 +2975,17 @@ Salida: SetHostNameJob - + Set hostname %1 Hostname: %1 - + Set hostname <strong>%1</strong>. Configurar hostname <strong>%1</strong>. - + Setting hostname %1. Configurando hostname %1. @@ -2989,82 +3035,82 @@ Salida: SetPartFlagsJob - + Set flags on partition %1. Establecer indicadores en la partición %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. Establecer indicadores en una nueva partición. - + Clear flags on partition <strong>%1</strong>. Limpiar indicadores en la partición <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. Limpiar indicadores en la nueva partición. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Indicar partición <strong>%1</strong> como <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Indicar nueva partición como <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Limpiando indicadores en la partición <strong>%1</strong>. - + Clearing flags on new partition. Limpiando indicadores en la nueva partición. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Estableciendo indicadores <strong>%2</strong> en la partición <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Estableciendo indicadores <strong>%1</strong> en una nueva partición. - + The installer failed to set flags on partition %1. El instalador no pudo establecer indicadores en la partición %1. @@ -3294,47 +3340,47 @@ Salida: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. Su nombre de usuario es demasiado largo. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + 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 passwords do not match! ¡Sus contraseñas no coinciden! @@ -3472,42 +3518,42 @@ Salida: &Acerca de - + <h1>Welcome to the %1 installer.</h1> <h1>Bienvenido al instalador %1.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Bienvenido al instalador de Calamares para %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup Acerca de la configuración %1 - + About %1 installer Acerca del instalador %1 - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 ayuda @@ -3515,7 +3561,7 @@ Salida: WelcomeQmlViewStep - + Welcome Bienvenido @@ -3523,7 +3569,7 @@ Salida: WelcomeViewStep - + Welcome Bienvenido @@ -3531,7 +3577,7 @@ Salida: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_es_MX.ts b/lang/calamares_es_MX.ts index 9baa56f1a..7d8d17c66 100644 --- a/lang/calamares_es_MX.ts +++ b/lang/calamares_es_MX.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Master Boot Record de %1 - + Boot Partition Partición de arranque @@ -42,7 +42,7 @@ No instalar el gestor de arranque - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Hecho @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Ejecutando operación %1. - + Bad working directory path Ruta a la carpeta de trabajo errónea - + Working directory %1 for python job %2 is not readable. La carpeta de trabajo %1 para la tarea de python %2 no es accesible. - + Bad main script file Script principal erróneo - + Main script file %1 for python job %2 is not readable. El script principal %1 del proceso python %2 no es accesible. - + Boost.Python error in job "%1". Error Boost.Python en el proceso "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,175 +253,175 @@ Calamares::ViewManager - + &Back &Atrás - + &Next &Siguiente - + &Cancel &Cancelar - + Cancel setup without changing the system. Cancelar la configuración sin cambiar el sistema. - + Cancel installation without changing the system. Cancelar instalación sin cambiar el sistema. - + Setup Failed Fallo en la configuración. - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed La inicialización de Calamares ha fallado - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 no pudo ser instalado. Calamares no pudo cargar todos los módulos configurados. Este es un problema con la forma en que Calamares esta siendo usada por la distribución. - + <br/>The following modules could not be loaded: <br/>Los siguientes módulos no pudieron ser cargados: - + Continue with installation? ¿Continuar con la instalación? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> El %1 programa de instalación esta a punto de realizar cambios a su disco con el fin de establecer %2.<br/><strong>Usted no podrá deshacer estos cambios.</strong> - + &Set up now &Configurar ahora - + &Set up &Configurar - + &Install &Instalar - + Setup is complete. Close the setup program. Configuración completa. Cierre el programa de instalación. - + Cancel setup? ¿Cancelar la configuración? - + Cancel installation? ¿Cancelar la instalación? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. ¿Realmente desea cancelar el actual proceso de configuración? El programa de instalación se cerrará y todos los cambios se perderán. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. ¿Realmente desea cancelar el proceso de instalación actual? El instalador terminará y se perderán todos los cambios. - - + + &Yes &Si - - + + &No &No - + &Close &Cerrar - + 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 &Hecho - + The installation is complete. Close the installer. Instalación completa. Cierre el instalador. - + Error Error - + Installation Failed Instalación Fallida @@ -429,22 +429,22 @@ El instalador terminará y se perderán todos los cambios. CalamaresPython::Helper - + Unknown exception type Tipo de excepción desconocida - + unparseable Python error error Python no analizable - + unparseable Python traceback rastreo de Python no analizable - + Unfetchable Python error. Error de Python inalcanzable. @@ -461,17 +461,17 @@ El instalador terminará y se perderán todos los cambios. CalamaresWindow - + %1 Setup Program %1 Programa de instalación - + %1 Installer %1 Instalador - + Show debug information Mostrar información de depuración @@ -479,7 +479,7 @@ El instalador terminará y se perderán todos los cambios. CheckerContainer - + Gathering system information... Obteniendo información del sistema... @@ -492,135 +492,135 @@ El instalador terminará y se perderán todos los cambios. Formulario - + After: Después: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Particionado manual </strong><br/> Puede crear o cambiar el tamaño de las particiones usted mismo. - + Boot loader location: Ubicación del cargador de arranque: - + Select storage de&vice: Seleccionar dispositivo de almacenamiento: - - - - + + + + Current: Actual: - + Reuse %1 as home partition for %2. Reuse %1 como partición home para %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Seleccione una partición para reducir el tamaño, a continuación, arrastre la barra inferior para redimencinar</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 será reducido a %2MiB y una nueva %3MiB partición se creará para %4. - + <strong>Select a partition to install on</strong> <strong>Seleccione una partición para instalar</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. No se puede encontrar en el sistema una partición EFI. Por favor vuelva atrás y use el particionamiento manual para configurar %1. - + The EFI system partition at %1 will be used for starting %2. La partición EFI en %1 será usada para iniciar %2. - + EFI system partition: Partición de sistema EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de almacenamiento parece no tener un sistema operativo en el. ¿que le gustaría hacer?<br/> Usted podrá revisar y confirmar sus elecciones antes que cualquier cambio se realice al dispositivo de almacenamiento. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Borrar disco</strong> <br/>Esto <font color="red">borrará</font> todos los datos presentes actualmente en el dispositivo de almacenamiento seleccionado. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de almacenamiento tiene %1 en el. ¿Que le gustaría hacer? <br/>Usted podrá revisar y confirmar sus elecciones antes de que cualquier cambio se realice al dispositivo de almacenamiento. - + No Swap Sin Swap - + Reuse Swap Reutilizar Swap - + Swap (no Hibernate) Swap (sin hibernación) - + Swap (with Hibernate) Swap (con hibernación) - + Swap to file Swap a archivo - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instalar junto a</strong> <br/>El instalador reducirá una partición con el fin de hacer espacio para %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Reemplazar una partición</strong> <br/>Reemplaza una partición con %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de almacenamiento ya tiene un sistema operativo en el. ¿Que le gustaría hacer?<br/> Usted podrá revisar y confirmar sus elecciones antes que cualquier cambio se realice al dispositivo de almacenamiento. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de almacenamiento tiene múltiples sistemas operativos en el. ¿Que le gustaria hacer?<br/> Usted podrá revisar y confirmar sus elecciones antes que cualquier cambio se realice al dispositivo de almacenamiento. @@ -628,17 +628,17 @@ El instalador terminará y se perderán todos los cambios. ClearMountsJob - + Clear mounts for partitioning operations on %1 Borrar puntos de montaje para operaciones de particionamiento en %1 - + Clearing mounts for partitioning operations on %1. Borrando puntos de montaje para operaciones de particionamiento en %1. - + Cleared all mounts for %1 Puntos de montaje despejados para %1 @@ -685,10 +685,33 @@ El instalador terminará y se perderán todos los cambios. Este comando necesita saber el nombre de usuario, pero no hay nombre de usuario definido. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>Bienvenido al programa de instalación Calamares para %1.</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>Bienvenido a la configuración %1</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Bienvenido al instalador Calamares para %1.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Bienvenido al instalador de %1.</h1> + + ContextualProcessJob - + Contextual Processes Job Tareas de procesos contextuales @@ -746,27 +769,27 @@ El instalador terminará y se perderán todos los cambios. Ta&maño: - + En&crypt En&criptar - + Logical Lógica - + Primary Primaria - + GPT GPT - + Mountpoint already in use. Please select another one. Punto de montaje ya esta en uso. Por favor seleccione otro. @@ -774,22 +797,22 @@ El instalador terminará y se perderán todos los cambios. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. Crear nueva %2MiB partición en %4 (%3) con el sistema de archivos %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Crear nueva<strong>%2MiB</strong> partición en<strong>%2MiB</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'. @@ -825,22 +848,22 @@ El instalador terminará y se perderán todos los cambios. CreatePartitionTableJob - + Create new %1 partition table on %2. Crear nueva tabla de partición %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. @@ -992,13 +1015,13 @@ El instalador terminará y se perderán todos los cambios. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1111,7 +1134,7 @@ El instalador terminará y se perderán todos los cambios. Confirmar contraseña segura - + Please enter the same passphrase in both boxes. Favor ingrese la misma contraseña segura en ambas casillas. @@ -1119,37 +1142,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> %2 partición de 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 el cargador de arranque en <strong>%1</strong>. - + Setting up mount points. Configurando puntos de montaje. @@ -1233,22 +1256,22 @@ El instalador terminará y se perderán todos los cambios. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. Formateando partición %1 con sistema de archivos %2. - + The installer failed to format partition %1 on disk '%2'. El instalador no ha podido formatear la partición %1 en el disco '%2' @@ -1655,16 +1678,6 @@ El instalador terminará 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) @@ -1676,7 +1689,7 @@ El instalador terminará y se perderán todos los cambios. Instalación de Red. (Deshabilitada: Grupos de datos invalidos recibidos) - + Network Installation. (Disabled: Incorrect configuration) @@ -2022,7 +2035,7 @@ El instalador terminará y se perderán todos los cambios. Error desconocido - + Password is empty @@ -2068,6 +2081,19 @@ El instalador terminará y se perderán todos los cambios. + + PackageModel + + + Name + Nombre + + + + Description + Descripción + + Page_Keyboard @@ -2230,34 +2256,34 @@ El instalador terminará y se perderán todos los cambios. PartitionModel - - + + Free Space Espacio libre - - + + New partition Partición nueva - + Name Nombre - + File System Sistema de archivos - + Mount Point Punto de montaje - + Size Tamaño @@ -2325,17 +2351,17 @@ El instalador terminará y se perderán todos los cambios. - + Are you sure you want to create a new partition table on %1? ¿Está seguro de querer crear una nueva tabla de particiones en %1? - + Can not create new partition No se puede crear nueva partición - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. La tabla de partición en %1 ya tiene %2 particiones primarias, y no pueden agregarse mas. Favor remover una partición primaria y en cambio, agregue una partición extendida. @@ -2509,14 +2535,14 @@ El instalador terminará y se perderán todos los cambios. ProcessResult - + There was no output from the command. No hubo salida desde el comando. - + Output: @@ -2525,52 +2551,52 @@ Salida - + External command crashed. El comando externo ha fallado. - + Command <i>%1</i> crashed. El comando <i>%1</i> ha fallado. - + External command failed to start. El comando externo falló al iniciar. - + Command <i>%1</i> failed to start. El comando <i>%1</i> Falló al iniciar. - + Internal error when starting command. Error interno al iniciar el comando. - + Bad parameters for process job call. Parámetros erróneos en la llamada al proceso. - + External command failed to finish. Comando externo falla al finalizar - + Command <i>%1</i> failed to finish in %2 seconds. Comando <i>%1</i> falló al finalizar en %2 segundos. - + External command finished with errors. Comando externo finalizado con errores - + Command <i>%1</i> finished with exit code %2. Comando <i>%1</i> finalizó con código de salida %2. @@ -2589,22 +2615,22 @@ Salida Por defecto - + unknown desconocido - + extended extendido - + unformatted no formateado - + swap swap @@ -2658,6 +2684,14 @@ Salida + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2685,141 +2719,153 @@ Salida Formulario - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Selecciona donde instalar %1.<br/><font color="red">Aviso: </font>Se borrarán todos los archivos de la partición seleccionada. - + The selected item does not appear to be a valid partition. El elemento seleccionado no parece ser una partición válida. - + %1 cannot be installed on empty space. Please select an existing partition. %1 no se puede instalar en un espacio vacío. Selecciona una partición existente. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 no se puede instalar en una partición extendida. Selecciona una partición primaria o lógica. - + %1 cannot be installed on this partition. No se puede instalar %1 en esta partición. - + Data partition (%1) Partición de datos (%1) - + Unknown system partition (%1) Partición de sistema desconocida (%1) - + %1 system partition (%2) %1 partición de sistema (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>La partición %1 es muy pequeña para %2. Selecciona otra partición que tenga al menos %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/>No se puede encontrar una partición EFI en este sistema. Por favor vuelva atrás y use el particionamiento manual para configurar %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 sera instalado en %2.<br/><font color="red">Advertencia: </font>toda la información en la partición %2 se perdera. - + The EFI system partition at %1 will be used for starting %2. La partición EFI en %1 será usada para iniciar %2. - + EFI system partition: Partición de sistema EFI: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration Configuración inválida - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available KPMCore no está disponible - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2877,12 +2923,12 @@ Salida ResultsListDialog - + For best results, please ensure that this computer: Para mejores resultados, por favor verifique que esta computadora: - + System requirements Requisitos de sistema @@ -2890,27 +2936,27 @@ Salida ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Este equipo no cumple los requisitos mínimos para la instalación. %1.<br/>La instalación no puede continuar. <a href="#details">Detalles...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Este equipo no cumple alguno de los requisitos recomendados para la instalación %1.<br/>La instalación puede continuar, pero algunas funcionalidades podrían ser deshabilitadas. - + This program will ask you some questions and set up %2 on your computer. El programa le hará algunas preguntas y configurará %2 en su ordenador. @@ -2931,17 +2977,17 @@ Salida SetHostNameJob - + Set hostname %1 Hostname: %1 - + Set hostname <strong>%1</strong>. Establecer nombre del equipo <strong>%1</strong>. - + Setting hostname %1. Configurando nombre de host %1. @@ -2991,82 +3037,82 @@ Salida SetPartFlagsJob - + Set flags on partition %1. Establecer indicadores en la partición% 1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. Establecer indicadores en la nueva partición. - + Clear flags on partition <strong>%1</strong>. Borrar indicadores en la partición <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. Borrar indicadores en la nueva partición. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Indicador de partición <strong>%1</strong> como <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Marcar la nueva partición como <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Borrar indicadores en la partición <strong>%1</strong>. - + Clearing flags on new partition. Borrar indicadores en la nueva partición. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Establecer indicadores <strong>%2</strong> en la partición <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Establecer indicadores <strong>%1</strong> en nueva partición. - + The installer failed to set flags on partition %1. El instalador no pudo establecer indicadores en la partición% 1. @@ -3296,47 +3342,47 @@ Salida UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>Si más de una persona usará esta computadora, puede crear múltiples cuentas después de la configuración</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>Si más de una persona usará esta computadora, puede crear varias cuentas después de la instalación.</small> - + Your username is too long. Tu nombre de usuario es demasiado largo. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + 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 passwords do not match! Las contraseñas no coinciden! @@ -3474,42 +3520,42 @@ Salida &Acerca de - + <h1>Welcome to the %1 installer.</h1> <h1>Bienvenido al instalador de %1.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Bienvenido al instalador Calamares para %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>Bienvenido al programa de instalación Calamares para %1.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>Bienvenido a la configuración %1</h1> - + About %1 setup Acerca de la configuración %1 - + About %1 installer Acerca del instalador %1 - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 Soporte @@ -3517,7 +3563,7 @@ Salida WelcomeQmlViewStep - + Welcome Bienvenido @@ -3525,7 +3571,7 @@ Salida WelcomeViewStep - + Welcome Bienvenido @@ -3533,7 +3579,7 @@ Salida notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_es_PR.ts b/lang/calamares_es_PR.ts index f7f3c7e91..0d6646903 100644 --- a/lang/calamares_es_PR.ts +++ b/lang/calamares_es_PR.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Registro de arranque maestro de %1 - + Boot Partition Partición de arranque @@ -42,7 +42,7 @@ - + %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Hecho @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. - + Bad working directory path La ruta del directorio de trabajo es incorrecta - + Working directory %1 for python job %2 is not readable. El directorio de trabajo %1 para el script de python %2 no se puede leer. - + Bad main script file Script principal erróneo - + Main script file %1 for python job %2 is not readable. El script principal %1 del proceso python %2 no es accesible. - + Boost.Python error in job "%1". Error Boost.Python en el proceso "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,173 +253,173 @@ Calamares::ViewManager - + &Back &Atrás - + &Next &Próximo - + &Cancel - + Cancel setup without changing the system. - + Cancel installation without changing the system. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. - - + + &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 Error - + Installation Failed Falló la instalación @@ -427,22 +427,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type - + unparseable Python error - + unparseable Python traceback - + Unfetchable Python error. @@ -459,17 +459,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program - + %1 Installer - + Show debug information @@ -477,7 +477,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... @@ -490,134 +490,134 @@ The installer will quit and all changes will be lost. Formulario - + After: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + Select storage de&vice: - - - - + + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -625,17 +625,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 - + Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 @@ -682,10 +682,33 @@ The installer will quit and all changes will be lost. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + + + ContextualProcessJob - + Contextual Processes Job @@ -743,27 +766,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical - + Primary - + GPT - + Mountpoint already in use. Please select another one. @@ -771,22 +794,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. @@ -822,22 +845,22 @@ 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. @@ -989,13 +1012,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) - + %1 - (%2) device[name] - (device-node[name]) @@ -1108,7 +1131,7 @@ The installer will quit and all changes will be lost. - + Please enter the same passphrase in both boxes. @@ -1116,37 +1139,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. @@ -1230,22 +1253,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. - + The installer failed to format partition %1 on disk '%2'. @@ -1652,16 +1675,6 @@ 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) @@ -1673,7 +1686,7 @@ The installer will quit and all changes will be lost. - + Network Installation. (Disabled: Incorrect configuration) @@ -2019,7 +2032,7 @@ The installer will quit and all changes will be lost. - + Password is empty @@ -2065,6 +2078,19 @@ The installer will quit and all changes will be lost. + + PackageModel + + + Name + + + + + Description + + + Page_Keyboard @@ -2227,34 +2253,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space - - + + New partition - + Name - + File System - + Mount Point - + Size @@ -2322,17 +2348,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2506,65 +2532,65 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. Parámetros erróneos para el trabajo en proceso. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2583,22 +2609,22 @@ Output: - + unknown - + extended - + unformatted - + swap @@ -2652,6 +2678,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2679,140 +2713,152 @@ Output: Formulario - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. - + %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. - + Data partition (%1) - + Unknown system partition (%1) - + %1 system partition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2870,12 +2916,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: - + System requirements @@ -2883,27 +2929,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - + This program will ask you some questions and set up %2 on your computer. @@ -2924,17 +2970,17 @@ Output: SetHostNameJob - + Set hostname %1 - + Set hostname <strong>%1</strong>. - + Setting hostname %1. @@ -2984,82 +3030,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. @@ -3289,47 +3335,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your passwords do not match! @@ -3467,42 +3513,42 @@ Output: - + <h1>Welcome to the %1 installer.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer - + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support @@ -3510,7 +3556,7 @@ Output: WelcomeQmlViewStep - + Welcome @@ -3518,7 +3564,7 @@ Output: WelcomeViewStep - + Welcome @@ -3526,7 +3572,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_et.ts b/lang/calamares_et.ts index 17a50562b..9872aa6b6 100644 --- a/lang/calamares_et.ts +++ b/lang/calamares_et.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 %1 Master Boot Record - + Boot Partition Käivituspartitsioon @@ -42,7 +42,7 @@ Ära paigalda käivituslaadurit - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Valmis @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Käivitan %1 tegevust. - + Bad working directory path Halb töökausta tee - + Working directory %1 for python job %2 is not readable. Töökaust %1 python tööle %2 pole loetav. - + Bad main script file Halb põhiskripti fail - + Main script file %1 for python job %2 is not readable. Põhiskripti fail %1 python tööle %2 pole loetav. - + Boost.Python error in job "%1". Boost.Python viga töös "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,174 +253,174 @@ Calamares::ViewManager - + &Back &Tagasi - + &Next &Edasi - + &Cancel &Tühista - + Cancel setup without changing the system. - + Cancel installation without changing the system. Tühista paigaldamine ilma süsteemi muutmata. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed Calamarese alglaadimine ebaõnnestus - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 ei saa paigaldada. Calamares ei saanud laadida kõiki konfigureeritud mooduleid. See on distributsiooni põhjustatud Calamarese kasutamise viga. - + <br/>The following modules could not be loaded: <br/>Järgnevaid mooduleid ei saanud laadida: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now &Seadista kohe - + &Set up &Seadista - + &Install &Paigalda - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? Tühista paigaldamine? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Kas sa tõesti soovid tühistada praeguse paigaldusprotsessi? Paigaldaja sulgub ning kõik muutused kaovad. - - + + &Yes &Jah - - + + &No &Ei - + &Close &Sulge - + Continue with setup? Jätka seadistusega? - + 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 paigaldaja on tegemas muudatusi sinu kettale, et paigaldada %2.<br/><strong>Sa ei saa neid muudatusi tagasi võtta.</strong> - + &Install now &Paigalda kohe - + Go &back Mine &tagasi - + &Done &Valmis - + The installation is complete. Close the installer. Paigaldamine on lõpetatud. Sulge paigaldaja. - + Error Viga - + Installation Failed Paigaldamine ebaõnnestus @@ -428,22 +428,22 @@ Paigaldaja sulgub ning kõik muutused kaovad. CalamaresPython::Helper - + Unknown exception type Tundmatu veateade - + unparseable Python error mittetöödeldav Python'i viga - + unparseable Python traceback mittetöödeldav Python'i traceback - + Unfetchable Python error. Kättesaamatu Python'i viga. @@ -460,17 +460,17 @@ Paigaldaja sulgub ning kõik muutused kaovad. CalamaresWindow - + %1 Setup Program - + %1 Installer %1 paigaldaja - + Show debug information Kuva silumisteavet @@ -478,7 +478,7 @@ Paigaldaja sulgub ning kõik muutused kaovad. CheckerContainer - + Gathering system information... Hangin süsteemiteavet... @@ -491,134 +491,134 @@ Paigaldaja sulgub ning kõik muutused kaovad. Form - + After: Pärast: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Käsitsi partitsioneerimine</strong><br/>Sa võid ise partitsioone luua või nende suurust muuta. - + Boot loader location: Käivituslaaduri asukoht: - + Select storage de&vice: Vali mäluseade: - - - - + + + + Current: Hetkel: - + Reuse %1 as home partition for %2. Taaskasuta %1 %2 kodupartitsioonina. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Vali vähendatav partitsioon, seejärel sikuta alumist riba suuruse muutmiseks</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> <strong>Vali partitsioon, kuhu paigaldada</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. EFI süsteemipartitsiooni ei leitud sellest süsteemist. Palun mine tagasi ja kasuta käsitsi partitsioonimist, et seadistada %1. - + The EFI system partition at %1 will be used for starting %2. EFI süsteemipartitsioon asukohas %1 kasutatakse %2 käivitamiseks. - + EFI system partition: EFI süsteemipartitsioon: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Sellel mäluseadmel ei paista olevat operatsioonisüsteemi peal. Mida soovid teha?<br/>Sa saad oma valikud üle vaadata ja kinnitada enne kui mistahes muudatus saab mäluseadmele teostatud. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Tühjenda ketas</strong><br/>See <font color="red">kustutab</font> kõik valitud mäluseadmel olevad andmed. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Sellel mäluseadmel on peal %1. Mida soovid teha?<br/>Sa saad oma valikud üle vaadata ja kinnitada enne kui mistahes muudatus saab mäluseadmele teostatud. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Paigalda kõrvale</strong><br/>Paigaldaja vähendab partitsiooni, et teha ruumi operatsioonisüsteemile %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Asenda partitsioon</strong><br/>Asendab partitsiooni operatsioonisüsteemiga %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Sellel mäluseadmel on juba operatsioonisüsteem peal. Mida soovid teha?<br/>Sa saad oma valikud üle vaadata ja kinnitada enne kui mistahes muudatus saab mäluseadmele teostatud. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Sellel mäluseadmel on mitu operatsioonisüsteemi peal. Mida soovid teha?<br/>Sa saad oma valikud üle vaadata ja kinnitada enne kui mistahes muudatus saab mäluseadmele teostatud. @@ -626,17 +626,17 @@ Paigaldaja sulgub ning kõik muutused kaovad. ClearMountsJob - + Clear mounts for partitioning operations on %1 Tühjenda monteeringud partitsioneerimistegevustes %1 juures - + Clearing mounts for partitioning operations on %1. Tühjendan monteeringud partitsioneerimistegevustes %1 juures. - + Cleared all mounts for %1 Kõik monteeringud tühjendatud %1 jaoks @@ -683,10 +683,33 @@ Paigaldaja sulgub ning kõik muutused kaovad. Käsklus peab teadma kasutaja nime, aga kasutajanimi pole defineeritud. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Tere tulemast Calamares'i paigaldajasse %1 jaoks.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Tere tulemast %1 paigaldajasse.</h1> + + ContextualProcessJob - + Contextual Processes Job Kontekstipõhiste protsesside töö @@ -744,27 +767,27 @@ Paigaldaja sulgub ning kõik muutused kaovad. Suurus: - + En&crypt &Krüpti - + Logical Loogiline - + Primary Peamine - + GPT GPT - + Mountpoint already in use. Please select another one. Monteerimispunkt on juba kasutusel. Palun vali mõni teine. @@ -772,22 +795,22 @@ Paigaldaja sulgub ning kõik muutused kaovad. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. Loon uut %1 partitsiooni kettal %2. - + The installer failed to create partition on disk '%1'. Paigaldaja ei suutnud luua partitsiooni kettale "%1". @@ -823,22 +846,22 @@ Paigaldaja sulgub ning kõik muutused kaovad. CreatePartitionTableJob - + Create new %1 partition table on %2. Loo uus %1 partitsioonitabel kohta %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Loo uus <strong>%1</strong> partitsioonitabel kohta <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Loon uut %1 partitsioonitabelit kohta %2. - + The installer failed to create a partition table on %1. Paigaldaja ei suutnud luua partitsioonitabelit kettale %1. @@ -990,13 +1013,13 @@ Paigaldaja sulgub ning kõik muutused kaovad. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1109,7 +1132,7 @@ Paigaldaja sulgub ning kõik muutused kaovad. Kinnita salaväljendit - + Please enter the same passphrase in both boxes. Palun sisesta sama salaväljend mõlemisse kasti. @@ -1117,37 +1140,37 @@ Paigaldaja sulgub ning kõik muutused kaovad. FillGlobalStorageJob - + Set partition information Sea partitsiooni teave - + Install %1 on <strong>new</strong> %2 system partition. Paigalda %1 <strong>uude</strong> %2 süsteemipartitsiooni. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Seadista <strong>uus</strong> %2 partitsioon monteerimiskohaga <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Paigalda %2 %3 süsteemipartitsioonile <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Seadista %3 partitsioon <strong>%1</strong> monteerimiskohaga <strong>%2</strong> - + Install boot loader on <strong>%1</strong>. Paigalda käivituslaadur kohta <strong>%1</strong>. - + Setting up mount points. Seadistan monteerimispunkte. @@ -1231,22 +1254,22 @@ Paigaldaja sulgub ning kõik muutused kaovad. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. Vormindan partitsiooni %1 failisüsteemiga %2. - + The installer failed to format partition %1 on disk '%2'. Paigaldaja ei suutnud vormindada partitsiooni %1 kettal "%2". @@ -1653,16 +1676,6 @@ Paigaldaja sulgub ning kõik muutused kaovad. NetInstallPage - - - Name - Nimi - - - - Description - Kirjeldus - Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1674,7 +1687,7 @@ Paigaldaja sulgub ning kõik muutused kaovad. Võrgupaigaldus. (Keelatud: vastu võetud sobimatud grupiandmed) - + Network Installation. (Disabled: Incorrect configuration) @@ -2020,7 +2033,7 @@ Paigaldaja sulgub ning kõik muutused kaovad. Tundmatu viga - + Password is empty @@ -2066,6 +2079,19 @@ Paigaldaja sulgub ning kõik muutused kaovad. + + PackageModel + + + Name + Nimi + + + + Description + Kirjeldus + + Page_Keyboard @@ -2228,34 +2254,34 @@ Paigaldaja sulgub ning kõik muutused kaovad. PartitionModel - - + + Free Space Tühi ruum - - + + New partition Uus partitsioon - + Name Nimi - + File System Failisüsteem - + Mount Point Monteerimispunkt - + Size Suurus @@ -2323,17 +2349,17 @@ Paigaldaja sulgub ning kõik muutused kaovad. Paigalda käivituslaadur kohta: - + Are you sure you want to create a new partition table on %1? Kas soovid kindlasti luua uut partitsioonitabelit kettale %1? - + Can not create new partition Uut partitsiooni ei saa luua - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Partitsioonitabel kohas %1 juba omab %2 peamist partitsiooni ning rohkem juurde ei saa lisada. Palun eemalda selle asemel üks peamine partitsioon ja lisa juurde laiendatud partitsioon. @@ -2507,14 +2533,14 @@ Paigaldaja sulgub ning kõik muutused kaovad. ProcessResult - + There was no output from the command. Käsul polnud väljundit. - + Output: @@ -2523,52 +2549,52 @@ Väljund: - + External command crashed. Väline käsk jooksis kokku. - + Command <i>%1</i> crashed. Käsk <i>%1</i> jooksis kokku. - + External command failed to start. Välise käsu käivitamine ebaõnnestus. - + Command <i>%1</i> failed to start. Käsu <i>%1</i> käivitamine ebaõnnestus. - + Internal error when starting command. Käsu käivitamisel esines sisemine viga. - + Bad parameters for process job call. Protsessi töö kutsel olid halvad parameetrid. - + External command failed to finish. Väline käsk ei suutnud lõpetada. - + Command <i>%1</i> failed to finish in %2 seconds. Käsk <i>%1</i> ei suutnud lõpetada %2 sekundi jooksul. - + External command finished with errors. Väline käsk lõpetas vigadega. - + Command <i>%1</i> finished with exit code %2. Käsk <i>%1</i> lõpetas sulgemiskoodiga %2. @@ -2587,22 +2613,22 @@ Väljund: Vaikimisi - + unknown tundmatu - + extended laiendatud - + unformatted vormindamata - + swap swap @@ -2656,6 +2682,14 @@ Väljund: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2683,140 +2717,152 @@ Väljund: Form - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Vali, kuhu soovid %1 paigaldada.<br/><font color="red">Hoiatus: </font>see kustutab valitud partitsioonilt kõik failid. - + The selected item does not appear to be a valid partition. Valitud üksus ei paista olevat sobiv partitsioon. - + %1 cannot be installed on empty space. Please select an existing partition. %1 ei saa paigldada tühjale kohale. Palun vali olemasolev partitsioon. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 ei saa paigaldada laiendatud partitsioonile. Palun vali olemasolev põhiline või loogiline partitsioon. - + %1 cannot be installed on this partition. %1 ei saa sellele partitsioonile paigaldada. - + Data partition (%1) Andmepartitsioon (%1) - + Unknown system partition (%1) Tundmatu süsteemipartitsioon (%1) - + %1 system partition (%2) %1 süsteemipartitsioon (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>Partitsioon %1 on liiga väike %2 jaoks. Palun vali partitsioon suurusega vähemalt %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/>Sellest süsteemist ei leitud EFI süsteemipartitsiooni. Palun mine tagasi ja kasuta käsitsi partitsioneerimist, et seadistada %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 paigaldatakse partitsioonile %2.<br/><font color="red">Hoiatus: </font>kõik andmed partitsioonil %2 kaovad. - + The EFI system partition at %1 will be used for starting %2. EFI süsteemipartitsioon asukohas %1 kasutatakse %2 käivitamiseks. - + EFI system partition: EFI süsteemipartitsioon: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job Failisüsteemi suuruse muutmise töö - + Invalid configuration Sobimatu konfiguratsioon - + The file-system resize job has an invalid configuration and will not run. Failisüsteemi suuruse muutmise tööl on sobimatu konfiguratsioon ning see ei käivitu. - - + KPMCore not Available KPMCore pole saadaval - - + Calamares cannot start KPMCore for the file-system resize job. Calamares ei saa KPMCore'i käivitada failisüsteemi suuruse muutmise töö jaoks. - - - - - + + + + + Resize Failed Suuruse muutmine ebaõnnestus - + The filesystem %1 could not be found in this system, and cannot be resized. Failisüsteemi %1 ei leitud sellest süsteemist, seega selle suurust ei saa muuta. - + The device %1 could not be found in this system, and cannot be resized. Seadet %1 ei leitud sellest süsteemist, seega selle suurust ei saa muuta. - - + + The filesystem %1 cannot be resized. Failisüsteemi %1 suurust ei saa muuta. - - + + The device %1 cannot be resized. Seadme %1 suurust ei saa muuta. - + The filesystem %1 must be resized, but cannot. Failisüsteemi %1 suurust tuleb muuta, aga ei saa. - + The device %1 must be resized, but cannot Seadme %1 suurust tuleb muuta, aga ei saa. @@ -2874,12 +2920,12 @@ Väljund: ResultsListDialog - + For best results, please ensure that this computer: Parimate tulemuste jaoks palun veendu, et see arvuti: - + System requirements Süsteeminõudmised @@ -2887,27 +2933,27 @@ Väljund: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> See arvuti ei rahulda %1 paigldamiseks vajalikke minimaaltingimusi.<br/>Paigaldamine ei saa jätkuda. <a href="#details">Detailid...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. See arvuti ei rahulda mõnda %1 paigaldamiseks soovitatud tingimust.<br/>Paigaldamine võib jätkuda, ent mõned funktsioonid võivad olla keelatud. - + This program will ask you some questions and set up %2 on your computer. See programm küsib sult mõned küsimused ja seadistab %2 sinu arvutisse. @@ -2928,17 +2974,17 @@ Väljund: SetHostNameJob - + Set hostname %1 Määra hostinimi %1 - + Set hostname <strong>%1</strong>. Määra hostinimi <strong>%1</strong>. - + Setting hostname %1. Määran hostinime %1. @@ -2988,82 +3034,82 @@ Väljund: SetPartFlagsJob - + Set flags on partition %1. Määratud sildid partitsioonil %1: - + Set flags on %1MiB %2 partition. - + Set flags on new partition. Määra sildid uuele partitsioonile. - + Clear flags on partition <strong>%1</strong>. Tühjenda sildid partitsioonil <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. Tühjenda sildid uuel partitsioonil - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Määra partitsioonile <strong>%1</strong> silt <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Määra uuele partitsioonile silt <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Eemaldan sildid partitsioonilt <strong>%1</strong>. - + Clearing flags on new partition. Eemaldan uuelt partitsioonilt sildid. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Määran sildid <strong>%1</strong> partitsioonile <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Määran sildid <strong>%1</strong> uuele partitsioonile. - + The installer failed to set flags on partition %1. Paigaldaja ei suutnud partitsioonile %1 silte määrata. @@ -3293,47 +3339,47 @@ Väljund: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. Sinu kasutajanimi on liiga pikk. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. Sinu hostinimi on liiga lühike. - + Your hostname is too long. Sinu hostinimi on liiga pikk. - + Your passwords do not match! Sinu paroolid ei ühti! @@ -3471,42 +3517,42 @@ Väljund: &Teave - + <h1>Welcome to the %1 installer.</h1> <h1>Tere tulemast %1 paigaldajasse.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Tere tulemast Calamares'i paigaldajasse %1 jaoks.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer Teave %1 paigaldaja kohta - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 tugi @@ -3514,7 +3560,7 @@ Väljund: WelcomeQmlViewStep - + Welcome Tervist @@ -3522,7 +3568,7 @@ Väljund: WelcomeViewStep - + Welcome Tervist @@ -3530,7 +3576,7 @@ Väljund: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_eu.ts b/lang/calamares_eu.ts index b557d5874..7fb388fc2 100644 --- a/lang/calamares_eu.ts +++ b/lang/calamares_eu.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 %1-(e)n Master Boot Record - + Boot Partition Abio partizioa @@ -42,7 +42,7 @@ Ez instalatu abio kargatzailerik - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Egina @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. %1 eragiketa burutzen. - + Bad working directory path Direktorio ibilbide ezegokia - + Working directory %1 for python job %2 is not readable. %1 lanerako direktorioa %2 python lanak ezin du irakurri. - + Bad main script file Script fitxategi nagusi okerra - + Main script file %1 for python job %2 is not readable. %1 script fitxategi nagusia ezin da irakurri python %2 lanerako - + Boost.Python error in job "%1". Boost.Python errorea "%1" lanean. @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,174 +253,174 @@ Calamares::ViewManager - + &Back &Atzera - + &Next &Hurrengoa - + &Cancel &Utzi - + Cancel setup without changing the system. - + Cancel installation without changing the system. Instalazioa bertan behera utsi da sisteman aldaketarik gabe. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed Calamares instalazioak huts egin du - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 ezin da instalatu. Calamares ez da gai konfiguratutako modulu guztiak kargatzeko. Arazao hau banaketak Calamares erabiltzen duen eragatik da. - + <br/>The following modules could not be loaded: <br/> Ondorengo moduluak ezin izan dira kargatu: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install &Instalatu - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? Bertan behera utzi instalazioa? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Ziur uneko instalazio prozesua bertan behera utzi nahi duzula? Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. - - + + &Yes &Bai - - + + &No &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> %1 instalatzailea zure diskoan aldaketak egitera doa %2 instalatzeko.<br/><strong>Ezingo dituzu desegin aldaketa hauek.</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 @@ -428,22 +428,22 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. CalamaresPython::Helper - + Unknown exception type Salbuespen-mota ezezaguna - + unparseable Python error - + unparseable Python traceback - + Unfetchable Python error. @@ -460,17 +460,17 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. CalamaresWindow - + %1 Setup Program - + %1 Installer %1 Instalatzailea - + Show debug information Erakutsi arazte informazioa @@ -478,7 +478,7 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. CheckerContainer - + Gathering system information... Sistemaren informazioa eskuratzen... @@ -491,134 +491,134 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. Formulario - + After: Ondoren: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Eskuz partizioak landu</strong><br/>Zure kasa sortu edo tamainaz alda dezakezu partizioak. - + Boot loader location: Abio kargatzaile kokapena: - + Select storage de&vice: Aukeratu &biltegiratze-gailua: - - - - + + + + Current: Unekoa: - + Reuse %1 as home partition for %2. Berrerabili %1 home partizio bezala %2rentzat. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Aukeratu partizioa txikitzeko eta gero arrastatu azpiko-barra tamaina aldatzeko</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> <strong>aukeratu partizioa instalatzeko</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Ezin da inon aurkitu EFI sistemako partiziorik sistema honetan. Mesedez joan atzera eta erabili eskuz partizioak lantzea %1 ezartzeko. - + The EFI system partition at %1 will be used for starting %2. %1eko EFI partizio sistema erabiliko da abiarazteko %2. - + EFI system partition: EFI sistema-partizioa: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Biltegiratze-gailuak badirudi ez duela sistema eragilerik. Zer egin nahiko zenuke? <br/>Zure aukerak berrikusteko eta berresteko aukera izango duzu aldaketak gauzatu aurretik biltegiratze-gailuan - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Diskoa ezabatu</strong><br/>Honek orain dauden datu guztiak <font color="red">ezbatuko</font> ditu biltegiratze-gailutik. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Biltegiratze-gailuak %1 dauka. Zer egin nahiko zenuke? <br/>Zure aukerak berrikusteko eta berresteko aukera izango duzu aldaketak gauzatu aurretik biltegiratze-gailuan - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instalatu alboan</strong><br/>Instalatzaileak partizioa txikituko du lekua egiteko %1-(r)i. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Ordeztu partizioa</strong><br/>ordezkatu partizioa %1-(e)kin. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Biltegiragailu honetan badaude jadanik eragile sistema bat. Zer gustatuko litzaizuke egin?<br/>Biltegiragailuan aldaketarik egin baino lehen zure aukerak aztertu eta konfirmatu ahal izango duzu. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Biltegiragailu honetan badaude jadanik eragile sistema batzuk. Zer gustatuko litzaizuke egin?<br/>Biltegiragailuan aldaketarik egin baino lehen zure aukerak aztertu eta konfirmatu ahal izango duzu. @@ -626,17 +626,17 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. ClearMountsJob - + Clear mounts for partitioning operations on %1 Garbitu muntaketa puntuak partizioak egiteko %1 -(e)an. - + Clearing mounts for partitioning operations on %1. Garbitzen muntaketa puntuak partizio eragiketak egiteko %1 -(e)an. - + Cleared all mounts for %1 Muntaketa puntu guztiak garbitu dira %1 -(e)an @@ -683,10 +683,33 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. Komandoak erabiltzailearen izena jakin behar du baina ez da zehaztu erabiltzaile-izenik. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Ongi etorri %1 instalatzailera.</h1> + + ContextualProcessJob - + Contextual Processes Job @@ -744,27 +767,27 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. &Tamaina: - + En&crypt En%kriptatu - + Logical Logikoa - + Primary Primarioa - + GPT GPT - + Mountpoint already in use. Please select another one. Muntatze-puntua erabiltzen. Mesedez aukeratu beste bat. @@ -772,22 +795,22 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. %1 partizioa berria sortzen %2n. - + The installer failed to create partition on disk '%1'. Huts egin du instalatzaileak '%1' diskoan partizioa sortzen. @@ -823,22 +846,22 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. CreatePartitionTableJob - + Create new %1 partition table on %2. Sortu %1 partizio taula berria %2n. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Sortu <strong>%1</strong> partizio taula berria <strong>%2</strong>n (%3). - + Creating new %1 partition table on %2. %1 partizio taula berria %2n sortzen. - + The installer failed to create a partition table on %1. Huts egin du instalatzaileak '%1' diskoan partizioa taula sortzen. @@ -990,13 +1013,13 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1109,7 +1132,7 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. Berretsi pasahitza - + Please enter the same passphrase in both boxes. Mesedez sartu pasahitz berdina bi kutxatan. @@ -1117,37 +1140,37 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. FillGlobalStorageJob - + Set partition information Ezarri partizioaren informazioa - + Install %1 on <strong>new</strong> %2 system partition. Instalatu %1 sistemako %2 partizio <strong>berrian</strong>. - + 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>. Instalatu abio kargatzailea <strong>%1</strong>-(e)n. - + Setting up mount points. Muntatze puntuak ezartzen. @@ -1231,22 +1254,22 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. %1 partizioa formateatzen %2 sistemaz. - + The installer failed to format partition %1 on disk '%2'. Huts egin du instalatzaileak %1 partizioa sortzen '%2' diskoan. @@ -1653,16 +1676,6 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. NetInstallPage - - - Name - Izena - - - - Description - Deskribapena - Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1674,7 +1687,7 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. - + Network Installation. (Disabled: Incorrect configuration) @@ -2020,7 +2033,7 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. Hutsegite ezezaguna - + Password is empty @@ -2066,6 +2079,19 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. + + PackageModel + + + Name + Izena + + + + Description + Deskribapena + + Page_Keyboard @@ -2228,34 +2254,34 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. PartitionModel - - + + Free Space Espazio librea - - + + New partition Partizio berria - + Name Izena - + File System Fitxategi Sistema - + Mount Point Muntatze Puntua - + Size Tamaina @@ -2323,17 +2349,17 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. Abio kargatzailea I&nstalatu bertan: - + Are you sure you want to create a new partition table on %1? Ziur al zaude partizio-taula berri bat %1-(e)an sortu nahi duzula? - + Can not create new partition Ezin da partizio berririk sortu - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2507,13 +2533,13 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira. ProcessResult - + There was no output from the command. - + Output: @@ -2522,52 +2548,52 @@ Irteera: - + External command crashed. Kanpo-komandoak huts egin du. - + Command <i>%1</i> crashed. <i>%1</i> komandoak huts egin du. - + External command failed to start. Ezin izan da %1 kanpo-komandoa abiarazi. - + Command <i>%1</i> failed to start. Ezin izan da <i>%1</i> komandoa abiarazi. - + Internal error when starting command. Barne-akatsa komandoa abiarazterakoan. - + Bad parameters for process job call. - + External command failed to finish. Kanpo-komandoa ez da bukatu. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. Kanpo-komandoak akatsekin bukatu da. - + Command <i>%1</i> finished with exit code %2. @@ -2586,22 +2612,22 @@ Irteera: Lehenetsia - + unknown Ezezaguna - + extended Hedatua - + unformatted Formatugabea - + swap swap @@ -2655,6 +2681,14 @@ Irteera: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2682,140 +2716,152 @@ Irteera: Formulario - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. - + %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. - + Data partition (%1) - + Unknown system partition (%1) - + %1 system partition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. %1eko EFI partizio sistema erabiliko da abiarazteko %2. - + EFI system partition: EFI sistema-partizioa: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration Konfigurazio baliogabea - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2873,12 +2919,12 @@ Irteera: ResultsListDialog - + For best results, please ensure that this computer: Emaitza egokienak lortzeko, ziurtatu ordenagailu honek baduela: - + System requirements Sistemaren betebeharrak @@ -2886,27 +2932,27 @@ Irteera: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Konputagailu honek ez dauzka gutxieneko eskakizunak %1 instalatzeko. <br/>Instalazioak ezin du jarraitu. <a href="#details">Xehetasunak...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Konputagailu honek ez du betetzen gomendatutako zenbait eskakizun %1 instalatzeko. <br/>Instalazioak jarraitu ahal du, baina zenbait ezaugarri desgaituko dira. - + This program will ask you some questions and set up %2 on your computer. Konputagailuan %2 ezartzeko programa honek hainbat galdera egingo dizkizu. @@ -2927,17 +2973,17 @@ Irteera: SetHostNameJob - + Set hostname %1 - + Set hostname <strong>%1</strong>. - + Setting hostname %1. @@ -2987,82 +3033,82 @@ Irteera: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. @@ -3292,47 +3338,47 @@ Irteera: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. Zure erabiltzaile-izena luzeegia da. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. Zure ostalari-izena laburregia da. - + Your hostname is too long. Zure ostalari-izena luzeegia da. - + Your passwords do not match! Pasahitzak ez datoz bat! @@ -3470,42 +3516,42 @@ Irteera: Honi &buruz - + <h1>Welcome to the %1 installer.</h1> <h1>Ongi etorri %1 instalatzailera.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer %1 instalatzaileari buruz - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 euskarria @@ -3513,7 +3559,7 @@ Irteera: WelcomeQmlViewStep - + Welcome Ongi etorri @@ -3521,7 +3567,7 @@ Irteera: WelcomeViewStep - + Welcome Ongi etorri @@ -3529,7 +3575,7 @@ Irteera: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_fa.ts b/lang/calamares_fa.ts index 90ecaf02b..c728485e2 100644 --- a/lang/calamares_fa.ts +++ b/lang/calamares_fa.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 - + Boot Partition @@ -42,7 +42,7 @@ - + %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,173 +253,173 @@ Calamares::ViewManager - + &Back - + &Next - + &Cancel - + Cancel setup without changing the system. - + Cancel installation without changing the system. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. - - + + &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 @@ -427,22 +427,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type - + unparseable Python error - + unparseable Python traceback - + Unfetchable Python error. @@ -459,17 +459,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program - + %1 Installer - + Show debug information @@ -477,7 +477,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... @@ -490,134 +490,134 @@ The installer will quit and all changes will be lost. - + After: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + Select storage de&vice: - - - - + + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -625,17 +625,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 - + Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 @@ -682,10 +682,33 @@ The installer will quit and all changes will be lost. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + + + ContextualProcessJob - + Contextual Processes Job @@ -743,27 +766,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical - + Primary - + GPT - + Mountpoint already in use. Please select another one. @@ -771,22 +794,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. @@ -822,22 +845,22 @@ 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. @@ -989,13 +1012,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) - + %1 - (%2) device[name] - (device-node[name]) @@ -1108,7 +1131,7 @@ The installer will quit and all changes will be lost. - + Please enter the same passphrase in both boxes. @@ -1116,37 +1139,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. @@ -1230,22 +1253,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. - + The installer failed to format partition %1 on disk '%2'. @@ -1652,16 +1675,6 @@ 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) @@ -1673,7 +1686,7 @@ The installer will quit and all changes will be lost. - + Network Installation. (Disabled: Incorrect configuration) @@ -2019,7 +2032,7 @@ The installer will quit and all changes will be lost. - + Password is empty @@ -2065,6 +2078,19 @@ The installer will quit and all changes will be lost. + + PackageModel + + + Name + + + + + Description + + + Page_Keyboard @@ -2227,34 +2253,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space - - + + New partition - + Name - + File System - + Mount Point - + Size @@ -2322,17 +2348,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2506,65 +2532,65 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2583,22 +2609,22 @@ Output: - + unknown - + extended - + unformatted - + swap @@ -2652,6 +2678,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2679,140 +2713,152 @@ Output: - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. - + %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. - + Data partition (%1) - + Unknown system partition (%1) - + %1 system partition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2870,12 +2916,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: - + System requirements @@ -2883,27 +2929,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - + This program will ask you some questions and set up %2 on your computer. @@ -2924,17 +2970,17 @@ Output: SetHostNameJob - + Set hostname %1 - + Set hostname <strong>%1</strong>. - + Setting hostname %1. @@ -2984,82 +3030,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. @@ -3289,47 +3335,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your passwords do not match! @@ -3467,42 +3513,42 @@ Output: - + <h1>Welcome to the %1 installer.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer - + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support @@ -3510,7 +3556,7 @@ Output: WelcomeQmlViewStep - + Welcome @@ -3518,7 +3564,7 @@ Output: WelcomeViewStep - + Welcome @@ -3526,7 +3572,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_fi_FI.ts b/lang/calamares_fi_FI.ts index a616a4fdc..345bd8d36 100644 --- a/lang/calamares_fi_FI.ts +++ b/lang/calamares_fi_FI.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 %1:n MBR - + Boot Partition Käynnistysosio @@ -42,7 +42,7 @@ Älä asenna käynnistyslatainta - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Valmis @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Suoritetaan %1 toimenpidettä. - + Bad working directory path Epäkelpo työskentelyhakemiston polku - + Working directory %1 for python job %2 is not readable. Työkansio %1 pythonin työlle %2 ei ole luettavissa. - + Bad main script file Huono pää-skripti tiedosto - + Main script file %1 for python job %2 is not readable. Pääskriptitiedosto %1 pythonin työlle %2 ei ole luettavissa. - + Boost.Python error in job "%1". Boost.Python virhe työlle "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... Ladataan ... - + QML Step <i>%1</i>. QML-vaihe <i>%1</i>. - + Loading failed. Lataus epäonnistui. @@ -253,175 +253,175 @@ Calamares::ViewManager - + &Back &Takaisin - + &Next &Seuraava - + &Cancel &Peruuta - + Cancel setup without changing the system. Peruuta asennus muuttamatta järjestelmää. - + Cancel installation without changing the system. Peruuta asennus tekemättä muutoksia järjestelmään. - + Setup Failed Asennus epäonnistui - + Would you like to paste the install log to the web? Haluatko liittää asennuslokin verkkoon? - + Install Log Paste URL Asenna lokitiedon URL-osoite - + The upload was unsuccessful. No web-paste was done. Lähettäminen epäonnistui. Web-liittämistä ei tehty. - + Calamares Initialization Failed Calamares-alustustaminen epäonnistui - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 ei voida asentaa. Calamares ei voinut ladata kaikkia määritettyjä moduuleja. Ongelma on siinä, miten jakelu käyttää Calamaresia. - + <br/>The following modules could not be loaded: <br/>Seuraavia moduuleja ei voitu ladata: - + Continue with installation? Jatka asennusta? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> %1 asennusohjelma on aikeissa tehdä muutoksia levylle, jotta voit määrittää kohteen %2.<br/><strong>Et voi kumota näitä muutoksia.</strong> - + &Set up now &Määritä nyt - + &Set up &Määritä - + &Install &Asenna - + Setup is complete. Close the setup program. Asennus on valmis. Sulje asennusohjelma. - + Cancel setup? Peruuta asennus? - + Cancel installation? Peruuta asennus? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. Haluatko todella peruuttaa nykyisen asennuksen? Asennusohjelma lopetetaan ja kaikki muutokset menetetään. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Oletko varma että haluat peruuttaa käynnissä olevan asennusprosessin? Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. - - + + &Yes &Kyllä - - + + &No &Ei - + &Close &Sulje - + Continue with setup? Jatka asennusta? - + 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> Asennus ohjelman %1 on tehtävä muutoksia levylle, jotta %2 voidaan asentaa.<br/><strong>Et voi kumota näitä muutoksia.</strong> - + &Install now &Asenna nyt - + Go &back Mene &takaisin - + &Done &Valmis - + The installation is complete. Close the installer. Asennus on valmis. Sulje asennusohjelma. - + Error Virhe - + Installation Failed Asennus Epäonnistui @@ -429,22 +429,22 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. CalamaresPython::Helper - + Unknown exception type Tuntematon poikkeustyyppi - + unparseable Python error jäsentämätön Python virhe - + unparseable Python traceback jäsentämätön Python jäljitys - + Unfetchable Python error. Python virhettä ei voitu hakea. @@ -462,17 +462,17 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. CalamaresWindow - + %1 Setup Program %1 Asennusohjelma - + %1 Installer %1 Asennusohjelma - + Show debug information Näytä virheenkorjaustiedot @@ -480,7 +480,7 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. CheckerContainer - + Gathering system information... Kerätään järjestelmän tietoja... @@ -493,134 +493,134 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. Lomake - + After: Jälkeen: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Manuaalinen osiointi </strong><br/>Voit luoda tai muuttaa osioita itse. - + Boot loader location: Käynnistyksen lataajan sijainti: - + Select storage de&vice: Valitse tallennus&laite: - - - - + + + + Current: Nykyinen: - + Reuse %1 as home partition for %2. Käytä %1 uudelleen kotiosiona kohteelle %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Valitse supistettava osio ja säädä alarivillä kokoa vetämällä</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 supistetaan %2Mib:iin ja uusi %3MiB-osio luodaan kohteelle %4. - + <strong>Select a partition to install on</strong> <strong>Valitse asennettava osio</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. EFI-osiota ei löydy mistään tässä järjestelmässä. Siirry takaisin ja käytä manuaalista osiointia, kun haluat määrittää %1 - + The EFI system partition at %1 will be used for starting %2. EFI-järjestelmän osiota %1 käytetään käynnistettäessä %2. - + EFI system partition: EFI järjestelmäosio - + 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. Tällä tallennuslaitteella ei näytä olevan käyttöjärjestelmää. Mitä haluat tehdä?<br/>Voit tarkistaa ja vahvistaa valintasi ennen kuin tallennuslaitteeseen tehdään muutoksia. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Tyhjennä levy</strong><br/>Tämä <font color="red">poistaa</font> kaikki tiedot valitussa tallennuslaitteessa. - + 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. Tässä tallennuslaitteessa on %1 dataa. Mitä haluat tehdä?<br/>Voit tarkistaa ja vahvistaa valintasi ennen kuin tallennuslaitteeseen tehdään muutoksia. - + No Swap Ei välimuistia - + Reuse Swap Kierrätä välimuistia - + Swap (no Hibernate) Välimuisti (ei lepotilaa) - + Swap (with Hibernate) Välimuisti (lepotilan kanssa) - + Swap to file Välimuisti tiedostona - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Asenna nykyisen rinnalle</strong><br/>Asennus ohjelma supistaa osion tehdäkseen tilaa kohteelle %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Osion korvaaminen</strong><br/>korvaa osion %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. Tämä tallennuslaite sisältää jo käyttöjärjestelmän. Mitä haluaisit tehdä?<br/>Voit tarkistaa ja vahvistaa valintasi, ennen kuin tallennuslaitteeseen tehdään muutoksia. - + 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. Tämä tallennuslaite sisältää jo useita käyttöjärjestelmiä. Mitä haluaisit tehdä?<br/>Voit tarkistaa ja vahvistaa valintasi, ennen kuin tallennuslaitteeseen tehdään muutoksia. @@ -628,17 +628,17 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. ClearMountsJob - + Clear mounts for partitioning operations on %1 Poista osiointitoimenpiteitä varten tehdyt liitokset kohteesta %1 - + Clearing mounts for partitioning operations on %1. Tyhjennät kiinnitys osiointitoiminnoille %1. - + Cleared all mounts for %1 Kaikki liitokset poistettu kohteesta %1 @@ -685,10 +685,33 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. Komennon on tiedettävä käyttäjän nimi, mutta käyttäjän tunnusta ei ole määritetty. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>Tervetuloa Calamares -asennusohjelmaan %1.</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>Tervetuloa %1 asennukseen.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Tervetuloa Calamares -asennusohjelmaan %1.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Tervetuloa %1 -asennusohjelmaan.</h1> + + ContextualProcessJob - + Contextual Processes Job Prosessien yhteydessä tehtävät @@ -746,27 +769,27 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. K&oko: - + En&crypt Sa&laa - + Logical Looginen - + Primary Ensisijainen - + GPT GPT - + Mountpoint already in use. Please select another one. Asennuskohde on jo käytössä. Valitse toinen. @@ -774,22 +797,22 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. Luo uusi %2Mib-osio %4 (%3) tiedostojärjestelmällä %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Luo uusi <strong>%2Mib</strong> osio <strong>%4</strong> (%3) tiedostojärjestelmällä <strong>%1</strong>. - + Creating new %1 partition on %2. Luodaan uutta %1-osiota kohteessa %2. - + The installer failed to create partition on disk '%1'. Asennusohjelma epäonnistui osion luonnissa levylle '%1'. @@ -825,22 +848,22 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. CreatePartitionTableJob - + Create new %1 partition table on %2. Luo uusi %1 osiotaulukko kohteessa %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Luo uusi <strong>%1</strong> osiotaulukko kohteessa <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Luodaan uutta %1 osiotaulukkoa kohteelle %2. - + The installer failed to create a partition table on %1. Asennusohjelma epäonnistui osiotaulukon luonnissa kohteeseen %1. @@ -992,13 +1015,13 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1111,7 +1134,7 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. Vahvista salasana - + Please enter the same passphrase in both boxes. Anna sama salasana molemmissa ruuduissa. @@ -1119,37 +1142,37 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. FillGlobalStorageJob - + Set partition information Aseta osion tiedot - + Install %1 on <strong>new</strong> %2 system partition. Asenna %1 <strong>uusi</strong> %2 järjestelmä osio. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Määritä <strong>uusi</strong> %2 -osio liitepisteellä<strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Asenna %2 - %3 -järjestelmän osioon <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Määritä %3 osio <strong>%1</strong> jossa on liitäntäpiste <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Asenna käynnistyslatain <strong>%1</strong>. - + Setting up mount points. Liitosten määrittäminen. @@ -1233,22 +1256,22 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. Alustaa osiota %1 (tiedostojärjestelmä: %2, koko: %3 MiB) - %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. Alustus <strong>%3MiB</strong> osio <strong>%1</strong> tiedostojärjestelmällä <strong>%2</strong>. - + Formatting partition %1 with file system %2. Alustaa osiota %1 tiedostojärjestelmällä %2. - + The installer failed to format partition %1 on disk '%2'. Levyn '%2' osion %1 alustus epäonnistui. @@ -1655,16 +1678,6 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. NetInstallPage - - - Name - Nimi - - - - Description - Kuvaus - Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1676,7 +1689,7 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. Verkkoasennus. (Ei käytössä: Vastaanotettiin virheellisiä ryhmän tietoja) - + Network Installation. (Disabled: Incorrect configuration) Verkko asennus. (Ei käytössä: virheellinen määritys) @@ -2022,7 +2035,7 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. Tuntematon virhe - + Password is empty Salasana on tyhjä @@ -2068,6 +2081,19 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. Paketit + + PackageModel + + + Name + Nimi + + + + Description + Kuvaus + + Page_Keyboard @@ -2230,34 +2256,34 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. PartitionModel - - + + Free Space Vapaa tila - - + + New partition Uusi osiointi - + Name Nimi - + File System Tiedostojärjestelmä - + Mount Point Liitoskohta - + Size Koko @@ -2325,17 +2351,17 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. A&senna käynnistyslatain: - + Are you sure you want to create a new partition table on %1? Oletko varma, että haluat luoda uuden osion %1? - + Can not create new partition Ei voi luoda uutta osiota - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. %1 osio-taulukossa on jo %2 ensisijaista osiota, eikä sitä voi lisätä. Poista yksi ensisijainen osio ja lisää laajennettu osio. @@ -2509,14 +2535,14 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. ProcessResult - + There was no output from the command. Komentoa ei voitu ajaa. - + Output: @@ -2525,52 +2551,52 @@ Ulostulo: - + External command crashed. Ulkoinen komento kaatui. - + Command <i>%1</i> crashed. Komento <i>%1</i> kaatui. - + External command failed to start. Ulkoisen komennon käynnistäminen epäonnistui. - + Command <i>%1</i> failed to start. Komennon <i>%1</i> käynnistäminen epäonnistui. - + Internal error when starting command. Sisäinen virhe käynnistettäessä komentoa. - + Bad parameters for process job call. Huonot parametrit prosessin kutsuun. - + External command failed to finish. Ulkoinen komento ei onnistunut. - + Command <i>%1</i> failed to finish in %2 seconds. Komento <i>%1</i> epäonnistui %2 sekunnissa. - + External command finished with errors. Ulkoinen komento päättyi virheisiin. - + Command <i>%1</i> finished with exit code %2. Komento <i>%1</i> päättyi koodiin %2. @@ -2589,22 +2615,22 @@ Ulostulo: Oletus - + unknown tuntematon - + extended laajennettu - + unformatted formatoimaton - + swap swap @@ -2658,6 +2684,14 @@ Ulostulo: Uutta satunnaista tiedostoa ei voitu luoda <pre>%1</pre>. + + RemoveUserJob + + + Remove live user from target system + Poista Live-käyttäjä kohdejärjestelmästä + + RemoveVolumeGroupJob @@ -2685,140 +2719,153 @@ Ulostulo: Lomake - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Valitse minne %1 asennetaan.<br/><font color="red">Varoitus: </font>tämä poistaa kaikki tiedostot valitulta osiolta. - + The selected item does not appear to be a valid partition. Valitsemaasi kohta ei näytä olevan kelvollinen osio. - + %1 cannot be installed on empty space. Please select an existing partition. %1 ei voi asentaa tyhjään tilaan. Valitse olemassa oleva osio. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 ei voida asentaa jatketun osion. Valitse olemassa oleva ensisijainen tai looginen osio. - + %1 cannot be installed on this partition. %1 ei voida asentaa tähän osioon. - + Data partition (%1) Data osio (%1) - + Unknown system partition (%1) Tuntematon järjestelmä osio (%1) - + %1 system partition (%2) %1 järjestelmäosio (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>Osio %1 on liian pieni %2. Valitse osio, jonka kapasiteetti on vähintään %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/>EFI-järjestelmäosiota ei löydy mistään tässä järjestelmässä. Palaa takaisin ja käytä manuaalista osiointia määrittämällä %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 asennetaan %2.<br/><font color="red">Varoitus: </font>kaikki osion %2 tiedot katoavat. - + The EFI system partition at %1 will be used for starting %2. EFI-järjestelmän osiota %1 käytetään käynnistettäessä %2. - + EFI system partition: EFI järjestelmäosio + + RequirementsModel + + + This program will ask you some questions and set up your installation + Tämä ohjelma kysyy sinulta joitakin kysymyksiä ja perustaa asennuksen + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + Tämä ohjelma ei täytä asennuksen vähimmäisvaatimuksia. +Asennusta ei voi jatkaa + + ResizeFSJob - + Resize Filesystem Job Muuta tiedostojärjestelmän kokoa - + Invalid configuration Virheellinen konfiguraatio - + The file-system resize job has an invalid configuration and will not run. Tiedostojärjestelmän koon muutto ei kelpaa eikä sitä suoriteta. - - + KPMCore not Available KPMCore ei saatavilla - - + Calamares cannot start KPMCore for the file-system resize job. Calamares ei voi käynnistää KPMCore-tiedostoa tiedostojärjestelmän koon muuttamiseksi. - - - - - + + + + + Resize Failed Kokomuutos epäonnistui - + The filesystem %1 could not be found in this system, and cannot be resized. Tiedostojärjestelmää %1 ei löydy tästä järjestelmästä, eikä sen kokoa voi muuttaa. - + The device %1 could not be found in this system, and cannot be resized. Laitetta %1 ei löydy tästä järjestelmästä, eikä sen kokoa voi muuttaa. - - + + The filesystem %1 cannot be resized. Tiedostojärjestelmän %1 kokoa ei voi muuttaa. - - + + The device %1 cannot be resized. Laitteen %1 kokoa ei voi muuttaa. - + The filesystem %1 must be resized, but cannot. Tiedostojärjestelmän %1 kokoa on muutettava, mutta ei onnistu. - + The device %1 must be resized, but cannot Laitteen %1 kokoa on muutettava, mutta ei onnistu. @@ -2876,12 +2923,12 @@ Ulostulo: ResultsListDialog - + For best results, please ensure that this computer: Saadaksesi parhaan lopputuloksen, tarkista että tämä tietokone: - + System requirements Järjestelmävaatimukset @@ -2889,28 +2936,28 @@ Ulostulo: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> Tämä tietokone ei täytä vähimmäisvaatimuksia, %1.<br/>Asennusta ei voi jatkaa. <a href="#details">Yksityiskohdat...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Tämä tietokone ei täytä asennuksen vähimmäisvaatimuksia, %1.<br/>Asennus ei voi jatkua. <a href="#details">Yksityiskohdat...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. Tämä tietokone ei täytä joitakin suositeltuja vaatimuksia %1.<br/>Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Tämä tietokone ei täytä joitakin suositeltuja vaatimuksia %1. Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä. - + This program will ask you some questions and set up %2 on your computer. Tämä ohjelma kysyy joitakin kysymyksiä %2 ja asentaa tietokoneeseen. @@ -2931,17 +2978,17 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä. SetHostNameJob - + Set hostname %1 Aseta isäntänimi %1 - + Set hostname <strong>%1</strong>. Aseta koneellenimi <strong>%1</strong>. - + Setting hostname %1. Asetetaan koneellenimi %1. @@ -2991,82 +3038,82 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä. SetPartFlagsJob - + Set flags on partition %1. Aseta liput osioon %1. - + Set flags on %1MiB %2 partition. Aseta liput %1MiB %2 osioon. - + Set flags on new partition. Aseta liput uuteen osioon. - + Clear flags on partition <strong>%1</strong>. Poista liput osiosta <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. Poista liput %1MiB <strong>%2</strong> osiosta. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. Lippu %1MiB <strong>%2</strong> osiosta <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. Tyhjennä liput %1MiB <strong>%2</strong> osiossa. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. Asetetaan liput <strong>%3</strong> %1MiB <strong>%2</strong> osioon. - + Clear flags on new partition. Tyhjennä liput uuteen osioon. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Merkitse osio <strong>%1</strong> - <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Merkitse uusi osio <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Lipun poisto osiosta <strong>%1</strong>. - + Clearing flags on new partition. Uusien osioiden lippujen poistaminen. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Lippujen <strong>%2</strong> asettaminen osioon <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Asetetaan liput <strong>%1</strong> uuteen osioon. - + The installer failed to set flags on partition %1. Asennusohjelma ei voinut asettaa lippuja osioon %1. @@ -3296,47 +3343,47 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä. UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>Jos useampi kuin yksi henkilö käyttää tätä tietokonetta, voit luoda useita tilejä asennuksen jälkeen.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>Jos useampi kuin yksi henkilö käyttää tätä tietokonetta, voit luoda useita tilejä asennuksen jälkeen.</small> - + Your username is too long. Käyttäjänimesi on liian pitkä. - + Your username must start with a lowercase letter or underscore. Käyttäjätunnuksesi täytyy alkaa pienillä kirjaimilla tai alaviivoilla. - + Only lowercase letters, numbers, underscore and hyphen are allowed. Vain pienet kirjaimet, numerot, alaviivat ja tavuviivat ovat sallittuja. - + Only letters, numbers, underscore and hyphen are allowed. Vain kirjaimet, numerot, alaviivat ja tavuviivat ovat sallittuja. - + Your hostname is too short. Isäntänimesi on liian lyhyt. - + Your hostname is too long. Isäntänimesi on liian pitkä. - + Your passwords do not match! Salasanasi eivät täsmää! @@ -3474,42 +3521,42 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä.&Tietoa - + <h1>Welcome to the %1 installer.</h1> <h1>Tervetuloa %1 -asennusohjelmaan.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Tervetuloa Calamares -asennusohjelmaan %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>Tervetuloa Calamares -asennusohjelmaan %1.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>Tervetuloa %1 asennukseen.</h1> - + About %1 setup Tietoja %1 asetuksista - + About %1 installer Tietoa %1 asennusohjelmasta - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <h1>%1</h1><br/><strong>%2<br/>- %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Kiitokset <a href="https://calamares.io/team/">Calamares-tiimille</a> ja <a href="https://www.transifex.com/calamares/calamares/">Calamares kääntäjille</a>.<br/><br/><a href="https://calamares.io/">Calamaresin</a> kehitystä sponsoroi <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 tuki @@ -3517,7 +3564,7 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä. WelcomeQmlViewStep - + Welcome Tervetuloa @@ -3525,7 +3572,7 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä. WelcomeViewStep - + Welcome Tervetuloa @@ -3533,7 +3580,7 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä. notesqml - + <h3>%1</h3> <p>These are example release notes.</p> <h3>%1</h3> diff --git a/lang/calamares_fr.ts b/lang/calamares_fr.ts index 593d68f5a..5a4e090a0 100644 --- a/lang/calamares_fr.ts +++ b/lang/calamares_fr.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Master Boot Record de %1 - + Boot Partition Partition de démarrage @@ -42,7 +42,7 @@ Ne pas installer de chargeur de démarrage - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Fait @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Exécution de l'opération %1. - + Bad working directory path Chemin du répertoire de travail invalide - + Working directory %1 for python job %2 is not readable. Le répertoire de travail %1 pour le job python %2 n'est pas accessible en lecture. - + Bad main script file Fichier de script principal invalide - + Main script file %1 for python job %2 is not readable. Le fichier de script principal %1 pour la tâche python %2 n'est pas accessible en lecture. - + Boost.Python error in job "%1". Erreur Boost.Python pour le job "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... Chargement... - + QML Step <i>%1</i>. - + Loading failed. Échec de chargement @@ -253,175 +253,175 @@ Calamares::ViewManager - + &Back &Précédent - + &Next &Suivant - + &Cancel &Annuler - + Cancel setup without changing the system. Annuler la configuration sans toucher au système. - + Cancel installation without changing the system. Annuler l'installation sans modifier votre système. - + Setup Failed Échec de la configuration - + Would you like to paste the install log to the web? Voulez-vous copier le journal d'installation sur le Web ? - + Install Log Paste URL URL de copie du journal d'installation - + The upload was unsuccessful. No web-paste was done. L'envoi a échoué. La copie sur le web n'a pas été effectuée. - + Calamares Initialization Failed L'initialisation de Calamares a échoué - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 n'a pas pu être installé. Calamares n'a pas pu charger tous les modules configurés. C'est un problème avec la façon dont Calamares est utilisé par la distribution. - + <br/>The following modules could not be loaded: Les modules suivants n'ont pas pu être chargés : - + Continue with installation? Continuer avec l'installation ? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> Le programme de configuration de %1 est sur le point de procéder aux changements sur le disque afin de configurer %2.<br/> <strong>Vous ne pourrez pas annulez ces changements.</strong> - + &Set up now &Configurer maintenant - + &Set up &Configurer - + &Install &Installer - + Setup is complete. Close the setup program. La configuration est terminée. Fermer le programme de configuration. - + Cancel setup? Annuler la configuration ? - + Cancel installation? Abandonner l'installation ? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. Voulez-vous réellement abandonner le processus de configuration ? Le programme de configuration se fermera et les changements seront perdus. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Voulez-vous réellement abandonner le processus d'installation ? L'installateur se fermera et les changements seront perdus. - - + + &Yes &Oui - - + + &No &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é @@ -429,22 +429,22 @@ L'installateur se fermera et les changements seront perdus. CalamaresPython::Helper - + Unknown exception type Type d'exception inconnue - + unparseable Python error Erreur Python non analysable - + unparseable Python traceback Traçage Python non exploitable - + Unfetchable Python error. Erreur Python non rapportable. @@ -462,17 +462,17 @@ L'installateur se fermera et les changements seront perdus. CalamaresWindow - + %1 Setup Program Programme de configuration de %1 - + %1 Installer Installateur %1 - + Show debug information Afficher les informations de dépannage @@ -480,7 +480,7 @@ L'installateur se fermera et les changements seront perdus. CheckerContainer - + Gathering system information... Récupération des informations système... @@ -493,134 +493,134 @@ L'installateur se fermera et les changements seront perdus. Formulaire - + After: Après: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Partitionnement manuel</strong><br/>Vous pouvez créer ou redimensionner vous-même des partitions. - + Boot loader location: Emplacement du chargeur de démarrage: - + Select storage de&vice: Sélectionnez le support de sto&ckage : - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 va être réduit à %2Mio et une nouvelle partition de %3Mio va être créée pour %4. - + <strong>Select a partition to install on</strong> <strong>Sélectionner une partition pour l'installation</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Une partition système EFI n'a pas pu être trouvée sur ce système. Veuillez retourner à l'étape précédente et sélectionner le partitionnement manuel pour configurer %1. - + The EFI system partition at %1 will be used for starting %2. La partition système EFI sur %1 va être utilisée pour démarrer %2. - + EFI system partition: Partition système EFI : - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Ce périphérique de stockage ne semble pas contenir de système d'exploitation. Que souhaitez-vous faire ?<br/>Vous pourrez relire et confirmer vos choix avant que les modifications soient effectuées sur le périphérique de stockage. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Effacer le disque</strong><br/>Ceci va <font color="red">effacer</font> toutes les données actuellement présentes sur le périphérique de stockage sélectionné. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Ce périphérique de stockage contient %1. Que souhaitez-vous faire ?<br/>Vous pourrez relire et confirmer vos choix avant que les modifications soient effectuées sur le périphérique de stockage. - + No Swap Aucun Swap - + Reuse Swap Réutiliser le Swap - + Swap (no Hibernate) Swap (sans hibernation) - + Swap (with Hibernate) Swap (avec hibernation) - + Swap to file Swap dans un fichier - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Installer à côté</strong><br/>L'installateur va réduire une partition pour faire de la place pour %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Remplacer une partition</strong><br>Remplace une partition par %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Ce périphérique de stockage contient déjà un système d'exploitation. Que souhaitez-vous faire ?<br/>Vous pourrez relire et confirmer vos choix avant que les modifications soient effectuées sur le périphérique de stockage. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Ce péiphérique de stockage contient déjà plusieurs systèmes d'exploitation. Que souhaitez-vous faire ?<br/>Vous pourrez relire et confirmer vos choix avant que les modifications soient effectuées sur le périphérique de stockage. @@ -628,17 +628,17 @@ L'installateur se fermera et les changements seront perdus. ClearMountsJob - + Clear mounts for partitioning operations on %1 Retirer les montages pour les opérations de partitionnement sur %1 - + Clearing mounts for partitioning operations on %1. Libération des montages pour les opérations de partitionnement sur %1. - + Cleared all mounts for %1 Tous les montages ont été retirés pour %1 @@ -685,10 +685,33 @@ L'installateur se fermera et les changements seront perdus. La commande a besoin de connaître le nom de l'utilisateur, mais aucun nom d'utilisateur n'est défini. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>Bienvenue dans le programme de configuration Calamares pour %1.</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>Bienvenue dans la configuration de %1.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + Bien dans l'installateur Calamares pour %1. + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Bienvenue dans l'installateur de %1.</h1> + + ContextualProcessJob - + Contextual Processes Job Tâche des processus contextuels @@ -746,27 +769,27 @@ L'installateur se fermera et les changements seront perdus. Ta&ille : - + En&crypt Chi&ffrer - + Logical Logique - + Primary Primaire - + GPT GPT - + Mountpoint already in use. Please select another one. Le point de montage est déjà utilisé. Merci d'en sélectionner un autre. @@ -774,22 +797,22 @@ L'installateur se fermera et les changements seront perdus. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. Créer une nouvelle partition de %2Mio sur %4 (%3) avec le système de fichier %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Créer une nouvelle partition de <strong>%2Mio</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'. @@ -825,22 +848,22 @@ 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. @@ -992,13 +1015,13 @@ L'installateur se fermera et les changements seront perdus. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1111,7 +1134,7 @@ L'installateur se fermera et les changements seront perdus. Confirmez la phrase de passe - + Please enter the same passphrase in both boxes. Merci d'entrer la même phrase de passe dans les deux champs. @@ -1119,37 +1142,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. @@ -1233,22 +1256,22 @@ L'installateur se fermera et les changements seront perdus. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. Formater la partition %1 (système de fichiers : %2, taille : %3 Mio) sur %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. Formater la partition <strong>%1</strong> de <strong>%3Mio</strong>avec le système de fichier <strong>%2</strong>. - + Formatting partition %1 with file system %2. Formatage de la partition %1 avec le système de fichiers %2. - + The installer failed to format partition %1 on disk '%2'. Le programme d'installation n'a pas pu formater la partition %1 sur le disque '%2'. @@ -1655,16 +1678,6 @@ 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) @@ -1676,7 +1689,7 @@ L'installateur se fermera et les changements seront perdus. Installation par le réseau. (Désactivée : données de groupes reçues invalides) - + Network Installation. (Disabled: Incorrect configuration) Installation réseau. (Désactivée : configuration incorrecte) @@ -2022,7 +2035,7 @@ L'installateur se fermera et les changements seront perdus. Erreur inconnue - + Password is empty Le mot de passe est vide @@ -2068,6 +2081,19 @@ L'installateur se fermera et les changements seront perdus. Paquets + + PackageModel + + + Name + Nom + + + + Description + Description + + Page_Keyboard @@ -2230,34 +2256,34 @@ L'installateur se fermera et les changements seront perdus. PartitionModel - - + + Free Space Espace libre - - + + New partition Nouvelle partition - + Name Nom - + File System Système de fichiers - + Mount Point Point de montage - + Size Taille @@ -2325,17 +2351,17 @@ L'installateur se fermera et les changements seront perdus. Installer le chargeur de démarrage sur : - + Are you sure you want to create a new partition table on %1? Êtes-vous sûr de vouloir créer une nouvelle table de partitionnement sur %1 ? - + Can not create new partition Impossible de créer une nouvelle partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. La table de partition sur %1 contient déjà %2 partitions primaires, et aucune supplémentaire ne peut être ajoutée. Veuillez supprimer une partition primaire et créer une partition étendue à la place. @@ -2510,14 +2536,14 @@ Vous pouvez obtenir un aperçu des différentes apparences en cliquant sur celle ProcessResult - + There was no output from the command. Il y a eu aucune sortie de la commande - + Output: @@ -2526,52 +2552,52 @@ Sortie - + External command crashed. La commande externe s'est mal terminée. - + Command <i>%1</i> crashed. La commande <i>%1</i> s'est arrêtée inopinément. - + External command failed to start. La commande externe n'a pas pu être lancée. - + Command <i>%1</i> failed to start. La commande <i>%1</i> n'a pas pu être lancée. - + Internal error when starting command. Erreur interne au lancement de la commande - + Bad parameters for process job call. Mauvais paramètres pour l'appel au processus de job. - + External command failed to finish. La commande externe ne s'est pas terminée. - + Command <i>%1</i> failed to finish in %2 seconds. La commande <i>%1</i> ne s'est pas terminée en %2 secondes. - + External command finished with errors. La commande externe s'est terminée avec des erreurs. - + Command <i>%1</i> finished with exit code %2. La commande <i>%1</i> s'est terminée avec le code de sortie %2. @@ -2590,22 +2616,22 @@ Sortie Défaut - + unknown inconnu - + extended étendu - + unformatted non formaté - + swap swap @@ -2659,6 +2685,14 @@ Sortie Impossible de créer le nouveau fichier aléatoire <pre>%1</pre>. + + RemoveUserJob + + + Remove live user from target system + Supprimer l'utilisateur live du système cible + + RemoveVolumeGroupJob @@ -2686,140 +2720,152 @@ Sortie Formulaire - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Sélectionnez ou installer %1.<br><font color="red">Attention: </font>ceci va effacer tous les fichiers sur la partition sélectionnée. - + The selected item does not appear to be a valid partition. L'objet sélectionné ne semble pas être une partition valide. - + %1 cannot be installed on empty space. Please select an existing partition. %1 ne peut pas être installé sur un espace vide. Merci de sélectionner une partition existante. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 ne peut pas être installé sur une partition étendue. Merci de sélectionner une partition primaire ou logique existante. - + %1 cannot be installed on this partition. %1 ne peut pas être installé sur cette partition. - + Data partition (%1) Partition de données (%1) - + Unknown system partition (%1) Partition système inconnue (%1) - + %1 system partition (%2) Partition système %1 (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>La partition %1 est trop petite pour %2. Merci de sélectionner une partition avec au moins %3 Gio de capacité. - + <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/>Une partition système EFI n'a pas pu être localisée sur ce système. Veuillez revenir en arrière et utiliser le partitionnement manuel pour configurer %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 va être installé sur %2.<br/><font color="red">Attention:</font> toutes les données sur la partition %2 seront perdues. - + The EFI system partition at %1 will be used for starting %2. La partition système EFI sur %1 sera utilisée pour démarrer %2. - + EFI system partition: Partition système EFI: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job Tâche de redimensionnement du système de fichiers - + Invalid configuration Configuration incorrecte - + The file-system resize job has an invalid configuration and will not run. La tâche de redimensionnement du système de fichier a une configuration incorrecte et ne sera pas exécutée. - - + KPMCore not Available KPMCore n'est pas disponible - - + Calamares cannot start KPMCore for the file-system resize job. Calamares ne peut pas démarrer KPMCore pour la tâche de redimensionnement du système de fichiers. - - - - - + + + + + Resize Failed Échec du redimensionnement - + The filesystem %1 could not be found in this system, and cannot be resized. Le système de fichiers %1 n'a pas été trouvé sur ce système, et ne peut pas être redimensionné. - + The device %1 could not be found in this system, and cannot be resized. Le périphérique %1 n'a pas été trouvé sur ce système, et ne peut pas être redimensionné. - - + + The filesystem %1 cannot be resized. Le système de fichiers %1 ne peut pas être redimensionné. - - + + The device %1 cannot be resized. Le périphérique %1 ne peut pas être redimensionné. - + The filesystem %1 must be resized, but cannot. Le système de fichiers %1 doit être redimensionné, mais c'est impossible. - + The device %1 must be resized, but cannot Le périphérique %1 doit être redimensionné, mais c'est impossible. @@ -2877,12 +2923,12 @@ Sortie ResultsListDialog - + For best results, please ensure that this computer: Pour de meilleur résultats, merci de s'assurer que cet ordinateur : - + System requirements Prérequis système @@ -2890,27 +2936,27 @@ Sortie ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> Cet ordinateur ne satisfait pas les minimum prérequis pour configurer %1.<br/>La configuration ne peut pas continuer. <a href="#details">Détails...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Cet ordinateur ne satisfait pas les minimum prérequis pour installer %1.<br/>L'installation ne peut pas continuer. <a href="#details">Détails...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. Cet ordinateur ne satisfait pas certains des prérequis recommandés pour configurer %1.<br/>La configuration peut continuer, mais certaines fonctionnalités pourraient être désactivées. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Cet ordinateur ne satisfait pas certains des prérequis recommandés pour installer %1.<br/>L'installation peut continuer, mais certaines fonctionnalités pourraient être désactivées. - + This program will ask you some questions and set up %2 on your computer. Ce programme va vous poser quelques questions et configurer %2 sur votre ordinateur. @@ -2931,17 +2977,17 @@ Sortie SetHostNameJob - + Set hostname %1 Définir le nom d'hôte %1 - + Set hostname <strong>%1</strong>. Configurer le nom d'hôte <strong>%1</strong>. - + Setting hostname %1. Configuration du nom d'hôte %1. @@ -2991,82 +3037,82 @@ Sortie SetPartFlagsJob - + Set flags on partition %1. Configurer les drapeaux sur la partition %1. - + Set flags on %1MiB %2 partition. Configurer les drapeaux sur la partition %2 de %1 Mio. - + Set flags on new partition. Configurer les drapeaux sur la nouvelle partition. - + Clear flags on partition <strong>%1</strong>. Réinitialisez les drapeaux sur la partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. Réinitialisez les drapeaux sur la partition <strong>%2</strong> de %1Mio. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. Marquer la partition <strong>%2</strong> de %1 Mio comme <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. Réinitialisez les drapeaux sur la partition <strong>%2</strong> de %1 Mio. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. Configuration des drapeaux <strong>%3</strong> pour la partition <strong>%2</strong> de %1 Mio. - + Clear flags on new partition. Réinitialisez les drapeaux sur la nouvelle partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Marquer la partition <strong>%1</strong> comme <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Marquer la nouvelle partition comme <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Réinitialisation des drapeaux pour la partition <strong>%1</strong>. - + Clearing flags on new partition. Réinitialisez les drapeaux sur la nouvelle partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Configuration des drapeaux <strong>%2</strong> pour la partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Configuration des drapeaux <strong>%1</strong> pour la nouvelle partition. - + The installer failed to set flags on partition %1. L'installateur n'a pas pu activer les drapeaux sur la partition %1. @@ -3296,47 +3342,47 @@ Sortie UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>si plusieurs personnes utilisent cet ordinateur, vous pourrez créer plusieurs comptes après la configuration.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>si plusieurs personnes utilisent cet ordinateur, vous pourrez créer plusieurs comptes après l'installation.</small> - + Your username is too long. Votre nom d'utilisateur est trop long. - + Your username must start with a lowercase letter or underscore. Votre nom d'utilisateur doit commencer avec une lettre minuscule ou un underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. Seuls les minuscules, nombres, underscores et tirets sont autorisés. - + Only letters, numbers, underscore and hyphen are allowed. Seuls les lettres, nombres, underscores et tirets 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 passwords do not match! Vos mots de passe ne correspondent pas ! @@ -3474,42 +3520,42 @@ Sortie &À propos - + <h1>Welcome to the %1 installer.</h1> <h1>Bienvenue dans l'installateur de %1.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> Bien dans l'installateur Calamares pour %1. - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>Bienvenue dans le programme de configuration Calamares pour %1.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>Bienvenue dans la configuration de %1.</h1> - + About %1 setup À propos de la configuration de %1 - + About %1 installer À propos de l'installateur %1 - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <h1>%1</h1><br/><strong>%2<br/> pour %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/> Merci à : Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg et <a href="https://www.transifex.com/calamares/calamares/">l'équipe de traducteurs de Calamares</a>.<br/><br/> Le développement de <a href="https://calamares.io/">Calamares</a> est sponsorisé par <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support Support de %1 @@ -3517,7 +3563,7 @@ Sortie WelcomeQmlViewStep - + Welcome Bienvenue @@ -3525,7 +3571,7 @@ Sortie WelcomeViewStep - + Welcome Bienvenue @@ -3533,7 +3579,7 @@ Sortie notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_fr_CH.ts b/lang/calamares_fr_CH.ts index 12da3a302..6f273093a 100644 --- a/lang/calamares_fr_CH.ts +++ b/lang/calamares_fr_CH.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 - + Boot Partition @@ -42,7 +42,7 @@ - + %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,173 +253,173 @@ Calamares::ViewManager - + &Back - + &Next - + &Cancel - + Cancel setup without changing the system. - + Cancel installation without changing the system. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. - - + + &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 @@ -427,22 +427,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type - + unparseable Python error - + unparseable Python traceback - + Unfetchable Python error. @@ -459,17 +459,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program - + %1 Installer - + Show debug information @@ -477,7 +477,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... @@ -490,134 +490,134 @@ The installer will quit and all changes will be lost. - + After: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + Select storage de&vice: - - - - + + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -625,17 +625,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 - + Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 @@ -682,10 +682,33 @@ The installer will quit and all changes will be lost. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + + + ContextualProcessJob - + Contextual Processes Job @@ -743,27 +766,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical - + Primary - + GPT - + Mountpoint already in use. Please select another one. @@ -771,22 +794,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. @@ -822,22 +845,22 @@ 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. @@ -989,13 +1012,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) - + %1 - (%2) device[name] - (device-node[name]) @@ -1108,7 +1131,7 @@ The installer will quit and all changes will be lost. - + Please enter the same passphrase in both boxes. @@ -1116,37 +1139,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. @@ -1230,22 +1253,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. - + The installer failed to format partition %1 on disk '%2'. @@ -1652,16 +1675,6 @@ 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) @@ -1673,7 +1686,7 @@ The installer will quit and all changes will be lost. - + Network Installation. (Disabled: Incorrect configuration) @@ -2019,7 +2032,7 @@ The installer will quit and all changes will be lost. - + Password is empty @@ -2065,6 +2078,19 @@ The installer will quit and all changes will be lost. + + PackageModel + + + Name + + + + + Description + + + Page_Keyboard @@ -2227,34 +2253,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space - - + + New partition - + Name - + File System - + Mount Point - + Size @@ -2322,17 +2348,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2506,65 +2532,65 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2583,22 +2609,22 @@ Output: - + unknown - + extended - + unformatted - + swap @@ -2652,6 +2678,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2679,140 +2713,152 @@ Output: - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. - + %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. - + Data partition (%1) - + Unknown system partition (%1) - + %1 system partition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2870,12 +2916,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: - + System requirements @@ -2883,27 +2929,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - + This program will ask you some questions and set up %2 on your computer. @@ -2924,17 +2970,17 @@ Output: SetHostNameJob - + Set hostname %1 - + Set hostname <strong>%1</strong>. - + Setting hostname %1. @@ -2984,82 +3030,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. @@ -3289,47 +3335,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your passwords do not match! @@ -3467,42 +3513,42 @@ Output: - + <h1>Welcome to the %1 installer.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer - + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support @@ -3510,7 +3556,7 @@ Output: WelcomeQmlViewStep - + Welcome @@ -3518,7 +3564,7 @@ Output: WelcomeViewStep - + Welcome @@ -3526,7 +3572,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_gl.ts b/lang/calamares_gl.ts index 90dd1b5af..af1b020e4 100644 --- a/lang/calamares_gl.ts +++ b/lang/calamares_gl.ts @@ -23,12 +23,12 @@ BootLoaderModel - + Master Boot Record of %1 Rexistro de arranque maestro de %1 - + Boot Partition Partición de arranque @@ -43,7 +43,7 @@ Non instalar un cargador de arranque - + %1 (%2) %1 (%2) @@ -144,7 +144,7 @@ Calamares::JobThread - + Done Feito @@ -178,32 +178,32 @@ Calamares::PythonJob - + Running %1 operation. Excutando a operación %1. - + Bad working directory path A ruta ó directorio de traballo é errónea - + Working directory %1 for python job %2 is not readable. O directorio de traballo %1 para o traballo de python %2 non é lexible - + Bad main script file Ficheiro de script principal erróneo - + Main script file %1 for python job %2 is not readable. O ficheiro principal de script %1 para a execución de python %2 non é lexible. - + Boost.Python error in job "%1". Boost.Python tivo un erro na tarefa "%1". @@ -211,17 +211,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -254,174 +254,174 @@ Calamares::ViewManager - + &Back &Atrás - + &Next &Seguinte - + &Cancel &Cancelar - + Cancel setup without changing the system. - + Cancel installation without changing the system. Cancelar a instalación sen cambiar o sistema - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed Fallou a inicialización do Calamares - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. Non é posíbel instalar %1. O calamares non foi quen de cargar todos os módulos configurados. Este é un problema relacionado con como esta distribución utiliza o Calamares. - + <br/>The following modules could not be loaded: <br/> Non foi posíbel cargar os módulos seguintes: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install &Instalar - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? Cancelar a instalación? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Desexa realmente cancelar o proceso actual de instalación? O instalador pecharase e perderanse todos os cambios. - - + + &Yes &Si - - + + &No &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 @@ -429,22 +429,22 @@ O instalador pecharase e perderanse todos os cambios. CalamaresPython::Helper - + Unknown exception type Excepción descoñecida - + unparseable Python error Erro de Python descoñecido - + unparseable Python traceback O rastreo de Python non é analizable. - + Unfetchable Python error. Erro de Python non recuperable @@ -461,17 +461,17 @@ O instalador pecharase e perderanse todos os cambios. CalamaresWindow - + %1 Setup Program - + %1 Installer Instalador de %1 - + Show debug information Mostrar informes de depuración @@ -479,7 +479,7 @@ O instalador pecharase e perderanse todos os cambios. CheckerContainer - + Gathering system information... A reunir a información do sistema... @@ -492,134 +492,134 @@ O instalador pecharase e perderanse todos os cambios. Formulario - + After: Despois: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Particionado manual</strong><br/> Pode crear o redimensionar particións pola súa conta. - + Boot loader location: Localización do cargador de arranque: - + Select storage de&vice: Seleccione o dispositivo de almacenamento: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> <strong>Seleccione unha partición para instalar</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Non foi posible atopar unha partición de sistema de tipo EFI. Por favor, volva atrás e empregue a opción de particionado manual para crear unha en %1. - + The EFI system partition at %1 will be used for starting %2. A partición EFI do sistema en %1 será usada para iniciar %2. - + EFI system partition: Partición EFI do sistema: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Esta unidade de almacenamento non semella ter un sistema operativo instalado nela. Que desexa facer?<br/>Poderá revisar e confirmar as súas eleccións antes de que calquera cambio sexa feito na unidade de almacenamento. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Borrar disco</strong><br/>Esto <font color="red">eliminará</font> todos os datos gardados na unidade de almacenamento seleccionada. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. A unidade de almacenamento ten %1 nela. Que desexa facer?<br/>Poderá revisar e confirmar a súa elección antes de que se aplique algún cambio á unidade. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instalar a carón</strong><br/>O instalador encollerá a partición para facerlle sitio a %1 - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Substituír a partición</strong><br/>Substitúe a partición con %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Esta unidade de almacenamento xa ten un sistema operativo instalado nel. Que desexa facer?<br/>Poderá revisar e confirmar as súas eleccións antes de que calquera cambio sexa feito na unidade de almacenamento - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Esta unidade de almacenamento ten múltiples sistemas operativos instalados nela. Que desexa facer?<br/>Poderá revisar e confirmar as súas eleccións antes de que calquera cambio sexa feito na unidade de almacenamento. @@ -627,17 +627,17 @@ O instalador pecharase e perderanse todos os cambios. ClearMountsJob - + Clear mounts for partitioning operations on %1 Desmontar os volumes para levar a cabo as operacións de particionado en %1 - + Clearing mounts for partitioning operations on %1. Desmontando os volumes para levar a cabo as operacións de particionado en %1. - + Cleared all mounts for %1 Os volumes para %1 foron desmontados @@ -684,10 +684,33 @@ O instalador pecharase e perderanse todos os cambios. A orde precisa coñecer o nome do usuario, mais non se indicou ningún nome de usuario. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Reciba a benvida ao instalador Calamares para %1.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Benvido o instalador %1.</h1> + + ContextualProcessJob - + Contextual Processes Job Tarefa de procesos contextuais @@ -745,27 +768,27 @@ O instalador pecharase e perderanse todos os cambios. &Tamaño: - + En&crypt Encriptar - + Logical Lóxica - + Primary Primaria - + GPT GPT - + Mountpoint already in use. Please select another one. Punto de montaxe xa en uso. Faga o favor de escoller outro @@ -773,22 +796,22 @@ O instalador pecharase e perderanse todos os cambios. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <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'. @@ -824,22 +847,22 @@ 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. @@ -991,13 +1014,13 @@ O instalador pecharase e perderanse todos os cambios. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1110,7 +1133,7 @@ O instalador pecharase e perderanse todos os cambios. Confirme a frase de contrasinal - + Please enter the same passphrase in both boxes. Faga o favor de introducila a misma frase de contrasinal námbalas dúas caixas. @@ -1118,37 +1141,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. @@ -1232,22 +1255,22 @@ O instalador pecharase e perderanse todos os cambios. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. Dando formato a %1 con sistema de ficheiros %2. - + The installer failed to format partition %1 on disk '%2'. O instalador fallou cando formateaba a partición %1 no disco '%2'. @@ -1654,16 +1677,6 @@ O instalador pecharase e perderanse todos os cambios. NetInstallPage - - - Name - Nome - - - - Description - Descripción - Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1675,7 +1688,7 @@ O instalador pecharase e perderanse todos os cambios. Instalación de rede. (Desactivado: Recibírense datos de grupos incorrectos) - + Network Installation. (Disabled: Incorrect configuration) @@ -2021,7 +2034,7 @@ O instalador pecharase e perderanse todos os cambios. Erro descoñecido - + Password is empty @@ -2067,6 +2080,19 @@ O instalador pecharase e perderanse todos os cambios. + + PackageModel + + + Name + Nome + + + + Description + Descripción + + Page_Keyboard @@ -2229,34 +2255,34 @@ O instalador pecharase e perderanse todos os cambios. PartitionModel - - + + Free Space Espazo libre - - + + New partition Nova partición - + Name Nome - + File System Sistema de ficheiros - + Mount Point Punto de montaxe - + Size Tamaño @@ -2324,17 +2350,17 @@ O instalador pecharase e perderanse todos os cambios. I&nstalar o cargador de arranque en: - + Are you sure you want to create a new partition table on %1? Confirma que desexa crear unha táboa de particións nova en %1? - + Can not create new partition Non é posíbel crear a partición nova - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. A táboa de particións de %1 xa ten %2 particións primarias e non é posíbel engadir máis. Retire unha partición primaria e engada unha partición estendida. @@ -2508,14 +2534,14 @@ O instalador pecharase e perderanse todos os cambios. ProcessResult - + There was no output from the command. A saída non produciu ningunha saída. - + Output: @@ -2524,52 +2550,52 @@ Saída: - + External command crashed. A orde externa fallou - + Command <i>%1</i> crashed. A orde <i>%1</i> fallou. - + External command failed to start. Non foi posíbel iniciar a orde externa. - + Command <i>%1</i> failed to start. Non foi posíbel iniciar a orde <i>%1</i>. - + Internal error when starting command. Produciuse un erro interno ao iniciar a orde. - + Bad parameters for process job call. Erro nos parámetros ao chamar o traballo - + External command failed to finish. A orde externa non se puido rematar. - + Command <i>%1</i> failed to finish in %2 seconds. A orde <i>%1</i> non se puido rematar en %2s segundos. - + External command finished with errors. A orde externa rematou con erros. - + Command <i>%1</i> finished with exit code %2. A orde <i>%1</i> rematou co código de erro %2. @@ -2588,22 +2614,22 @@ Saída: Predeterminado - + unknown descoñecido - + extended estendido - + unformatted sen formatar - + swap intercambio @@ -2657,6 +2683,14 @@ Saída: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2684,140 +2718,152 @@ Saída: Formulario - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Seleccione onde instalar %1.<br/><font color="red">Advertencia: </font>isto elimina todos os ficheiros da partición seleccionada. - + The selected item does not appear to be a valid partition. O elemento seleccionado non parece ser unha partición válida. - + %1 cannot be installed on empty space. Please select an existing partition. Non é posíbel instalar %1 nun espazo baleiro. Seleccione unha partición existente. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. Non é posíbel instalar %1 nunha partición estendida. Seleccione unha partición primaria ou lóxica existente. - + %1 cannot be installed on this partition. Non é posíbel instalar %1 nesta partición - + Data partition (%1) Partición de datos (%1) - + Unknown system partition (%1) Partición de sistema descoñecida (%1) - + %1 system partition (%2) %1 partición do sistema (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>A partición %1 é demasiado pequena para %2. Seleccione unha partición cunha capacidade mínima de %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/>Non foi posíbel atopar ningunha partición de sistema EFI neste sistema. Recúe e empregue o particionamento manual para configurar %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 vai ser instalado en %2. <br/><font color="red">Advertencia: </font>vanse perder todos os datos da partición %2. - + 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: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job Traballo de mudanza de tamaño do sistema de ficheiros - + Invalid configuration Configuración incorrecta - + The file-system resize job has an invalid configuration and will not run. O traballo de mudanza do tamaño do sistema de ficheiros ten unha configuración incorrecta e non vai ser executado. - - + KPMCore not Available KPMCore non está dispoñíbel - - + Calamares cannot start KPMCore for the file-system resize job. Calamares non pode iniciar KPMCore para o traballo de mudanza do tamaño do sistema de ficheiros. - - - - - + + + + + Resize Failed Fallou a mudanza de tamaño - + The filesystem %1 could not be found in this system, and cannot be resized. Non foi posíbel atopar o sistema de ficheiros %1 neste sistema e non se pode mudar o seu tamaño. - + The device %1 could not be found in this system, and cannot be resized. Non foi posíbel atopar o dispositivo %1 neste sistema e non se pode mudar o seu tamaño. - - + + The filesystem %1 cannot be resized. Non é posíbel mudar o tamaño do sistema de ficheiros %1. - - + + The device %1 cannot be resized. Non é posíbel mudar o tamaño do dispositivo %1. - + The filesystem %1 must be resized, but cannot. Hai que mudar o tamaño do sistema de ficheiros %1 mais non é posíbel. - + The device %1 must be resized, but cannot Hai que mudar o tamaño do dispositivo %1 mais non é posíbel @@ -2875,12 +2921,12 @@ Saída: ResultsListDialog - + For best results, please ensure that this computer: Para os mellores resultados, por favor, asegúrese que este ordenador: - + System requirements Requisitos do sistema @@ -2888,27 +2934,27 @@ Saída: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Este ordenador non satisfai os requerimentos mínimos ara a instalación de %1.<br/>A instalación non pode continuar. <a href="#details">Máis información...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Este ordenador non satisfai algúns dos requisitos recomendados para instalar %1.<br/> A instalación pode continuar, pero pode que algunhas características sexan desactivadas. - + This program will ask you some questions and set up %2 on your computer. Este programa faralle algunhas preguntas mentres prepara %2 no seu ordenador. @@ -2929,17 +2975,17 @@ Saída: SetHostNameJob - + Set hostname %1 Hostname: %1 - + Set hostname <strong>%1</strong>. Configurar hostname <strong>%1</strong>. - + Setting hostname %1. Configurando hostname %1. @@ -2989,82 +3035,82 @@ Saída: SetPartFlagsJob - + Set flags on partition %1. Configurar as bandeiras na partición %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. Configurar as bandeiras na nova partición. - + Clear flags on partition <strong>%1</strong>. Limpar as bandeiras da partición <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. Limpar as bandeiras da nova partición. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Marcar a partición <strong>%1</strong> coa bandeira <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Marcar a nova partición coa bandeira <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. A limpar as bandeiras da partición <strong>%1</strong>. - + Clearing flags on new partition. A limpar as bandeiras da nova partición. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. A configurar as bandeiras <strong>%2</strong> na partición <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. A configurar as bandeiras <strong>%1</strong> na nova partición. - + The installer failed to set flags on partition %1. O instalador non foi quen de configurar as bandeiras na partición %1. @@ -3294,47 +3340,47 @@ Saída: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. O nome de usuario é demasiado longo. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. O nome do computador é demasiado curto. - + Your hostname is too long. O nome do computador é demasiado longo. - + Your passwords do not match! Os contrasinais non coinciden! @@ -3472,42 +3518,42 @@ Saída: &Acerca de - + <h1>Welcome to the %1 installer.</h1> <h1>Benvido o instalador %1.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Reciba a benvida ao instalador Calamares para %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer Acerca do instalador %1 - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 axuda @@ -3515,7 +3561,7 @@ Saída: WelcomeQmlViewStep - + Welcome Benvido @@ -3523,7 +3569,7 @@ Saída: WelcomeViewStep - + Welcome Benvido @@ -3531,7 +3577,7 @@ Saída: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_gu.ts b/lang/calamares_gu.ts index 1428b64da..5aabfa567 100644 --- a/lang/calamares_gu.ts +++ b/lang/calamares_gu.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 - + Boot Partition @@ -42,7 +42,7 @@ - + %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,173 +253,173 @@ Calamares::ViewManager - + &Back - + &Next - + &Cancel - + Cancel setup without changing the system. - + Cancel installation without changing the system. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. - - + + &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 @@ -427,22 +427,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type - + unparseable Python error - + unparseable Python traceback - + Unfetchable Python error. @@ -459,17 +459,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program - + %1 Installer - + Show debug information @@ -477,7 +477,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... @@ -490,134 +490,134 @@ The installer will quit and all changes will be lost. - + After: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + Select storage de&vice: - - - - + + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -625,17 +625,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 - + Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 @@ -682,10 +682,33 @@ The installer will quit and all changes will be lost. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + + + ContextualProcessJob - + Contextual Processes Job @@ -743,27 +766,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical - + Primary - + GPT - + Mountpoint already in use. Please select another one. @@ -771,22 +794,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. @@ -822,22 +845,22 @@ 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. @@ -989,13 +1012,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) - + %1 - (%2) device[name] - (device-node[name]) @@ -1108,7 +1131,7 @@ The installer will quit and all changes will be lost. - + Please enter the same passphrase in both boxes. @@ -1116,37 +1139,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. @@ -1230,22 +1253,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. - + The installer failed to format partition %1 on disk '%2'. @@ -1652,16 +1675,6 @@ 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) @@ -1673,7 +1686,7 @@ The installer will quit and all changes will be lost. - + Network Installation. (Disabled: Incorrect configuration) @@ -2019,7 +2032,7 @@ The installer will quit and all changes will be lost. - + Password is empty @@ -2065,6 +2078,19 @@ The installer will quit and all changes will be lost. + + PackageModel + + + Name + + + + + Description + + + Page_Keyboard @@ -2227,34 +2253,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space - - + + New partition - + Name - + File System - + Mount Point - + Size @@ -2322,17 +2348,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2506,65 +2532,65 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2583,22 +2609,22 @@ Output: - + unknown - + extended - + unformatted - + swap @@ -2652,6 +2678,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2679,140 +2713,152 @@ Output: - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. - + %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. - + Data partition (%1) - + Unknown system partition (%1) - + %1 system partition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2870,12 +2916,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: - + System requirements @@ -2883,27 +2929,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - + This program will ask you some questions and set up %2 on your computer. @@ -2924,17 +2970,17 @@ Output: SetHostNameJob - + Set hostname %1 - + Set hostname <strong>%1</strong>. - + Setting hostname %1. @@ -2984,82 +3030,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. @@ -3289,47 +3335,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your passwords do not match! @@ -3467,42 +3513,42 @@ Output: - + <h1>Welcome to the %1 installer.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer - + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support @@ -3510,7 +3556,7 @@ Output: WelcomeQmlViewStep - + Welcome @@ -3518,7 +3564,7 @@ Output: WelcomeViewStep - + Welcome @@ -3526,7 +3572,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_he.ts b/lang/calamares_he.ts index ff549ff46..64fd84512 100644 --- a/lang/calamares_he.ts +++ b/lang/calamares_he.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Master Boot Record של %1 - + Boot Partition מחיצת טעינת המערכת Boot @@ -42,7 +42,7 @@ לא להתקין מנהל אתחול מערכת - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done הסתיים @@ -177,32 +177,32 @@ Calamares::PythonJob - + 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”. @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... בטעינה… - + QML Step <i>%1</i>. צעד QML‏ <i>%1</i>. - + Loading failed. הטעינה נכשלה… @@ -257,175 +257,175 @@ Calamares::ViewManager - + &Back ה&קודם - + &Next הב&א - + &Cancel &ביטול - + Cancel setup without changing the system. ביטול ההתקנה ללא שינוי המערכת. - + Cancel installation without changing the system. ביטול התקנה ללא ביצוע שינוי במערכת. - + Setup Failed ההתקנה נכשלה - + Would you like to paste the install log to the web? להדביק את יומן ההתקנה לאינטרנט? - + Install Log Paste URL כתובת הדבקת יומן התקנה - + The upload was unsuccessful. No web-paste was done. ההעלאה לא הצליחה. לא בוצעה הדבקה לאינטרנט. - + Calamares Initialization Failed הפעלת Calamares נכשלה - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. אין אפשרות להתקין את %1. ל־Calamares אין אפשרות לטעון את המודולים המוגדרים. מדובר בתקלה באופן בו ההפצה משתמשת ב־Calamares. - + <br/>The following modules could not be loaded: <br/>לא ניתן לטעון את המודולים הבאים: - + Continue with installation? להמשיך בהתקנה? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> תכנית ההתקנה של %1 עומדת לבצע שינויים בכונן הקשיח שלך לטובת התקנת %2.<br/><strong>לא תהיה לך אפשרות לבטל את השינויים האלה.</strong> - + &Set up now להת&קין כעת - + &Set up להת&קין - + &Install הת&קנה - + Setup is complete. Close the setup program. ההתקנה הושלמה. נא לסגור את תכנית ההתקנה. - + Cancel setup? לבטל את ההתקנה? - + Cancel installation? לבטל את ההתקנה? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. לבטל את תהליך ההתקנה הנוכחי? תכנית ההתקנה תצא וכל השינויים יאבדו. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. לבטל את תהליך ההתקנה? אשף ההתקנה ייסגר וכל השינויים יאבדו. - - + + &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> אשף ההתקנה של %1 הולך לבצע שינויים בכונן שלך לטובת התקנת %2.<br/><strong>לא תוכל לבטל את השינויים הללו.</strong> - + &Install now להת&קין כעת - + Go &back ח&זרה - + &Done &סיום - + The installation is complete. Close the installer. תהליך ההתקנה הושלם. נא לסגור את אשף ההתקנה. - + Error שגיאה - + Installation Failed ההתקנה נכשלה @@ -433,22 +433,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type טיפוס חריגה אינו מוכר - + unparseable Python error שגיאת Python לא ניתנת לניתוח - + unparseable Python traceback עקבה לאחור של Python לא ניתנת לניתוח - + Unfetchable Python error. שגיאת Python לא ניתנת לאחזור. @@ -466,17 +466,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program תכנית התקנת %1 - + %1 Installer אשף התקנה של %1 - + Show debug information הצגת מידע ניפוי שגיאות @@ -484,7 +484,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... נאסף מידע על המערכת… @@ -497,134 +497,134 @@ The installer will quit and all changes will be lost. Form - + After: לאחר: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>הגדרת מחיצות באופן ידני</strong><br/>ניתן ליצור או לשנות את גודל המחיצות בעצמך. - + Boot loader location: מיקום מנהל אתחול המערכת: - + Select storage de&vice: בחירת התקן א&חסון: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 תכווץ לכדי %2MiB ותיווצר מחיצה חדשה בגודל %3MiB עבור %4. - + <strong>Select a partition to install on</strong> <strong>נא לבחור מחיצה כדי להתקין עליה</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. במערכת זו לא נמצאה מחיצת מערכת EFI. נא לחזור ולהשתמש ביצירת מחיצות באופן ידני כדי להגדיר את %1. - + The EFI system partition at %1 will be used for starting %2. מחיצת מערכת ה־EFI שב־%1 תשמש עבור טעינת %2. - + EFI system partition: מחיצת מערכת EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. לא נמצאה מערכת הפעלה על התקן אחסון זה. מה ברצונך לעשות?<br/> ניתן לסקור ולאשר את בחירתך לפני ששינויים יתבצעו על התקן האחסון. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>מחיקת כונן</strong><br/> פעולה זו <font color="red">תמחק</font> את כל המידע השמור על התקן האחסון הנבחר. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. בהתקן אחסון זה נמצאה %1. מה ברצונך לעשות?<br/> ניתן לסקור ולאשר את בחירתך לפני ששינויים יתבצעו על התקן האחסון. - + No Swap בלי החלפה - + Reuse Swap שימוש מחדש בהחלפה - + Swap (no Hibernate) החלפה (ללא תרדמת) - + Swap (with Hibernate) החלפה (עם תרדמת) - + Swap to file החלפה לקובץ - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>התקנה לצד</strong><br/> אשף ההתקנה יכווץ מחיצה כדי לפנות מקום לטובת %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>החלפת מחיצה</strong><br/> ביצוע החלפה של המחיצה ב־%1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. כבר קיימת מערכת הפעלה על התקן האחסון הזה. כיצד להמשיך?<br/> ניתן לסקור ולאשר את בחירתך לפני ששינויים יתבצעו על התקן האחסון. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. ישנן מגוון מערכות הפעלה על התקן אחסון זה. איך להמשיך? <br/>ניתן לסקור ולאשר את בחירתך לפני ששינויים יתבצעו על התקן האחסון. @@ -632,17 +632,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 מחיקת נקודות עיגון עבור פעולות חלוקה למחיצות על %1. - + Clearing mounts for partitioning operations on %1. מתבצעת מחיקה של נקודות עיגון לטובת פעולות חלוקה למחיצות על %1. - + Cleared all mounts for %1 כל נקודות העיגון על %1 נמחקו. @@ -689,10 +689,33 @@ The installer will quit and all changes will be lost. הפקודה צריכה לדעת מה שם המשתמש, אך לא הוגדר שם משתמש. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>ברוך בואך לתכנית ההתקנה Calamares עבור %1.</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>ברוך בואך להתקנת %1.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>ברוך בואך להתקנת %1 עם Calamares.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>ברוך בואך להתקנת %1.</h1> + + ContextualProcessJob - + Contextual Processes Job משימת תהליכי הקשר @@ -750,27 +773,27 @@ The installer will quit and all changes will be lost. גו&דל: - + En&crypt ה&צפנה - + Logical לוגי - + Primary ראשי - + GPT GPT - + Mountpoint already in use. Please select another one. נקודת העיגון בשימוש. נא לבחור בנקודת עיגון אחרת. @@ -778,22 +801,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. יצירת מחיצה חדשה בגודל %2MiB על גבי %4 (%3) עם מערכת הקבצים %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. יצירת מחיצה חדשה בגודל <strong>%2MiB</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’. @@ -829,22 +852,22 @@ 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. @@ -996,13 +1019,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1115,7 +1138,7 @@ The installer will quit and all changes will be lost. אישור מילת צופן - + Please enter the same passphrase in both boxes. נא להקליד את אותה מילת הצופן בשתי התיבות. @@ -1123,37 +1146,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 על מחיצת מערכת <strong>%1</strong> מסוג %3. - + 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. נקודות עיגון מוגדרות. @@ -1237,22 +1260,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. לאתחל את המחיצה %1 (מערכת קבצים: %2, גודל: %3 MiB) על גבי %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. אתחול מחיצה בגודל <strong>%3MiB</strong> בנתיב <strong>%1</strong> עם מערכת הקבצים <strong>%2</strong>. - + Formatting partition %1 with file system %2. מאתחל מחיצה %1 עם מערכת קבצים %2. - + The installer failed to format partition %1 on disk '%2'. אשף ההתקנה נכשל בעת אתחול המחיצה %1 על הכונן ‚%2’. @@ -1659,16 +1682,6 @@ 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) @@ -1680,7 +1693,7 @@ The installer will quit and all changes will be lost. התקנה מהרשת. (מושבתת: המידע שהתקבל על קבוצות שגוי) - + Network Installation. (Disabled: Incorrect configuration) התקנת רשת. (מושבתת: תצורה שגויה) @@ -2026,7 +2039,7 @@ The installer will quit and all changes will be lost. שגיאה לא ידועה - + Password is empty הססמה ריקה @@ -2072,6 +2085,19 @@ The installer will quit and all changes will be lost. חבילות + + PackageModel + + + Name + שם + + + + Description + תיאור + + Page_Keyboard @@ -2234,34 +2260,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space זכרון פנוי - - + + New partition מחיצה חדשה - + Name שם - + File System מערכת קבצים - + Mount Point נקודת עיגון - + Size גודל @@ -2329,17 +2355,17 @@ The installer will quit and all changes will be lost. הת&קנת מנהל אתחול על: - + Are you sure you want to create a new partition table on %1? ליצור טבלת מחיצות חדשה על %1? - + Can not create new partition לא ניתן ליצור מחיצה חדשה - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. לטבלת המחיצות על %1 כבר יש %2 מחיצות עיקריות ואי אפשר להוסיף עוד כאלה. נא להסיר מחיצה עיקרית אחת ולהוסיף מחיצה מורחבת במקום. @@ -2513,14 +2539,14 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. לא היה פלט מהפקודה. - + Output: @@ -2529,52 +2555,52 @@ Output: - + External command crashed. הפקודה החיצונית נכשלה. - + Command <i>%1</i> crashed. הפקודה <i>%1</i> קרסה. - + External command failed to start. הפעלת הפעולה החיצונית נכשלה. - + Command <i>%1</i> failed to start. הפעלת הפקודה <i>%1</i> נכשלה. - + Internal error when starting command. שגיאה פנימית בעת הפעלת פקודה. - + Bad parameters for process job call. פרמטרים לא תקינים עבור קריאת עיבוד פעולה. - + External command failed to finish. סיום הפקודה החיצונית נכשל. - + Command <i>%1</i> failed to finish in %2 seconds. הפקודה <i>%1</i> לא הסתיימה תוך %2 שניות. - + External command finished with errors. הפקודה החיצונית הסתיימה עם שגיאות. - + Command <i>%1</i> finished with exit code %2. הפקודה <i>%1</i> הסתיימה עם קוד היציאה %2. @@ -2593,22 +2619,22 @@ Output: בררת מחדל - + unknown לא ידוע - + extended מורחבת - + unformatted לא מאותחלת - + swap דפדוף, swap @@ -2662,6 +2688,14 @@ Output: לא ניתן ליצור קובץ אקראי חדש <pre>%1</pre>. + + RemoveUserJob + + + Remove live user from target system + הסרת משתמש חי ממערכת היעד + + RemoveVolumeGroupJob @@ -2689,140 +2723,153 @@ Output: Form - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. בחר מיקום התקנת %1.<br/><font color="red">אזהרה: </font> הפעולה תמחק את כל הקבצים במחיצה שנבחרה. - + The selected item does not appear to be a valid partition. הפריט הנבחר איננו מחיצה תקינה. - + %1 cannot be installed on empty space. Please select an existing partition. לא ניתן להתקין את %1 על זכרון ריק. אנא בחר מחיצה קיימת. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. לא ניתן להתקין את %1 על מחיצה מורחבת. אנא בחר מחיצה ראשית או לוגית קיימת. - + %1 cannot be installed on this partition. לא ניתן להתקין את %1 על מחיצה זו. - + Data partition (%1) מחיצת מידע (%1) - + Unknown system partition (%1) מחיצת מערכת (%1) לא מוכרת - + %1 system partition (%2) %1 מחיצת מערכת (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/> גודל המחיצה %1 קטן מדי עבור %2. אנא בחר מחיצה עם קיבולת בנפח %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/> מחיצת מערכת EFI לא נמצאה באף מקום על המערכת. חזור בבקשה והשתמש ביצירת מחיצות באופן ידני בכדי להגדיר את %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 יותקן על %2. <br/><font color="red">אזהרה: </font>כל המידע אשר קיים במחיצה %2 יאבד. - + The EFI system partition at %1 will be used for starting %2. מחיצת מערכת EFI ב %1 תשמש עבור טעינת %2. - + EFI system partition: מחיצת מערכת EFI: + + RequirementsModel + + + This program will ask you some questions and set up your installation + תכנית זו תשאל אותך מספר שאלות ותקים את ההתקנה שלך + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + תכנית זו אינה עומדת בדרישות הסף להתקנה. +ההתקנה לא יכולה להמשיך + + ResizeFSJob - + Resize Filesystem Job משימת שינוי גודל מערכת קבצים - + Invalid configuration תצורה שגויה - + The file-system resize job has an invalid configuration and will not run. למשימת שינוי גודל מערכת הקבצים יש תצורה שגויה והיא לא תפעל. - - + KPMCore not Available KPMCore לא זמין - - + Calamares cannot start KPMCore for the file-system resize job. ל־Calamares אין אפשרות להתחיל את KPMCore עבור משימת שינוי גודל מערכת הקבצים. - - - - - + + + + + Resize Failed שינוי הגודל נכשל - + The filesystem %1 could not be found in this system, and cannot be resized. לא הייתה אפשרות למצוא את מערכת הקבצים %1 במערכת הזו, לכן לא ניתן לשנות את גודלה. - + The device %1 could not be found in this system, and cannot be resized. לא הייתה אפשרות למצוא את ההתקן %1 במערכת הזו, לכן לא ניתן לשנות את גודלו. - - + + The filesystem %1 cannot be resized. לא ניתן לשנות את גודל מערכת הקבצים %1. - - + + The device %1 cannot be resized. לא ניתן לשנות את גודל ההתקן %1. - + The filesystem %1 must be resized, but cannot. חובה לשנות את גודל מערכת הקבצים %1, אך לא ניתן. - + The device %1 must be resized, but cannot חובה לשנות את גודל ההתקן %1, אך לא ניתן. @@ -2880,12 +2927,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: לקבלת התוצאות הטובות ביותר, נא לוודא כי מחשב זה: - + System requirements דרישות מערכת @@ -2893,27 +2940,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> המחשב לא עומד ברף הדרישות המזערי להתקנת %1. <br/>להתקנה אין אפשרות להמשיך. <a href="#details">פרטים…</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> המחשב לא עומד ברף דרישות המינימום להתקנת %1. <br/>ההתקנה לא יכולה להמשיך. <a href="#details"> פרטים...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. המחשב לא עומד בחלק מרף דרישות המזערי להתקנת %1.<br/> ההתקנה יכולה להמשיך, אך יתכן כי חלק מהתכונות יושבתו. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. המחשב לא עומד בחלק מרף דרישות המינימום להתקנת %1.<br/> ההתקנה יכולה להמשיך, אך יתכן כי חלק מהתכונות יושבתו. - + This program will ask you some questions and set up %2 on your computer. תכנית זו תשאל אותך מספר שאלות ותתקין את %2 על המחשב שלך. @@ -2934,17 +2981,17 @@ Output: SetHostNameJob - + Set hostname %1 הגדרת שם מארח %1 - + Set hostname <strong>%1</strong>. הגדרת שם מארח <strong>%1</strong>. - + Setting hostname %1. שם העמדה %1 מוגדר. @@ -2994,82 +3041,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. הגדר סימונים על מחיצה %1. - + Set flags on %1MiB %2 partition. הגדרת דגלונים על מחיצה מסוג %2 בגודל %1MiB. - + Set flags on new partition. הגדרת סימונים על מחיצה חדשה. - + Clear flags on partition <strong>%1</strong>. מחיקת סימונים מהמחיצה <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. לבטל דגלונים על מחיצת <strong>%2</strong> בגודל %1MiB. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. סימון מחיצת <strong>%2</strong> בגודל %1MiB בתור <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. לבטל דגלונים על מחיצת <strong>%2</strong> בגודל %1MiB. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. הדגלונים <strong>%3</strong> על מחיצת <strong>%2</strong> בגודל %1MiB. - + Clear flags on new partition. מחק סימונים על המחיצה החדשה. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. סמן מחיצה <strong>%1</strong> כ <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. סמן מחיצה חדשה כ <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. מוחק סימונים על מחיצה <strong>%1</strong>. - + Clearing flags on new partition. מוחק סימונים על מחיצה חדשה. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. מגדיר סימונים <strong>%2</strong> על מחיצה <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. מגדיר סימונים <strong>%1</strong> על מחיצה חדשה. - + The installer failed to set flags on partition %1. תהליך ההתקנה נכשל בעת הצבת סימונים במחיצה %1. @@ -3299,47 +3346,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>אם מחשב זה מיועד לשימוש לטובת למעלה ממשתמש אחד, ניתן ליצור מגוון חשבונות לאחר ההתקנה.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>אם מחשב זה מיועד לשימוש לטובת למעלה ממשתמש אחד, ניתן ליצור מגוון חשבונות לאחר ההתקנה.</small> - + Your username is too long. שם המשתמש ארוך מדי. - + Your username must start with a lowercase letter or underscore. שם המשתמש שלך חייב להתחיל באות קטנה או בקו תחתי. - + Only lowercase letters, numbers, underscore and hyphen are allowed. מותר להשתמש רק באותיות קטנות, ספרות, קווים תחתיים ומינוסים. - + Only letters, numbers, underscore and hyphen are allowed. מותר להשתמש רק באותיות, ספרות, קווים תחתיים ומינוסים. - + Your hostname is too short. שם המחשב קצר מדי. - + Your hostname is too long. שם המחשב ארוך מדי. - + Your passwords do not match! הססמאות לא תואמות! @@ -3477,42 +3524,42 @@ Output: על &אודות - + <h1>Welcome to the %1 installer.</h1> <h1>ברוך בואך להתקנת %1.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>ברוך בואך להתקנת %1 עם Calamares.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>ברוך בואך לתכנית ההתקנה Calamares עבור %1.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>ברוך בואך להתקנת %1.</h1> - + About %1 setup על אודות התקנת %1 - + About %1 installer על אודות התקנת %1 - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <h1>%1</h1><br/><strong>%2<br/>עבור %3</strong><br/><br/>כל הזכויות שמורות 2014‏-2017 ל־Teo Mrnjavac‏ &lt;teo@kde.org&gt;<br/>כל הזכויות שמורות 2017‏-2019 ל־Adriaan de Groot‏ &lt;groot@kde.org&gt;<br/>תודה גדולה נתונה <a href="https://calamares.io/team/">לצוות Calamares</a> ול<a href="https://www.transifex.com/calamares/calamares/">צווות המתרגמים של Calamares</a>.<br/><br/><a href="https://calamares.io/">הפיתוח של Calamares</a> ממומן על ידי <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - דואגים לחירות התכנה. - + %1 support תמיכה ב־%1 @@ -3520,7 +3567,7 @@ Output: WelcomeQmlViewStep - + Welcome ברוך בואך @@ -3528,7 +3575,7 @@ Output: WelcomeViewStep - + Welcome ברוך בואך @@ -3536,7 +3583,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> <h3>%1</h3> diff --git a/lang/calamares_hi.ts b/lang/calamares_hi.ts index a81ce60b3..eae794565 100644 --- a/lang/calamares_hi.ts +++ b/lang/calamares_hi.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 %1 का मास्टर बूट रिकॉर्ड - + Boot Partition बूट विभाजन @@ -42,7 +42,7 @@ बूट लोडर इंस्टॉल न करें - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done पूर्ण हुआ @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. %1 चल रहा है। - + Bad working directory path कार्यरत फोल्डर का पथ गलत है - + Working directory %1 for python job %2 is not readable. पाइथन कार्य %2 के लिए कार्यरत डायरेक्टरी %1 रीड करने योग्य नहीं है। - + Bad main script file ख़राब मुख्य स्क्रिप्ट फ़ाइल - + Main script file %1 for python job %2 is not readable. पाइथन कार्य %2 हेतु मुख्य स्क्रिप्ट फ़ाइल %1 रीड करने योग्य नहीं है। - + Boost.Python error in job "%1". कार्य "%1" में Boost.Python त्रुटि। @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,175 +253,175 @@ Calamares::ViewManager - + &Back वापस (&B) - + &Next आगे (&N) - + &Cancel रद्द करें (&C) - + Cancel setup without changing the system. सिस्टम में बदलाव किये बिना सेटअप रद्द करें। - + Cancel installation without changing the system. सिस्टम में बदलाव किये बिना इंस्टॉल रद्द करें। - + Setup Failed सेटअप विफल रहा - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. अपलोड असफल रहा। कोई वेब-पेस्ट नही किया गया। - + Calamares Initialization Failed Calamares का आरंभीकरण विफल रहा - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 को इनस्टॉल नहीं किया जा सका। Calamares सभी विन्यस्त मापांकों को लोड करने में विफल रहा। यह आपके लिनक्स वितरण द्वारा Calamares के उपयोग से संबंधित एक समस्या है। - + <br/>The following modules could not be loaded: <br/>निम्नलिखित मापांक लोड नहीं हो सकें : - + Continue with installation? इंस्टॉल प्रक्रिया जारी रखें? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> %2 सेटअप करने हेतु %1 सेटअप प्रोग्राम आपकी डिस्क में बदलाव करने वाला है।<br/><strong>आप इन बदलावों को पूर्ववत नहीं कर पाएंगे।</strong> - + &Set up now अभी सेटअप करें (&S) - + &Set up सेटअप करें (&S) - + &Install इंस्टॉल करें (&I) - + Setup is complete. Close the setup program. सेटअप पूर्ण हुआ। सेटअप प्रोग्राम बंद कर दें। - + Cancel setup? सेटअप रद्द करें? - + Cancel installation? इंस्टॉल रद्द करें? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. क्या आप वाकई वर्तमान सेटअप प्रक्रिया रद्द करना चाहते हैं? सेटअप प्रोग्राम बंद हो जाएगा व सभी बदलाव नष्ट। - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. क्या आप वाकई वर्तमान इंस्टॉल प्रक्रिया रद्द करना चाहते हैं? इंस्टॉलर बंद हो जाएगा व सभी बदलाव नष्ट। - - + + &Yes हाँ (&Y) - - + + &No नहीं (&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> %2 इंस्टॉल करने हेतु %1 इंस्टॉलर आपकी डिस्क में बदलाव करने वाला है।<br/><strong>आप इन बदलावों को पूर्ववत नहीं कर पाएंगे।</strong> - + &Install now अभी इंस्टॉल करें (&I) - + Go &back वापस जाएँ (&b) - + &Done हो गया (&D) - + The installation is complete. Close the installer. इंस्टॉल पूर्ण हुआ।अब इंस्टॉलर को बंद करें। - + Error त्रुटि - + Installation Failed इंस्टॉल विफल रहा @@ -429,22 +429,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type अपवाद का प्रकार अज्ञात - + unparseable Python error अप्राप्य पाइथन त्रुटि - + unparseable Python traceback अप्राप्य पाइथन ट्रेसबैक - + Unfetchable Python error. पहुँच से बाहर पाइथन त्रुटि। @@ -461,17 +461,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program %1 सेटअप प्रोग्राम - + %1 Installer %1 इंस्टॉलर - + Show debug information डीबग जानकारी दिखाएँ @@ -479,7 +479,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... सिस्टम की जानकारी प्राप्त की जा रही है... @@ -492,134 +492,134 @@ The installer will quit and all changes will be lost. रूप - + After: बाद में : - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>मैनुअल विभाजन</strong><br/> आप स्वयं भी विभाजन बना व उनका आकार बदल सकते है। - + Boot loader location: बूट लोडर का स्थान : - + Select storage de&vice: डिवाइस चुनें (&v): - - - - + + + + Current: मौजूदा : - + Reuse %1 as home partition for %2. %2 के होम विभाजन के लिए %1 को पुनः उपयोग करें। - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>छोटा करने हेतु विभाजन चुनें, फिर नीचे bar से उसका आकर सेट करें</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 को छोटा करके %2MiB किया जाएगा व %4 हेतु %3MiB का एक नया विभाजन बनेगा। - + <strong>Select a partition to install on</strong> <strong>इंस्टॉल हेतु विभाजन चुनें</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. इस सिस्टम पर कहीं भी कोई EFI सिस्टम विभाजन नहीं मिला। कृपया वापस जाएँ व %1 को सेट करने के लिए मैनुअल रूप से विभाजन करें। - + The EFI system partition at %1 will be used for starting %2. %1 वाले EFI सिस्टम विभाजन का उपयोग %2 को शुरू करने के लिए किया जाएगा। - + EFI system partition: EFI सिस्टम विभाजन: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. इस डिवाइस पर लगता है कि कोई ऑपरेटिंग सिस्टम नहीं है। आप क्या करना चाहेंगे?<br/>आप डिवाइस में किसी भी बदलाव से पहले उसकी समीक्षा व पुष्टि कर सकेंगे। - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>डिस्क का सारा डाटा हटाएँ</strong><br/>इससे चयनित डिवाइस पर मौजूद सारा डाटा <font color="red">हटा</font>हो जाएगा। - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. इस डिवाइस पर %1 है। आप क्या करना चाहेंगे?<br/>आप डिवाइस में किसी भी बदलाव से पहले उसकी समीक्षा व पुष्टि कर सकेंगे। - + No Swap कोई स्वैप नहीं - + Reuse Swap स्वैप पुनः उपयोग करें - + Swap (no Hibernate) स्वैप (हाइबरनेशन/सिस्टम सुप्त रहित) - + Swap (with Hibernate) स्वैप (हाइबरनेशन/सिस्टम सुप्त सहित) - + Swap to file स्वैप फाइल बनाएं - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>साथ में इंस्टॉल करें</strong><br/>इंस्टॉलर %1 के लिए स्थान बनाने हेतु एक विभाजन को छोटा कर देगा। - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>विभाजन को बदलें</strong><br/>एक विभाजन को %1 से बदलें। - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. इस डिवाइस पर पहले से एक ऑपरेटिंग सिस्टम है। आप क्या करना चाहेंगे?<br/>आप डिवाइस में किसी भी बदलाव से पहले उसकी समीक्षा व पुष्टि कर सकेंगे। - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. इस डिवाइस पर एक से अधिक ऑपरेटिंग सिस्टम है। आप क्या करना चाहेंगे?<br/>आप डिवाइस में किसी भी बदलाव से पहले उसकी समीक्षा व पुष्टि कर सकेंगे। @@ -627,17 +627,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 %1 पर विभाजन कार्य हेतु माउंट हटाएँ - + Clearing mounts for partitioning operations on %1. %1 पर विभाजन कार्य हेतु माउंट हटाएँ जा रहे हैं। - + Cleared all mounts for %1 %1 हेतु सभी माउंट हटा दिए गए @@ -684,10 +684,33 @@ The installer will quit and all changes will be lost. कमांड हेतु उपयोक्ता का नाम आवश्यक है परन्तु कोई नाम परिभाषित नहीं है। + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>%1 हेतु Calamares सेटअप में आपका स्वागत है।</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>%1 सेटअप में आपका स्वागत है।</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>%1 के लिए Calamares इंस्टॉलर में आपका स्वागत है।</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>%1 इंस्टॉलर में आपका स्वागत है।</h1> + + ContextualProcessJob - + Contextual Processes Job प्रासंगिक प्रक्रिया कार्य @@ -745,27 +768,27 @@ The installer will quit and all changes will be lost. आकार (&z): - + En&crypt एन्क्रिप्ट (&c) - + Logical तार्किक - + Primary मुख्य - + GPT GPT - + Mountpoint already in use. Please select another one. माउंट पॉइंट पहले से उपयोग में है । कृपया दूसरा चुनें। @@ -773,22 +796,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. फ़ाइल सिस्टम %1 के साथ %4 (%3) पर नया %2MiB का विभाजन बनाएँ। - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. फ़ाइल सिस्टम <strong>%1</strong> के साथ <strong>%4</strong> (%3) पर नया <strong>%2MiB</strong> का विभाजन बनाएँ। - + Creating new %1 partition on %2. %2 पर नया %1 विभाजन बनाया जा रहा है। - + The installer failed to create partition on disk '%1'. इंस्टॉलर डिस्क '%1' पर विभाजन बनाने में विफल रहा। @@ -824,22 +847,22 @@ 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' पर विभाजन तालिका बनाने में विफल रहा। @@ -991,13 +1014,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1110,7 +1133,7 @@ The installer will quit and all changes will be lost. कूटशब्द की पुष्टि करें - + Please enter the same passphrase in both boxes. कृपया दोनों स्थानों में समान कूटशब्द दर्ज करें। @@ -1118,37 +1141,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> %2 विभाजन माउंट पॉइंट <strong>%1</strong> के साथ सेट करें। - + 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. माउंट पॉइंट सेट किए जा रहे हैं। @@ -1232,22 +1255,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. विभाजन %1 (फ़ाइल सिस्टम: %2, आकार: %3 MiB) को %4 पर फॉर्मेट करें। - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. फ़ाइल सिस्टम <strong>%2</strong> के साथ <strong>%3MiB</strong> के विभाजन <strong>%1</strong> को फॉर्मेट करें। - + Formatting partition %1 with file system %2. फ़ाइल सिस्टम %2 के साथ विभाजन %1 को फॉर्मेट किया जा रहा है। - + The installer failed to format partition %1 on disk '%2'. इंस्टॉलर डिस्क '%2' पर विभाजन %1 को फॉर्मेट करने में विफल रहा। @@ -1654,16 +1677,6 @@ 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) @@ -1675,7 +1688,7 @@ The installer will quit and all changes will be lost. नेटवर्क इंस्टॉल (निष्क्रिय है : प्राप्त किया गया समूह डाटा अमान्य है) - + Network Installation. (Disabled: Incorrect configuration) @@ -2021,7 +2034,7 @@ The installer will quit and all changes will be lost. अज्ञात त्रुटि - + Password is empty पासवर्ड खाली है @@ -2067,6 +2080,19 @@ The installer will quit and all changes will be lost. पैकेज + + PackageModel + + + Name + नाम + + + + Description + विवरण + + Page_Keyboard @@ -2229,34 +2255,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space रिक्त स्पेस - - + + New partition नया विभाजन - + Name नाम - + File System फ़ाइल सिस्टम - + Mount Point माउंट पॉइंट - + Size आकार @@ -2324,17 +2350,17 @@ The installer will quit and all changes will be lost. बूट लोडर इंस्टॉल करें (&l) : - + Are you sure you want to create a new partition table on %1? क्या आप वाकई %1 पर एक नई विभाजन तालिका बनाना चाहते हैं? - + Can not create new partition नया विभाजन बनाया नहीं जा सका - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. %1 पर विभाजन तालिका में पहले से ही %2 मुख्य विभाजन हैं व और अधिक नहीं जोड़ें जा सकते। कृपया एक मुख्य विभाजन को हटाकर उसके स्थान पर एक विस्तृत विभाजन जोड़ें। @@ -2508,14 +2534,14 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. कमांड से कोई आउटपुट नहीं मिला। - + Output: @@ -2524,52 +2550,52 @@ Output: - + External command crashed. बाह्य कमांड क्रैश हो गई। - + Command <i>%1</i> crashed. कमांड <i>%1</i> क्रैश हो गई। - + External command failed to start. बाह्य​ कमांड शुरू होने में विफल। - + Command <i>%1</i> failed to start. कमांड <i>%1</i> शुरू होने में विफल। - + Internal error when starting command. कमांड शुरू करते समय आंतरिक त्रुटि। - + Bad parameters for process job call. प्रक्रिया कार्य कॉल के लिए गलत मापदंड। - + External command failed to finish. बाहरी कमांड समाप्त करने में विफल। - + Command <i>%1</i> failed to finish in %2 seconds. कमांड <i>%1</i> %2 सेकंड में समाप्त होने में विफल। - + External command finished with errors. बाहरी कमांड त्रुटि के साथ समाप्त। - + Command <i>%1</i> finished with exit code %2. कमांड <i>%1</i> exit कोड %2 के साथ समाप्त। @@ -2588,22 +2614,22 @@ Output: डिफ़ॉल्ट - + unknown अज्ञात - + extended विस्तृत - + unformatted फॉर्मेट नहीं हो रखा है - + swap स्वैप @@ -2657,6 +2683,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + लक्षित सिस्टम से लाइव उपयोक्ता को हटाना + + RemoveVolumeGroupJob @@ -2684,140 +2718,152 @@ Output: रूप - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. चुनें कि %1 को कहाँ इंस्टॉल करना है।<br/><font color="red">चेतावनी : </font> यह चयनित विभाजन पर मौजूद सभी फ़ाइलों को हटा देगा। - + The selected item does not appear to be a valid partition. चयनित आइटम एक मान्य विभाजन नहीं है। - + %1 cannot be installed on empty space. Please select an existing partition. %1 को खाली स्पेस पर इंस्टॉल नहीं किया जा सकता। कृपया कोई मौजूदा विभाजन चुनें। - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 को विस्तृत विभाजन पर इंस्टॉल नहीं किया जा सकता। कृपया कोई मौजूदा मुख्य या तार्किक विभाजन चुनें। - + %1 cannot be installed on this partition. इस विभाजन पर %1 इंस्टॉल नहीं किया जा सकता। - + Data partition (%1) डाटा विभाजन (%1) - + Unknown system partition (%1) अज्ञात सिस्टम विभाजन (%1) - + %1 system partition (%2) %1 सिस्टम विभाजन (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>%2 के लिए विभाजन %1 काफ़ी छोटा है। कृपया कम-से-कम %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/>इस सिस्टम पर कहीं भी कोई EFI सिस्टम विभाजन नहीं मिला। कृपया वापस जाएँ व %1 को सेट करने के लिए मैनुअल रूप से विभाजन करें। - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%2 पर %1 इंस्टॉल किया जाएगा।<br/><font color="red">चेतावनी : </font>विभाजन %2 पर मौजूद सारा डाटा हटा दिया जाएगा। - + The EFI system partition at %1 will be used for starting %2. %1 वाले EFI सिस्टम विभाजन का उपयोग %2 को शुरू करने के लिए किया जाएगा। - + EFI system partition: EFI सिस्टम विभाजन : + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job फ़ाइल सिस्टम कार्य का आकार बदलें - + Invalid configuration अमान्य विन्यास - + The file-system resize job has an invalid configuration and will not run. फाइल सिस्टम का आकार बदलने हेतु कार्य का विन्यास अमान्य है व यह नहीं चलेगा। - - + KPMCore not Available KPMCore उपलब्ध नहीं है - - + Calamares cannot start KPMCore for the file-system resize job. Calamares फाइल सिस्टम का आकार बदलने कार्य हेतु KPMCore को आरंभ नहीं कर सका। - - - - - + + + + + Resize Failed आकार बदलना विफल रहा - + The filesystem %1 could not be found in this system, and cannot be resized. इस सिस्टम पर फाइल सिस्टम %1 नहीं मिला, व उसका आकार बदला नहीं जा सकता। - + The device %1 could not be found in this system, and cannot be resized. इस सिस्टम पर डिवाइस %1 नहीं मिला, व उसका आकार बदला नहीं जा सकता। - - + + The filesystem %1 cannot be resized. फाइल सिस्टम %1 का आकार बदला नहीं जा सकता। - - + + The device %1 cannot be resized. डिवाइस %1 का आकार बदला नहीं जा सकता। - + The filesystem %1 must be resized, but cannot. फाइल सिस्टम %1 का आकार बदला जाना चाहिए लेकिन बदला नहीं जा सकता। - + The device %1 must be resized, but cannot डिवाइस %1 का आकार बदला जाना चाहिए लेकिन बदला नहीं जा सकता @@ -2875,12 +2921,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: उत्तम परिणाम हेतु, कृपया सुनिश्चित करें कि यह कंप्यूटर : - + System requirements सिस्टम इंस्टॉल हेतु आवश्यकताएँ @@ -2888,27 +2934,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> यह कंप्यूटर %1 को सेटअप करने की न्यूनतम आवश्यकताओं को पूरा नहीं करता।<br/>सेटअप जारी नहीं रखा जा सकता।<a href="#details">विवरण...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> यह कंप्यूटर %1 को इंस्टॉल करने की न्यूनतम आवश्यकताओं को पूरा नहीं करता।<br/>इंस्टॉल जारी नहीं रखा जा सकता।<a href="#details">विवरण...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. यह कंप्यूटर %1 को सेटअप करने हेतु सुझाई गई आवश्यकताओं को पूरा नहीं करता।<br/>सेटअप जारी रखा जा सकता है, लेकिन कुछ विशेषताएँ को निष्क्रिय किया जा सकता हैं। - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. यह कंप्यूटर %1 को इंस्टॉल करने हेतु सुझाई गई आवश्यकताओं को पूरा नहीं करता।<br/>इंस्टॉल जारी रखा जा सकता है, लेकिन कुछ विशेषताएँ को निष्क्रिय किया जा सकता हैं। - + This program will ask you some questions and set up %2 on your computer. यह प्रोग्राम एक प्रश्नावली के आधार पर आपके कंप्यूटर पर %2 को सेट करेगा। @@ -2929,17 +2975,17 @@ Output: SetHostNameJob - + Set hostname %1 होस्ट नाम %1 सेट करें। - + Set hostname <strong>%1</strong>. होस्ट नाम <strong>%1</strong> सेट करें। - + Setting hostname %1. होस्ट नाम %1 सेट हो रहा है। @@ -2989,82 +3035,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. %1 विभाजन पर फ्लैग सेट करें। - + Set flags on %1MiB %2 partition. %1MiB के %2 विभाजन पर फ्लैग सेट करें। - + Set flags on new partition. नए विभाजन पर फ्लैग सेट करें। - + Clear flags on partition <strong>%1</strong>. <strong>%1</strong> विभाजन पर से फ्लैग हटाएँ। - + Clear flags on %1MiB <strong>%2</strong> partition. %1MiB के <strong>%2</strong> विभाजन पर से फ्लैग हटाएँ। - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. %1MiB के <strong>%2</strong> विभाजन पर <strong>%3</strong> का फ्लैग लगाएँ। - + Clearing flags on %1MiB <strong>%2</strong> partition. %1MiB के <strong>%2</strong> विभाजन पर से फ्लैग हटाएँ जा रहे हैं। - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. %1MiB के <strong>%2</strong> विभाजन पर फ्लैग <strong>%3</strong> सेट किए जा रहे हैं। - + Clear flags on new partition. नए विभाजन पर से फ्लैग हटाएँ। - + Flag partition <strong>%1</strong> as <strong>%2</strong>. <strong>%1</strong> विभाजन पर <strong>%2</strong> का फ्लैग लगाएँ। - + Flag new partition as <strong>%1</strong>. नए विभाजन पर<strong>%1</strong>का फ्लैग लगाएँ। - + Clearing flags on partition <strong>%1</strong>. <strong>%1</strong> विभाजन पर से फ्लैग हटाएँ जा रहे हैं। - + Clearing flags on new partition. नए विभाजन पर से फ्लैग हटाएँ जा रहे हैं। - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. <strong>%1</strong> विभाजन पर फ्लैग <strong>%2</strong> सेट किए जा रहे हैं। - + Setting flags <strong>%1</strong> on new partition. नए विभाजन पर फ्लैग <strong>%1</strong> सेट किए जा रहे हैं। - + The installer failed to set flags on partition %1. इंस्टॉलर विभाजन %1 पर फ्लैग सेट करने में विफल रहा। @@ -3294,47 +3340,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>यदि एक से अधिक व्यक्ति इस कंप्यूटर का उपयोग करेंगे, तो आप सेटअप के उपरांत एकाधिक अकाउंट बना सकते हैं।</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>यदि एक से अधिक व्यक्ति इस कंप्यूटर का उपयोग करेंगे, तो आप इंस्टॉल के उपरांत एकाधिक अकाउंट बना सकते हैं।</small> - + Your username is too long. आपका उपयोक्ता नाम काफ़ी लंबा है। - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. आपका होस्ट नाम काफ़ी छोटा है। - + Your hostname is too long. आपका होस्ट नाम काफ़ी लंबा है। - + Your passwords do not match! आपके कूटशब्द मेल नहीं खाते! @@ -3472,42 +3518,42 @@ Output: बारे में (&A) - + <h1>Welcome to the %1 installer.</h1> <h1>%1 इंस्टॉलर में आपका स्वागत है।</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>%1 के लिए Calamares इंस्टॉलर में आपका स्वागत है।</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>%1 हेतु Calamares सेटअप में आपका स्वागत है।</h1> - + <h1>Welcome to %1 setup.</h1> <h1>%1 सेटअप में आपका स्वागत है।</h1> - + About %1 setup %1 सेटअप के बारे में - + About %1 installer %1 इंस्टॉलर के बारे में - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <h1>%1</h1><br/><strong>%2<br/>के लिए %3</strong><br/><br/>प्रतिलिप्याधिकार 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>प्रतिलिप्याधिकार 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/><a href="https://calamares.io/team/">Calamares टीम</a> व <a href="https://www.transifex.com/calamares/calamares/">Calamares अनुवादक टीम</a> का धन्यवाद।<br/><br/><a href="https://calamares.io/">Calamares</a> का विकास <br/><a href="http://www.blue-systems.com/">ब्लू सिस्टम्स</a> - लिब्रेटिंग सॉफ्टवेयर द्वारा प्रायोजित है। - + %1 support %1 सहायता @@ -3515,7 +3561,7 @@ Output: WelcomeQmlViewStep - + Welcome स्वागत है @@ -3523,7 +3569,7 @@ Output: WelcomeViewStep - + Welcome स्वागत है @@ -3531,7 +3577,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_hr.ts b/lang/calamares_hr.ts index b36886885..fff2bb759 100644 --- a/lang/calamares_hr.ts +++ b/lang/calamares_hr.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Master Boot Record od %1 - + Boot Partition Boot particija @@ -42,7 +42,7 @@ Nemoj instalirati boot učitavač - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Gotovo @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Izvodim %1 operaciju. - + Bad working directory path Krivi put do radnog direktorija - + Working directory %1 for python job %2 is not readable. Radni direktorij %1 za python zadatak %2 nije čitljiv. - + Bad main script file Kriva glavna datoteka skripte - + Main script file %1 for python job %2 is not readable. Glavna skriptna datoteka %1 za python zadatak %2 nije čitljiva. - + Boost.Python error in job "%1". Boost.Python greška u zadatku "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... Učitavanje ... - + QML Step <i>%1</i>. QML korak <i>%1</i>. - + Loading failed. Učitavanje nije uspjelo. @@ -255,175 +255,175 @@ Calamares::ViewManager - + &Back &Natrag - + &Next &Sljedeće - + &Cancel &Odustani - + Cancel setup without changing the system. Odustanite od instalacije bez promjena na sustavu. - + Cancel installation without changing the system. Odustanite od instalacije bez promjena na sustavu. - + Setup Failed Instalacija nije uspjela - + Would you like to paste the install log to the web? Želite li objaviti dnevnik instaliranja na web? - + Install Log Paste URL URL za objavu dnevnika instaliranja - + The upload was unsuccessful. No web-paste was done. Objava dnevnika instaliranja na web nije uspjela. - + Calamares Initialization Failed Inicijalizacija Calamares-a nije uspjela - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 se ne može se instalirati. Calamares nije mogao učitati sve konfigurirane module. Ovo je problem s načinom na koji se Calamares koristi u distribuciji. - + <br/>The following modules could not be loaded: <br/>Sljedeći moduli se nisu mogli učitati: - + Continue with installation? Nastaviti sa instalacijom? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> Instalacijski program %1 će izvršiti promjene na vašem disku kako bi postavio %2. <br/><strong>Ne možete poništiti te promjene.</strong> - + &Set up now &Postaviti odmah - + &Set up &Postaviti - + &Install &Instaliraj - + Setup is complete. Close the setup program. Instalacija je završena. Zatvorite instalacijski program. - + Cancel setup? Prekinuti instalaciju? - + Cancel installation? Prekinuti instalaciju? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. Stvarno želite prekinuti instalacijski proces? Instalacijski program će izaći i sve promjene će biti izgubljene. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Stvarno želite prekinuti instalacijski proces? Instalacijski program će izaći i sve promjene će biti izgubljene. - - + + &Yes &Da - - + + &No &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 @@ -431,22 +431,22 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. CalamaresPython::Helper - + Unknown exception type Nepoznati tip iznimke - + unparseable Python error unparseable Python greška - + unparseable Python traceback unparseable Python traceback - + Unfetchable Python error. Nedohvatljiva Python greška. @@ -464,17 +464,17 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. CalamaresWindow - + %1 Setup Program %1 instalacijski program - + %1 Installer %1 Instalacijski program - + Show debug information Prikaži debug informaciju @@ -482,7 +482,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. CheckerContainer - + Gathering system information... Skupljanje informacija o sustavu... @@ -495,134 +495,134 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.Oblik - + After: Poslije: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Ručno particioniranje</strong><br/>Možete sami stvoriti ili promijeniti veličine particija. - + Boot loader location: Lokacija boot učitavača: - + Select storage de&vice: Odaberi uređaj za spremanje: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 će se smanjiti na %2MB i stvorit će se nova %3MB particija za %4. - + <strong>Select a partition to install on</strong> <strong>Odaberite particiju za instalaciju</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. EFI particija ne postoji na ovom sustavu. Vratite se natrag i koristite ručno particioniranje da bi ste postavili %1. - + The EFI system partition at %1 will be used for starting %2. EFI particija na %1 će se koristiti za pokretanje %2. - + EFI system partition: EFI particija: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Izgleda da na ovom disku nema operacijskog sustava. Što želite učiniti?<br/>Moći ćete provjeriti i potvrditi vaš odabir prije bilo kakvih promjena na disku. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Obriši disk</strong><br/>To će <font color="red">obrisati</font> sve podatke na odabranom disku. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Ovaj disk ima %1. Što želite učiniti?<br/>Moći ćete provjeriti i potvrditi vaš odabir prije bilo kakvih promjena na disku. - + No Swap Bez swap-a - + Reuse Swap Iskoristi postojeći swap - + Swap (no Hibernate) Swap (bez hibernacije) - + Swap (with Hibernate) Swap (sa hibernacijom) - + Swap to file Swap datoteka - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instaliraj uz postojeće</strong><br/>Instalacijski program će smanjiti particiju da bi napravio mjesto za %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Zamijeni particiju</strong><br/>Zamijenjuje particiju sa %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Ovaj disk već ima operacijski sustav. Što želite učiniti?<br/>Moći ćete provjeriti i potvrditi vaš odabir prije bilo kakvih promjena na disku. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Ovaj disk ima više operacijskih sustava. Što želite učiniti?<br/>Moći ćete provjeriti i potvrditi vaš odabir prije bilo kakvih promjena na disku. @@ -630,17 +630,17 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. ClearMountsJob - + Clear mounts for partitioning operations on %1 Ukloni montiranja za operacije s particijama na %1 - + Clearing mounts for partitioning operations on %1. Uklanjam montiranja za operacija s particijama na %1. - + Cleared all mounts for %1 Uklonjena sva montiranja za %1 @@ -687,10 +687,33 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.Naredba treba znati ime korisnika, ali nije definirano korisničko ime. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>Dobrodošli u Calamares instalacijski program za %1.</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>Dobrodošli u %1 instalacijski program.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + Dobrodošli u Calamares instalacijski program za %1. + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Dobrodošli u %1 instalacijski program.</h1> + + ContextualProcessJob - + Contextual Processes Job Posao kontekstualnih procesa @@ -748,27 +771,27 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.Ve&ličina: - + En&crypt Ši&friraj - + Logical Logično - + Primary Primarno - + GPT GPT - + Mountpoint already in use. Please select another one. Točka montiranja se već koristi. Odaberite drugu. @@ -776,22 +799,22 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. Stvori novu %2MB particiju na %4 (%3) s datotečnim sustavom %1. - + Create new <strong>%2MiB</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'. @@ -827,22 +850,22 @@ 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. @@ -994,13 +1017,13 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1113,7 +1136,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.Potvrdi lozinku - + Please enter the same passphrase in both boxes. Molimo unesite istu lozinku u oba polja. @@ -1121,37 +1144,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. @@ -1235,22 +1258,22 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. Formatiraj particiju %1 (datotečni sustav: %2, veličina: %3 MB) na %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. Formatiraj <strong>%3MB</strong>particiju <strong>%1</strong> na datotečni sustav <strong>%2</strong>. - + Formatting partition %1 with file system %2. Formatiraj particiju %1 na datotečni sustav %2. - + The installer failed to format partition %1 on disk '%2'. Instalacijski program nije uspio formatirati particiju %1 na disku '%2'. @@ -1657,16 +1680,6 @@ 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) @@ -1678,7 +1691,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.Mrežna instalacija. (Onemogućeno: Primanje nevažećih podataka o grupama) - + Network Installation. (Disabled: Incorrect configuration) Mrežna instalacija. (Onemogućeno: Neispravna konfiguracija) @@ -2024,7 +2037,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.Nepoznata greška - + Password is empty Lozinka je prazna @@ -2070,6 +2083,19 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.Paketi + + PackageModel + + + Name + Ime + + + + Description + Opis + + Page_Keyboard @@ -2232,34 +2258,34 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. PartitionModel - - + + Free Space Slobodni prostor - - + + New partition Nova particija - + Name Ime - + File System Datotečni sustav - + Mount Point Točka montiranja - + Size Veličina @@ -2327,17 +2353,17 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.I&nstaliraj boot učitavač na: - + Are you sure you want to create a new partition table on %1? Jeste li sigurni da želite stvoriti novu particijsku tablicu na %1? - + Can not create new partition Ne mogu stvoriti novu particiju - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Particijska tablica %1 već ima %2 primarne particije i nove se više ne mogu dodati. Molimo vas da uklonite jednu primarnu particiju i umjesto nje dodate proširenu particiju. @@ -2511,14 +2537,14 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. ProcessResult - + There was no output from the command. Nema izlazne informacije od naredbe. - + Output: @@ -2527,52 +2553,52 @@ Izlaz: - + External command crashed. Vanjska naredba je prekinula s radom. - + Command <i>%1</i> crashed. Naredba <i>%1</i> je prekinula s radom. - + External command failed to start. Vanjska naredba nije uspješno pokrenuta. - + Command <i>%1</i> failed to start. Naredba <i>%1</i> nije uspješno pokrenuta. - + Internal error when starting command. Unutrašnja greška pri pokretanju naredbe. - + Bad parameters for process job call. Krivi parametri za proces poziva posla. - + External command failed to finish. Vanjska naredba se nije uspjela izvršiti. - + Command <i>%1</i> failed to finish in %2 seconds. Naredba <i>%1</i> nije uspjela završiti za %2 sekundi. - + External command finished with errors. Vanjska naredba je završila sa pogreškama. - + Command <i>%1</i> finished with exit code %2. Naredba <i>%1</i> je završila sa izlaznim kodom %2. @@ -2591,22 +2617,22 @@ Izlaz: Zadano - + unknown nepoznato - + extended prošireno - + unformatted nije formatirano - + swap swap @@ -2660,6 +2686,14 @@ Izlaz: Ne mogu stvoriti slučajnu datoteku <pre>%1</pre>. + + RemoveUserJob + + + Remove live user from target system + Uklonite live korisnika iz ciljnog sustava + + RemoveVolumeGroupJob @@ -2687,140 +2721,153 @@ Izlaz: Oblik - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Odaberite gdje želite instalirati %1.<br/><font color="red">Upozorenje: </font>to će obrisati sve datoteke na odabranoj particiji. - + The selected item does not appear to be a valid partition. Odabrana stavka se ne ćini kao ispravna particija. - + %1 cannot be installed on empty space. Please select an existing partition. %1 ne može biti instaliran na prazni prostor. Odaberite postojeću particiju. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 se ne može instalirati na proširenu particiju. Odaberite postojeću primarnu ili logičku particiju. - + %1 cannot be installed on this partition. %1 se ne može instalirati na ovu particiju. - + Data partition (%1) Podatkovna particija (%1) - + Unknown system partition (%1) Nepoznata particija sustava (%1) - + %1 system partition (%2) %1 particija sustava (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>Particija %1 je premala za %2. Odaberite particiju kapaciteta od najmanje %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/>EFI particijane postoji na ovom sustavu. Vratite se natrag i koristite ručno particioniranje za postavljane %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 će biti instaliran na %2.<br/><font color="red">Upozorenje: </font>svi podaci na particiji %2 će biti izgubljeni. - + 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: + + RequirementsModel + + + This program will ask you some questions and set up your installation + Ovaj program će vam postaviti neka pitanja i postaviti vašu instalaciju. + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + Ovaj program ne zadovoljava minimalne uvijete za instalaciju. +Instalacija se ne može nastaviti + + ResizeFSJob - + Resize Filesystem Job Promjena veličine datotečnog sustava - + Invalid configuration Nevažeća konfiguracija - + The file-system resize job has an invalid configuration and will not run. Promjena veličine datotečnog sustava ima nevažeću konfiguraciju i neće se pokrenuti. - - + KPMCore not Available KPMCore nije dostupan - - + Calamares cannot start KPMCore for the file-system resize job. Calamares ne može pokrenuti KPMCore za promjenu veličine datotečnog sustava. - - - - - + + + + + Resize Failed Promjena veličine nije uspjela - + The filesystem %1 could not be found in this system, and cannot be resized. Datotečni sustav % 1 nije moguće pronaći na ovom sustavu i ne može mu se promijeniti veličina. - + The device %1 could not be found in this system, and cannot be resized. Uređaj % 1 nije moguće pronaći na ovom sustavu i ne može mu se promijeniti veličina. - - + + The filesystem %1 cannot be resized. Datotečnom sustavu %1 se ne može promijeniti veličina. - - + + The device %1 cannot be resized. Uređaju %1 se ne može promijeniti veličina. - + The filesystem %1 must be resized, but cannot. Datotečnom sustavu %1 se ne može promijeniti veličina iako bi se trebala. - + The device %1 must be resized, but cannot Uređaju %1 se ne može promijeniti veličina iako bi se trebala. @@ -2878,12 +2925,12 @@ Izlaz: ResultsListDialog - + For best results, please ensure that this computer: Za najbolje rezultate, pobrinite se da ovo računalo: - + System requirements Zahtjevi sustava @@ -2891,27 +2938,27 @@ Izlaz: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> Ovo računalo ne zadovoljava minimalne zahtjeve za instalaciju %1.<br/>Instalacija se ne može nastaviti.<a href="#details">Detalji...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Ovo računalo ne zadovoljava minimalne uvijete za instalaciju %1.<br/>Instalacija se ne može nastaviti.<a href="#details">Detalji...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. Računalo ne zadovoljava neke od preporučenih uvjeta za instalaciju %1.<br/>Instalacija se može nastaviti, ali neke značajke možda neće biti dostupne. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Računalo ne zadovoljava neke od preporučenih uvjeta za instalaciju %1.<br/>Instalacija se može nastaviti, ali neke značajke možda neće biti dostupne. - + This program will ask you some questions and set up %2 on your computer. Ovaj program će vam postaviti neka pitanja i instalirati %2 na vaše računalo. @@ -2932,17 +2979,17 @@ Izlaz: SetHostNameJob - + Set hostname %1 Postavi ime računala %1 - + Set hostname <strong>%1</strong>. Postavi ime računala <strong>%1</strong>. - + Setting hostname %1. Postavljam ime računala %1. @@ -2992,82 +3039,82 @@ Izlaz: SetPartFlagsJob - + Set flags on partition %1. Postavi oznake na particiji %1. - + Set flags on %1MiB %2 partition. Postavi oznake na %1MB %2 particiji. - + Set flags on new partition. Postavi oznake na novoj particiji. - + Clear flags on partition <strong>%1</strong>. Obriši oznake na particiji <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. Obriši oznake na %1MB <strong>%2</strong> particiji. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. Označi %1MB <strong>%2</strong> particiju kao <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. Brišem oznake na %1MB <strong>%2</strong> particiji. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. Postavljam oznake <strong>%3</strong> na %1MB <strong>%2</strong> particiji. - + Clear flags on new partition. Obriši oznake na novoj particiji. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Označi particiju <strong>%1</strong> kao <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Označi novu particiju kao <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Brišem oznake na particiji <strong>%1</strong>. - + Clearing flags on new partition. Brišem oznake na novoj particiji. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Postavljam oznake <strong>%2</strong> na particiji <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Postavljam oznake <strong>%1</strong> na novoj particiji. - + The installer failed to set flags on partition %1. Instalacijski program nije uspio postaviti oznake na particiji %1. @@ -3297,47 +3344,47 @@ Izlaz: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>Ako će više osoba koristiti ovo računalo, možete postaviti više korisničkih računa poslije instalacije.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>Ako će više osoba koristiti ovo računalo, možete postaviti više korisničkih računa poslije instalacije.</small> - + Your username is too long. Vaše korisničko ime je predugačko. - + Your username must start with a lowercase letter or underscore. Vaše korisničko ime mora započeti malim slovom ili podvlakom. - + Only lowercase letters, numbers, underscore and hyphen are allowed. Dopuštena su samo mala slova, brojevi, podvlake i crtice. - + Only letters, numbers, underscore and hyphen are allowed. Dopuštena su samo slova, brojevi, podvlake i crtice. - + Your hostname is too short. Ime računala je kratko. - + Your hostname is too long. Ime računala je predugačko. - + Your passwords do not match! Lozinke se ne podudaraju! @@ -3475,42 +3522,42 @@ Izlaz: &O programu - + <h1>Welcome to the %1 installer.</h1> <h1>Dobrodošli u %1 instalacijski program.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> Dobrodošli u Calamares instalacijski program za %1. - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>Dobrodošli u Calamares instalacijski program za %1.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>Dobrodošli u %1 instalacijski program.</h1> - + About %1 setup O %1 instalacijskom programu - + About %1 installer O %1 instalacijskom programu - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/> Hvala <a href="https://calamares.io/team/">Calamares timu</a> i <a href="https://www.transifex.com/calamares/calamares/">Calamares timu za prevođenje</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> sponzorira <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 podrška @@ -3518,7 +3565,7 @@ Izlaz: WelcomeQmlViewStep - + Welcome Dobrodošli @@ -3526,7 +3573,7 @@ Izlaz: WelcomeViewStep - + Welcome Dobrodošli @@ -3534,7 +3581,7 @@ Izlaz: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> <h3>%1</h3> diff --git a/lang/calamares_hu.ts b/lang/calamares_hu.ts index 593870453..93d48e3c6 100644 --- a/lang/calamares_hu.ts +++ b/lang/calamares_hu.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Mester Boot Record - %1 - + Boot Partition Indító partíció @@ -42,7 +42,7 @@ Ne telepítsen rendszerbetöltőt - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Kész @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Futó %1 műveletek. - + Bad working directory path Rossz munkakönyvtár útvonal - + Working directory %1 for python job %2 is not readable. Munkakönyvtár %1 a python folyamathoz %2 nem olvasható. - + Bad main script file Rossz alap script fájl - + Main script file %1 for python job %2 is not readable. Alap script fájl %1 a python folyamathoz %2 nem olvasható. - + Boost.Python error in job "%1". Boost. Python hiba ebben a folyamatban "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... Betöltés ... - + QML Step <i>%1</i>. QML lépés <i>%1</i>. - + Loading failed. A betöltés sikertelen. @@ -253,175 +253,175 @@ Calamares::ViewManager - + &Back &Vissza - + &Next &Következő - + &Cancel &Mégse - + Cancel setup without changing the system. Telepítés megszakítása a rendszer módosítása nélkül. - + Cancel installation without changing the system. Kilépés a telepítőből a rendszer megváltoztatása nélkül. - + Setup Failed Telepítési hiba - + Would you like to paste the install log to the web? - + Install Log Paste URL Telepítési napló beillesztési URL-je. - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed A Calamares előkészítése meghiúsult - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. A(z) %1 nem telepíthető. A Calamares nem tudta betölteni a konfigurált modulokat. Ez a probléma abból fakad, ahogy a disztribúció a Calamarest használja. - + <br/>The following modules could not be loaded: <br/>A következő modulok nem tölthetőek be: - + Continue with installation? Folytatja a telepítést? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> A %1 telepítő változtatásokat fog végrehajtani a lemezen a %2 telepítéséhez. <br/><strong>Ezután már nem tudja visszavonni a változtatásokat.</strong> - + &Set up now &Telepítés most - + &Set up &Telepítés - + &Install &Telepítés - + Setup is complete. Close the setup program. Telepítés sikerült. Zárja be a telepítőt. - + Cancel setup? Megszakítja a telepítést? - + Cancel installation? Abbahagyod a telepítést? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. Valóban megszakítod a telepítési eljárást? A telepítő ki fog lépni és minden változtatás elveszik. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Biztos abba szeretnéd hagyni a telepítést? Minden változtatás elveszik, ha kilépsz a telepítőből. - - + + &Yes &Igen - - + + &No &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, Bezárhatod a telepítőt. - + Error Hiba - + Installation Failed Telepítés nem sikerült @@ -429,22 +429,22 @@ Minden változtatás elveszik, ha kilépsz a telepítőből. CalamaresPython::Helper - + Unknown exception type Ismeretlen kivétel típus - + unparseable Python error nem egyeztethető Python hiba - + unparseable Python traceback nem egyeztethető Python visszakövetés - + Unfetchable Python error. Összehasonlíthatatlan Python hiba. @@ -461,17 +461,17 @@ Minden változtatás elveszik, ha kilépsz a telepítőből. CalamaresWindow - + %1 Setup Program %1 Program telepítése - + %1 Installer %1 Telepítő - + Show debug information Hibakeresési információk mutatása @@ -479,7 +479,7 @@ Minden változtatás elveszik, ha kilépsz a telepítőből. CheckerContainer - + Gathering system information... Rendszerinformációk gyűjtése... @@ -492,134 +492,134 @@ Minden változtatás elveszik, ha kilépsz a telepítőből. Adatlap - + After: Utána: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Manuális partícionálás</strong><br/>Létrehozhat vagy átméretezhet partíciókat. - + Boot loader location: Rendszerbetöltő helye: - + Select storage de&vice: Válassz tároló eszközt: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 zsugorítva lesz %2MiB -re és új %3MiB partíció lesz létrehozva itt %4. - + <strong>Select a partition to install on</strong> <strong>Válaszd ki a telepítésre szánt partíciót </strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Nem található EFI partíció a rendszeren. Menj vissza a manuális partícionáláshoz és állíts be %1. - + The EFI system partition at %1 will be used for starting %2. A %1 EFI rendszer partíció lesz használva %2 indításához. - + EFI system partition: EFI rendszerpartíció: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Úgy tűnik ezen a tárolóeszközön nincs operációs rendszer. Mit szeretnél csinálni?<br/>Lehetőséged lesz átnézni és megerősíteni a választásod mielőtt bármilyen változtatás történik a tárolóeszközön. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Lemez törlése</strong><br/>Ez <font color="red">törölni</font> fogja a lemezen levő összes adatot. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Ezen a tárolóeszközön %1 található. Mit szeretnél tenni?<br/>Lehetőséged lesz átnézni és megerősíteni a választásod mielőtt bármilyen változtatás történik a tárolóeszközön. - + No Swap Swap nélkül - + Reuse Swap Swap újrahasználata - + Swap (no Hibernate) Swap (nincs hibernálás) - + Swap (with Hibernate) Swap (hibernálással) - + Swap to file Swap fájlba - - - - + + + + <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. @@ -627,17 +627,17 @@ Minden változtatás elveszik, ha kilépsz a telepítőből. ClearMountsJob - + Clear mounts for partitioning operations on %1 %1 csatolás törlése partícionáláshoz - + Clearing mounts for partitioning operations on %1. %1 csatolás törlése partícionáláshoz - + Cleared all mounts for %1 %1 minden csatolása törölve @@ -684,10 +684,33 @@ Minden változtatás elveszik, ha kilépsz a telepítőből. A parancsnak tudnia kell a felhasználónevet, de az nincs megadva. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>Üdvözli önt a Calamares telepítő itt %1!</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>Köszöntjük a %1 telepítőben!</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Üdvözlet a Calamares %1 telepítőjében.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Üdvözlet a %1 telepítőben.</h1> + + ContextualProcessJob - + Contextual Processes Job Környezetfüggő folyamatok feladat @@ -745,27 +768,27 @@ Minden változtatás elveszik, ha kilépsz a telepítőből. Mé&ret: - + En&crypt Titkosítás - + Logical Logikai - + Primary Elsődleges - + GPT GPT - + Mountpoint already in use. Please select another one. A csatolási pont már használatban van. Kérlek, válassz másikat. @@ -773,22 +796,22 @@ Minden változtatás elveszik, ha kilépsz a telepítőből. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. Új partíció létrehozása %2MiB partíción a %4 (%3) %1 fájlrendszerrel - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Új <strong>%2MiB </strong>partíció létrehozása itt <strong>%4</strong> (%3) fájlrendszer típusa <strong>%1</strong>. - + 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'. @@ -824,22 +847,22 @@ Minden változtatás elveszik, ha kilépsz a telepítőbő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. @@ -991,13 +1014,13 @@ Minden változtatás elveszik, ha kilépsz a telepítőből. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 – (%2) @@ -1110,7 +1133,7 @@ Minden változtatás elveszik, ha kilépsz a telepítőből. Jelszó megerősítés - + Please enter the same passphrase in both boxes. Írd be ugyanazt a jelmondatot mindkét dobozban. @@ -1118,37 +1141,37 @@ Minden változtatás elveszik, ha kilépsz a telepítőbő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 @@ -1232,22 +1255,22 @@ Minden változtatás elveszik, ha kilépsz a telepítőből. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. Partíció formázása %1 (fájlrendszer: %2, méret: %3 MiB) itt %4 - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. <strong>%3MiB</strong> <strong>%1</strong> partíció formázása <strong>%2</strong> fájlrendszerrel. - + Formatting partition %1 with file system %2. %1 partíció formázása %2 fájlrendszerrel. - + The installer failed to format partition %1 on disk '%2'. A telepítő nem tudta formázni a %1 partíciót a %2 lemezen. @@ -1654,16 +1677,6 @@ Minden változtatás elveszik, ha kilépsz a telepítőből. NetInstallPage - - - Name - Név - - - - Description - Leírás - Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1675,7 +1688,7 @@ Minden változtatás elveszik, ha kilépsz a telepítőből. Hálózati Telepítés. (Letiltva: Hibás adat csoportok fogadva) - + Network Installation. (Disabled: Incorrect configuration) @@ -2021,7 +2034,7 @@ Minden változtatás elveszik, ha kilépsz a telepítőből. Ismeretlen hiba - + Password is empty @@ -2067,6 +2080,19 @@ Minden változtatás elveszik, ha kilépsz a telepítőből. + + PackageModel + + + Name + Név + + + + Description + Leírás + + Page_Keyboard @@ -2229,34 +2255,34 @@ Minden változtatás elveszik, ha kilépsz a telepítőből. PartitionModel - - + + Free Space Szabad terület - - + + New partition Új partíció - + Name Név - + File System Fájlrendszer - + Mount Point Csatolási pont - + Size Méret @@ -2324,17 +2350,17 @@ Minden változtatás elveszik, ha kilépsz a telepítőből. Rendszerbetöltő &telepítése ide: - + Are you sure you want to create a new partition table on %1? Biztos vagy benne, hogy létrehozol egy új partíciós táblát itt %1 ? - + Can not create new partition Nem hozható létre új partíció - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. A(z) %1 lemezen lévő partíciós táblában már %2 elsődleges partíció van, és több nem adható hozzá. Helyette távolítson el egy elsődleges partíciót, és adjon hozzá egy kiterjesztett partíciót. @@ -2508,14 +2534,14 @@ Minden változtatás elveszik, ha kilépsz a telepítőből. ProcessResult - + There was no output from the command. A parancsnak nem volt kimenete. - + Output: @@ -2524,52 +2550,52 @@ Kimenet: - + External command crashed. Külső parancs összeomlott. - + Command <i>%1</i> crashed. Parancs <i>%1</i> összeomlott. - + External command failed to start. A külső parancsot nem sikerült elindítani. - + Command <i>%1</i> failed to start. A(z) <i>%1</i> parancsot nem sikerült elindítani. - + Internal error when starting command. Belső hiba a parancs végrehajtásakor. - + Bad parameters for process job call. Hibás paraméterek a folyamat hívásához. - + External command failed to finish. Külső parancs nem fejeződött be. - + Command <i>%1</i> failed to finish in %2 seconds. A(z) <i>%1</i> parancsot nem sikerült befejezni %2 másodperc alatt. - + External command finished with errors. A külső parancs hibával fejeződött be. - + Command <i>%1</i> finished with exit code %2. A(z) <i>%1</i> parancs hibakóddal lépett ki: %2. @@ -2588,22 +2614,22 @@ Kimenet: Alapértelmezett - + unknown ismeretlen - + extended kiterjesztett - + unformatted formázatlan - + swap Swap @@ -2657,6 +2683,14 @@ Kimenet: + + RemoveUserJob + + + Remove live user from target system + Éles felhasználó eltávolítása a cél rendszerből + + RemoveVolumeGroupJob @@ -2684,140 +2718,152 @@ Kimenet: Adatlap - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Válaszd ki az telepítés helyét %1.<br/><font color="red">Figyelmeztetés: </font>minden fájl törölve lesz a kiválasztott partíción. - + The selected item does not appear to be a valid partition. A kiválasztott elem nem tűnik érvényes partíciónak. - + %1 cannot be installed on empty space. Please select an existing partition. %1 nem telepíthető, kérlek válassz egy létező partíciót. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 nem telepíthető a kiterjesztett partícióra. Kérlek, válassz egy létező elsődleges vagy logikai partíciót. - + %1 cannot be installed on this partition. Nem lehet telepíteni a következőt %1 erre a partícióra. - + Data partition (%1) Adat partíció (%1) - + Unknown system partition (%1) Ismeretlen rendszer partíció (%1) - + %1 system partition (%2) %1 rendszer partíció (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>A partíció %1 túl kicsi a következőhöz %2. Kérlek, válassz egy legalább %3 GB- os partíciót. - + <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/>Az EFI rendszerpartíció nem található a rendszerben. Kérlek, lépj vissza és állítsd be manuális partícionálással %1- et. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 installálva lesz a következőre: %2.<br/><font color="red">Figyelmeztetés: </font>a partíción %2 minden törölve lesz. - + The EFI system partition at %1 will be used for starting %2. A %2 indításához az EFI rendszer partíciót használja a következőn: %1 - + EFI system partition: EFI rendszer partíció: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job Fájlrendszer átméretezési feladat - + Invalid configuration Érvénytelen konfiguráció - + The file-system resize job has an invalid configuration and will not run. A fájlrendszer átméretezési feladat konfigurációja érvénytelen, és nem fog futni. - - + KPMCore not Available A KPMCore nem érhető el - - + Calamares cannot start KPMCore for the file-system resize job. A Calamares nem tudja elindítani a KPMCore-t a fájlrendszer átméretezési feladathoz. - - - - - + + + + + Resize Failed Az átméretezés meghiúsult - + The filesystem %1 could not be found in this system, and cannot be resized. A(z) %1 fájlrendszer nem található a rendszeren, és nem méretezhető át. - + The device %1 could not be found in this system, and cannot be resized. A(z) %1 eszköz nem található a rendszeren, és nem méretezhető át. - - + + The filesystem %1 cannot be resized. A(z) %1 fájlrendszer nem méretezhető át. - - + + The device %1 cannot be resized. A(z) %1 eszköz nem méretezhető át. - + The filesystem %1 must be resized, but cannot. A(z) %1 fájlrendszert át kell méretezni, de nem lehet. - + The device %1 must be resized, but cannot A(z) %1 eszközt át kell méretezni, de nem lehet @@ -2875,12 +2921,12 @@ Kimenet: ResultsListDialog - + For best results, please ensure that this computer: A legjobb eredményért győződjünk meg, hogy ez a számítógép: - + System requirements Rendszer követelmények @@ -2888,28 +2934,28 @@ Kimenet: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> Ez a számítógép nem felel meg a minimum követelményeknek a %1 telepítéséhez. <br/>A telepítés nem folytatható. <a href="#details">Részletek...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Ez a számítógép nem felel meg a minimum követelményeknek a %1 telepítéséhez.<br/> Telepítés nem folytatható. <a href="#details">Részletek...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. Ez a számítógép nem felel meg néhány követelménynek a %1 telepítéséhez. <br/>A telepítés folytatható de előfordulhat néhány képesség nem lesz elérhető. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Ez a számítógép nem felel meg a minimum követelményeknek a %1 telepítéséhez.<br/>Telepítés folytatható de néhány tulajdonság valószínűleg nem lesz elérhető. - + This program will ask you some questions and set up %2 on your computer. Ez a program fel fog tenni néhány kérdést és %2 -t telepíti a számítógépre. @@ -2930,17 +2976,17 @@ Telepítés nem folytatható. <a href="#details">Részletek...</a> SetHostNameJob - + Set hostname %1 Hálózati név beállítása a %1 -en - + Set hostname <strong>%1</strong>. Hálózati név beállítása a következőhöz: <strong>%1</strong>. - + Setting hostname %1. Hálózati név beállítása a %1 -hez @@ -2990,82 +3036,82 @@ Telepítés nem folytatható. <a href="#details">Részletek...</a> SetPartFlagsJob - + Set flags on partition %1. Zászlók beállítása a partíción %1. - + Set flags on %1MiB %2 partition. flags beállítása a %1MiB %2 partíción. - + Set flags on new partition. Jelzők beállítása az új partíción. - + Clear flags on partition <strong>%1</strong>. Zászlók törlése a partíción: <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. flags eltávolítása a %1MiB <strong>%2</strong> partíción. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. Flag %1MiB <strong>%2</strong> partíción mint <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. Flag-ek eltávolítása a %1MiB <strong>%2</strong> partíción. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. Flag-ek beállítása <strong>%3</strong> a %1MiB <strong>%2</strong> partíción. - + Clear flags on new partition. Jelzők törlése az új partíción. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Zászlók beállítása <strong>%1</strong> ,mint <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Jelző beállítása mint <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Zászlók törlése a partíción: <strong>%1</strong>. - + Clearing flags on new partition. jelzők törlése az új partíción. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Zászlók beállítása <strong>%2</strong> a <strong>%1</strong> partíción. - + Setting flags <strong>%1</strong> on new partition. Jelzők beállítása az új <strong>%1</strong> partíción. - + The installer failed to set flags on partition %1. A telepítőnek nem sikerült a zászlók beállítása a partíción %1. @@ -3296,47 +3342,47 @@ Calamares hiba %1. UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>Ha egynél több személy használja a számítógépet akkor létrehozhat több felhasználói fiókot telepítés után.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>Ha egynél több személy használja a számítógépet akkor létrehozhat több felhasználói fiókot telepítés után.</small> - + Your username is too long. A felhasználónév túl hosszú. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + 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 passwords do not match! A két jelszó nem egyezik! @@ -3474,42 +3520,42 @@ Calamares hiba %1. &Névjegy - + <h1>Welcome to the %1 installer.</h1> <h1>Üdvözlet a %1 telepítőben.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Üdvözlet a Calamares %1 telepítőjében.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>Üdvözli önt a Calamares telepítő itt %1!</h1> - + <h1>Welcome to %1 setup.</h1> <h1>Köszöntjük a %1 telepítőben!</h1> - + About %1 setup A %1 telepítőről. - + About %1 installer A %1 telepítőről - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <h1>%1</h1><br/><strong>%2<br/>a %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Köszönet<a href="https://calamares.io/team/"> a Calamares csapatnak</a> és a <a href="https://www.transifex.com/calamares/calamares/"> Calamares fordítói csapatának</a>. <br/><br/><a href="https://calamares.io/">A Calamares</a> fejlesztését a <br/><a href="http://www.blue-systems.com/">Blue Systems</a> -Liberating Software támogatja. - + %1 support %1 támogatás @@ -3517,7 +3563,7 @@ Calamares hiba %1. WelcomeQmlViewStep - + Welcome Üdvözlet @@ -3525,7 +3571,7 @@ Calamares hiba %1. WelcomeViewStep - + Welcome Üdvözlet @@ -3533,7 +3579,7 @@ Calamares hiba %1. notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_id.ts b/lang/calamares_id.ts index 61801031e..a4bd6559b 100644 --- a/lang/calamares_id.ts +++ b/lang/calamares_id.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Master Boot Record %1 - + Boot Partition Partisi Boot @@ -42,7 +42,7 @@ Jangan instal boot loader - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Selesai @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Menjalankan %1 operasi. - + Bad working directory path Jalur lokasi direktori tidak berjalan baik - + Working directory %1 for python job %2 is not readable. Direktori kerja %1 untuk penugasan python %2 tidak dapat dibaca. - + Bad main script file Berkas skrip utama buruk - + Main script file %1 for python job %2 is not readable. Berkas skrip utama %1 untuk penugasan python %2 tidak dapat dibaca. - + Boost.Python error in job "%1". Boost.Python mogok dalam penugasan "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -251,174 +251,174 @@ Calamares::ViewManager - + &Back &Kembali - + &Next &Berikutnya - + &Cancel &Batal - + Cancel setup without changing the system. - + Cancel installation without changing the system. Batalkan instalasi tanpa mengubah sistem yang ada. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed Inisialisasi Calamares Gagal - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 tidak dapat terinstal. Calamares tidak dapat memuat seluruh modul konfigurasi. Terdapat masalah dengan Calamares karena sedang digunakan oleh distribusi. - + <br/>The following modules could not be loaded: <br/>Modul berikut tidak dapat dimuat. - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install &Instal - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? Batalkan instalasi? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Apakah Anda benar-benar ingin membatalkan proses instalasi ini? Instalasi akan ditutup dan semua perubahan akan hilang. - - + + &Yes &Ya - - + + &No &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> Installer %1 akan membuat perubahan ke disk Anda untuk memasang %2.<br/><strong>Anda tidak dapat membatalkan perubahan tersebut.</strong> - + &Install now &Instal sekarang - + Go &back &Kembali - + &Done &Kelar - + The installation is complete. Close the installer. Instalasi sudah lengkap. Tutup installer. - + Error Kesalahan - + Installation Failed Instalasi Gagal @@ -426,22 +426,22 @@ Instalasi akan ditutup dan semua perubahan akan hilang. CalamaresPython::Helper - + Unknown exception type Tipe pengecualian tidak dikenal - + unparseable Python error tidak dapat mengurai pesan kesalahan Python - + unparseable Python traceback tidak dapat mengurai penelusuran balik Python - + Unfetchable Python error. Tidak dapat mengambil pesan kesalahan Python. @@ -458,17 +458,17 @@ Instalasi akan ditutup dan semua perubahan akan hilang. CalamaresWindow - + %1 Setup Program - + %1 Installer Installer %1 - + Show debug information Tampilkan informasi debug @@ -476,7 +476,7 @@ Instalasi akan ditutup dan semua perubahan akan hilang. CheckerContainer - + Gathering system information... Mengumpulkan informasi sistem... @@ -489,134 +489,134 @@ Instalasi akan ditutup dan semua perubahan akan hilang. Isian - + After: Setelah: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Pemartisian manual</strong><br/>Anda bisa membuat atau mengubah ukuran partisi. - + Boot loader location: Lokasi Boot loader: - + Select storage de&vice: Pilih perangkat penyimpanan: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> <strong>Pilih sebuah partisi untuk memasang</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Sebuah partisi sistem EFI tidak ditemukan pada sistem ini. Silakan kembali dan gunakan pemartisian manual untuk mengeset %1. - + The EFI system partition at %1 will be used for starting %2. Partisi sistem EFI di %1 akan digunakan untuk memulai %2. - + EFI system partition: Partisi sistem EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Tampaknya media penyimpanan ini tidak mengandung sistem operasi. Apa yang hendak Anda lakukan?<br/>Anda dapat menelaah dan mengkonfirmasi pilihan Anda sebelum dilakukan perubahan pada media penyimpanan. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Hapus disk</strong><br/>Aksi ini akan <font color="red">menghapus</font> semua berkas yang ada pada media penyimpanan terpilih. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Media penyimpanan ini mengandung %1. Apa yang hendak Anda lakukan?<br/>Anda dapat menelaah dan mengkonfirmasi pilihan Anda sebelum dilakukan perubahan pada media penyimpanan. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instal berdampingan dengan</strong><br/>Installer akan mengiris sebuah partisi untuk memberi ruang bagi %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Ganti sebuah partisi</strong><br/> Ganti partisi dengan %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Media penyimpanan ini telah mengandung sistem operasi. Apa yang hendak Anda lakukan?<br/>Anda dapat menelaah dan mengkonfirmasi pilihan Anda sebelum dilakukan perubahan pada media penyimpanan. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Media penyimpanan ini telah mengandung beberapa sistem operasi. Apa yang hendak Anda lakukan?<br/>Anda dapat menelaah dan mengkonfirmasi pilihan Anda sebelum dilakukan perubahan pada media penyimpanan. @@ -624,17 +624,17 @@ Instalasi akan ditutup dan semua perubahan akan hilang. ClearMountsJob - + Clear mounts for partitioning operations on %1 Lepaskan semua kaitan untuk operasi pemartisian pada %1 - + Clearing mounts for partitioning operations on %1. Melepas semua kaitan untuk operasi pemartisian pada %1 - + Cleared all mounts for %1 Semua kaitan dilepas untuk %1 @@ -681,10 +681,33 @@ Instalasi akan ditutup dan semua perubahan akan hilang. Perintah perlu diketahui nama si pengguna, tetapi bukan nama pengguna yang ditentukan. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Selamat datang di Calamares installer untuk %1.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Selamat datang di installer %1.</h1> + + ContextualProcessJob - + Contextual Processes Job Memproses tugas kontekstual @@ -742,27 +765,27 @@ Instalasi akan ditutup dan semua perubahan akan hilang. Uku&ran: - + En&crypt Enkripsi - + Logical Logikal - + Primary Utama - + GPT GPT - + Mountpoint already in use. Please select another one. Titik-kait sudah digunakan. Silakan pilih yang lainnya. @@ -770,22 +793,22 @@ Instalasi akan ditutup dan semua perubahan akan hilang. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. Membuat partisi %1 baru di %2. - + The installer failed to create partition on disk '%1'. Installer gagal untuk membuat partisi di disk '%1'. @@ -821,22 +844,22 @@ Instalasi akan ditutup dan semua perubahan akan hilang. 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. Installer gagal membuat tabel partisi pada %1. @@ -988,13 +1011,13 @@ Instalasi akan ditutup dan semua perubahan akan hilang. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1107,7 +1130,7 @@ Instalasi akan ditutup dan semua perubahan akan hilang. Konfirmasi kata sandi - + Please enter the same passphrase in both boxes. Silakan masukkan kata sandi yang sama di kedua kotak. @@ -1115,37 +1138,37 @@ Instalasi akan ditutup dan semua perubahan akan hilang. FillGlobalStorageJob - + Set partition information Tetapkan informasi partisi - + Install %1 on <strong>new</strong> %2 system partition. Instal %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>. Instal %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>. Instal boot loader di <strong>%1</strong>. - + Setting up mount points. Menyetel tempat kait. @@ -1229,22 +1252,22 @@ Instalasi akan ditutup dan semua perubahan akan hilang. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. Memformat partisi %1 dengan sistem berkas %2. - + The installer failed to format partition %1 on disk '%2'. Installer gagal memformat partisi %1 pada disk '%2'.'%2'. @@ -1651,16 +1674,6 @@ Instalasi akan ditutup dan semua perubahan akan hilang. NetInstallPage - - - Name - Nama - - - - Description - Deskripsi - Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1672,7 +1685,7 @@ Instalasi akan ditutup dan semua perubahan akan hilang. Instalasi jaringan. (Menonaktifkan: Penerimaan kelompok data yang tidak sah) - + Network Installation. (Disabled: Incorrect configuration) @@ -2018,7 +2031,7 @@ Instalasi akan ditutup dan semua perubahan akan hilang. Ada kesalahan yang tidak diketahui - + Password is empty @@ -2064,6 +2077,19 @@ Instalasi akan ditutup dan semua perubahan akan hilang. + + PackageModel + + + Name + Nama + + + + Description + Deskripsi + + Page_Keyboard @@ -2226,34 +2252,34 @@ Instalasi akan ditutup dan semua perubahan akan hilang. PartitionModel - - + + Free Space Ruang Kosong - - + + New partition Partisi baru - + Name Nama - + File System Berkas Sistem - + Mount Point Lokasi Mount - + Size Ukuran @@ -2321,17 +2347,17 @@ Instalasi akan ditutup dan semua perubahan akan hilang. I&nstal boot loader di: - + Are you sure you want to create a new partition table on %1? Apakah Anda yakin ingin membuat tabel partisi baru pada %1? - + Can not create new partition Tidak bisa menciptakan partisi baru. - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Partisi tabel pada %1 sudah memiliki %2 partisi primer, dan tidak ada lagi yang bisa ditambahkan. Silakan hapus salah satu partisi primer dan tambahkan sebuah partisi extended, sebagai gantinya. @@ -2505,14 +2531,14 @@ Instalasi akan ditutup dan semua perubahan akan hilang. ProcessResult - + There was no output from the command. Tidak ada keluaran dari perintah. - + Output: @@ -2521,52 +2547,52 @@ Keluaran: - + External command crashed. Perintah eksternal rusak. - + Command <i>%1</i> crashed. Perintah <i>%1</i> mogok. - + External command failed to start. Perintah eksternal gagal dimulai - + Command <i>%1</i> failed to start. Perintah <i>%1</i> gagal dimulai. - + Internal error when starting command. Terjadi kesalahan internal saat menjalankan perintah. - + Bad parameters for process job call. Parameter buruk untuk memproses panggilan tugas, - + External command failed to finish. Perintah eksternal gagal diselesaikan . - + Command <i>%1</i> failed to finish in %2 seconds. Perintah <i>%1</i> gagal untuk diselesaikan dalam %2 detik. - + External command finished with errors. Perintah eksternal diselesaikan dengan kesalahan . - + Command <i>%1</i> finished with exit code %2. Perintah <i>%1</i> diselesaikan dengan kode keluar %2. @@ -2585,22 +2611,22 @@ Keluaran: Standar - + unknown tidak diketahui: - + extended extended - + unformatted tidak terformat: - + swap swap @@ -2654,6 +2680,14 @@ Keluaran: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2681,140 +2715,152 @@ Keluaran: Isian - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Pilih tempat instalasi %1.<br/><font color="red">Peringatan: </font>hal ini akan menghapus semua berkas di partisi terpilih. - + The selected item does not appear to be a valid partition. Item yang dipilih tidak tampak seperti partisi yang valid. - + %1 cannot be installed on empty space. Please select an existing partition. %1 tidak dapat diinstal di ruang kosong. Mohon pilih partisi yang tersedia. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 tidak bisa diinstal pada Partisi Extended. Mohon pilih Partisi Primary atau Logical yang tersedia. - + %1 cannot be installed on this partition. %1 tidak dapat diinstal di partisi ini. - + Data partition (%1) Partisi data (%1) - + Unknown system partition (%1) Partisi sistem tidak dikenal (%1) - + %1 system partition (%2) Partisi sistem %1 (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>Partisi %1 teralu kecil untuk %2. Mohon pilih partisi dengan kapasitas minimal %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/>Tidak ditemui adanya Partisi EFI pada sistem ini. Mohon kembali dan gunakan Pemartisi Manual untuk set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 akan diinstal pada %2.<br/><font color="red">Peringatan: </font>seluruh data %2 akan hilang. - + The EFI system partition at %1 will be used for starting %2. Partisi EFI pada %1 akan digunakan untuk memulai %2. - + EFI system partition: Partisi sistem EFI: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job Tugas Ubah-ukuran Filesystem - + Invalid configuration Konfigurasi taksah - + The file-system resize job has an invalid configuration and will not run. Tugas pengubahan ukuran filesystem mempunyai sebuah konfigurasi yang taksah dan tidak akan berjalan. - - + KPMCore not Available KPMCore tidak Tersedia - - + Calamares cannot start KPMCore for the file-system resize job. Calamares gak bisa menjalankan KPMCore untuk tugas pengubahan ukuran filesystem. - - - - - + + + + + Resize Failed Pengubahan Ukuran, Gagal - + The filesystem %1 could not be found in this system, and cannot be resized. Filesystem %1 enggak ditemukan dalam sistem ini, dan gak bisa diubahukurannya. - + The device %1 could not be found in this system, and cannot be resized. Perangkat %1 enggak ditemukan dalam sistem ini, dan gak bisa diubahukurannya. - - + + The filesystem %1 cannot be resized. Filesystem %1 gak bisa diubahukurannya. - - + + The device %1 cannot be resized. Perangkat %1 gak bisa diubahukurannya. - + The filesystem %1 must be resized, but cannot. Filesystem %1 mestinya bisa diubahukurannya, namun gak bisa. - + The device %1 must be resized, but cannot Perangkat %1 mestinya bisa diubahukurannya, namun gak bisa. @@ -2872,12 +2918,12 @@ Keluaran: ResultsListDialog - + For best results, please ensure that this computer: Untuk hasil terbaik, mohon pastikan bahwa komputer ini: - + System requirements Kebutuhan sistem @@ -2885,29 +2931,29 @@ Keluaran: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Komputer ini tidak memenuhi syarat minimum untuk memasang %1. Installer tidak dapat dilanjutkan. <a href=" - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Komputer ini tidak memenuhi beberapa syarat yang dianjurkan untuk memasang %1. Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. - + This program will ask you some questions and set up %2 on your computer. Program ini akan mengajukan beberapa pertanyaan dan menyetel %2 pada komputer Anda. @@ -2928,17 +2974,17 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. SetHostNameJob - + Set hostname %1 Pengaturan hostname %1 - + Set hostname <strong>%1</strong>. Atur hostname <strong>%1</strong>. - + Setting hostname %1. Mengatur hostname %1. @@ -2988,82 +3034,82 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. SetPartFlagsJob - + Set flags on partition %1. Setel bendera pada partisi %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. Setel bendera pada partisi baru. - + Clear flags on partition <strong>%1</strong>. Bersihkan bendera pada partisi <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. Bersihkan bendera pada partisi baru. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Benderakan partisi <strong>%1</strong> sebagai <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Benderakan partisi baru sebagai <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Membersihkan bendera pada partisi <strong>%1</strong>. - + Clearing flags on new partition. Membersihkan bendera pada partisi baru. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Menyetel bendera <strong>%2</strong> pada partisi <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Menyetel bendera <strong>%1</strong> pada partisi baru. - + The installer failed to set flags on partition %1. Installer gagal menetapkan bendera pada partisi %1. @@ -3293,47 +3339,47 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. Nama pengguna Anda terlalu panjang. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. Hostname Anda terlalu pendek. - + Your hostname is too long. Hostname Anda terlalu panjang. - + Your passwords do not match! Sandi Anda tidak sama! @@ -3471,42 +3517,42 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.&Tentang - + <h1>Welcome to the %1 installer.</h1> <h1>Selamat datang di installer %1.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Selamat datang di Calamares installer untuk %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer Tentang installer %1 - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support Dukungan %1 @@ -3514,7 +3560,7 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. WelcomeQmlViewStep - + Welcome Selamat Datang @@ -3522,7 +3568,7 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. WelcomeViewStep - + Welcome Selamat Datang @@ -3530,7 +3576,7 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_is.ts b/lang/calamares_is.ts index 64118477b..f7379aaaf 100644 --- a/lang/calamares_is.ts +++ b/lang/calamares_is.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Aðalræsifærsla (MBR) %1 - + Boot Partition Ræsidisksneið @@ -42,7 +42,7 @@ Ekki setja upp ræsistjóra - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Búið @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Keyri %1 aðgerð. - + Bad working directory path Röng slóð á vinnumöppu - + Working directory %1 for python job %2 is not readable. Vinnslumappa %1 fyrir python-verkið %2 er ekki lesanleg. - + Bad main script file Röng aðal-skriftuskrá - + Main script file %1 for python job %2 is not readable. Aðal-skriftuskrá %1 fyrir python-verkið %2 er ekki lesanleg. - + Boost.Python error in job "%1". Boost.Python villa í verkinu "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,174 +253,174 @@ Calamares::ViewManager - + &Back &Til baka - + &Next &Næst - + &Cancel &Hætta við - + Cancel setup without changing the system. - + Cancel installation without changing the system. Hætta við uppsetningu ánþess að breyta kerfinu. - + Setup Failed Uppsetning mistókst - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed Calamares uppsetning mistókst - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? Halda áfram með uppsetningu? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now &Setja upp núna - + &Set up &Setja upp - + &Install &Setja upp - + Setup is complete. Close the setup program. - + Cancel setup? Hætta við uppsetningu? - + Cancel installation? Hætta við uppsetningu? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Viltu virkilega að hætta við núverandi uppsetningarferli? Uppsetningarforritið mun hætta og allar breytingar tapast. - - + + &Yes &Já - - + + &No &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 @@ -428,22 +428,22 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. CalamaresPython::Helper - + Unknown exception type Óþekkt tegund fráviks - + unparseable Python error óþáttanleg Python villa - + unparseable Python traceback óþáttanleg Python reki - + Unfetchable Python error. Ósækjanleg Python villa. @@ -460,17 +460,17 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. CalamaresWindow - + %1 Setup Program - + %1 Installer %1 uppsetningarforrit - + Show debug information Birta villuleitarupplýsingar @@ -478,7 +478,7 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. CheckerContainer - + Gathering system information... Söfnun kerfis upplýsingar... @@ -491,134 +491,134 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. Eyðublað - + After: Eftir: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Handvirk disksneiðing</strong><br/>Þú getur búið til eða breytt stærð disksneiða sjálft. - + Boot loader location: Staðsetning ræsistjóra - + Select storage de&vice: Veldu geymslu tæ&ki: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> <strong>Veldu disksneið til að setja upp á </strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. EFI kerfisdisksneið er hvergi að finna á þessu kerfi. Farðu til baka og notaðu handvirka skiptingu til að setja upp %1. - + The EFI system partition at %1 will be used for starting %2. EFI kerfisdisksneið á %1 mun verða notuð til að ræsa %2. - + EFI system partition: EFI kerfisdisksneið: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Þetta geymslu tæki hefur mörg stýrikerfi á sér. Hvað viltu gera?<br/>Þú verður að vera fær um að yfirfara og staðfesta val þitt áður en breytingar eru gerðar til geymslu tæki. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Eyða disk</strong><br/>Þetta mun <font color="red">eyða</font> öllum gögnum á þessu valdna geymslu tæki. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Þetta geymslu tæki hefur %1 á sér. Hvað viltu gera?<br/>Þú verður að vera fær um að yfirfara og staðfesta val þitt áður en breytingar eru gerðar til geymslu tæki. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Setja upp samhliða</strong><br/>Uppsetningarforritið mun minnka disksneið til að búa til pláss fyrir %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Skipta út disksneið</strong><br/>Skiptir disksneið út með %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Þetta geymslu tæki hefur stýrikerfi á sér. Hvað viltu gera?<br/>Þú verður að vera fær um að yfirfara og staðfesta val þitt áður en breytingar eru gerðar til geymslu tæki. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Þetta geymslu tæki hefur mörg stýrikerfi á sér. Hvað viltu gera?<br/>Þú verður að vera fær um að yfirfara og staðfesta val þitt áður en breytingar eru gerðar til geymslu tæki. @@ -626,17 +626,17 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. ClearMountsJob - + Clear mounts for partitioning operations on %1 - + Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 Hreinsaði alla tengipunkta fyrir %1 @@ -683,10 +683,33 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>Velkomin til Calamares uppsetningarforritið fyrir %1</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>Velkomin í %1 uppsetninguna.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Velkomin til Calamares uppsetningar fyrir %1</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Velkomin í %1 uppsetningarforritið.</h1> + + ContextualProcessJob - + Contextual Processes Job @@ -744,27 +767,27 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. St&ærð: - + En&crypt &Dulrita - + Logical Rökleg - + Primary Aðal - + GPT GPT - + Mountpoint already in use. Please select another one. Tengipunktur er þegar í notkun. Veldu einhvern annan. @@ -772,22 +795,22 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <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'. @@ -823,22 +846,22 @@ 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'. @@ -990,13 +1013,13 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1109,7 +1132,7 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. Staðfesta lykilorð - + Please enter the same passphrase in both boxes. Vinsamlegast sláðu inn sama lykilorðið í báða kassana. @@ -1117,37 +1140,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. @@ -1231,22 +1254,22 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. Forsníða disksneið %1 með %2 skráakerfinu. - + The installer failed to format partition %1 on disk '%2'. Uppsetningarforritinu mistókst að forsníða disksneið %1 á diski '%2'. @@ -1653,16 +1676,6 @@ 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) @@ -1674,7 +1687,7 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. - + Network Installation. (Disabled: Incorrect configuration) @@ -2020,7 +2033,7 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. Óþekkt villa - + Password is empty @@ -2066,6 +2079,19 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. Pakkar + + PackageModel + + + Name + Heiti + + + + Description + Lýsing + + Page_Keyboard @@ -2228,34 +2254,34 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. PartitionModel - - + + Free Space Laust pláss - - + + New partition Ný disksneið - + Name Heiti - + File System Skráakerfi - + Mount Point Tengipunktur - + Size Stærð @@ -2323,17 +2349,17 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. - + Are you sure you want to create a new partition table on %1? Ertu viss um að þú viljir búa til nýja disksneið á %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2507,65 +2533,65 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2584,22 +2610,22 @@ Output: Sjálfgefið - + unknown óþekkt - + extended útvíkkuð - + unformatted ekki forsniðin - + swap swap diskminni @@ -2653,6 +2679,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2680,140 +2714,152 @@ Output: Eyðublað - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Veldu hvar á að setja upp %1.<br/><font color="red">Aðvörun: </font>þetta mun eyða öllum skrám á valinni disksneið. - + The selected item does not appear to be a valid partition. Valið atriði virðist ekki vera gild disksneið. - + %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. %1 er hægt að setja upp á þessari disksneið. - + Data partition (%1) Gagnadisksneið (%1) - + Unknown system partition (%1) Óþekkt kerfisdisksneið (%1) - + %1 system partition (%2) %1 kerfisdisksneið (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>Disksneið %1 er of lítil fyrir %2. Vinsamlegast veldu disksneið með að lámark %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/>EFI kerfisdisksneið er hvergi að finna á þessu kerfi. Vinsamlegast farðu til baka og notaðu handvirka skiptingu til að setja upp %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 mun vera sett upp á %2.<br/><font color="red">Aðvörun: </font>öll gögn á disksneið %2 mun verða eytt. - + The EFI system partition at %1 will be used for starting %2. EFI kerfis stýring á %1 mun vera notuð til að byrja %2. - + EFI system partition: EFI kerfisdisksneið: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2871,12 +2917,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: Fyrir bestu niðurstöður, skaltu tryggja að þessi tölva: - + System requirements Kerfiskröfur @@ -2884,27 +2930,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Þessi tölva uppfyllir ekki lágmarkskröfur um uppsetningu %1.<br/>Uppsetningin getur ekki haldið áfram. <a href="#details">Upplýsingar...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Þessi tölva uppfyllir ekki lágmarkskröfur um uppsetningu %1.<br/>Uppsetningin getur haldið áfram, en sumir eiginleikar gætu verið óvirk. - + This program will ask you some questions and set up %2 on your computer. Þetta forrit mun spyrja þig nokkurra spurninga og setja upp %2 á tölvunni þinni. @@ -2925,17 +2971,17 @@ Output: SetHostNameJob - + Set hostname %1 Setja vélarheiti %1 - + Set hostname <strong>%1</strong>. Setja vélarheiti <strong>%1</strong>. - + Setting hostname %1. Stilla vélarheiti %1. @@ -2985,82 +3031,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. Uppsetningarforritinu mistókst að setja flögg á disksneið %1. @@ -3290,47 +3336,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. Notandanafnið þitt er of langt. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. Notandanafnið þitt er of stutt. - + Your hostname is too long. Notandanafnið þitt er of langt. - + Your passwords do not match! Lykilorð passa ekki! @@ -3468,42 +3514,42 @@ Output: &Um - + <h1>Welcome to the %1 installer.</h1> <h1>Velkomin í %1 uppsetningarforritið.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Velkomin til Calamares uppsetningar fyrir %1</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>Velkomin til Calamares uppsetningarforritið fyrir %1</h1> - + <h1>Welcome to %1 setup.</h1> <h1>Velkomin í %1 uppsetninguna.</h1> - + About %1 setup Um %1 uppsetninguna - + About %1 installer Um %1 uppsetningarforrrit - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <h1>%1</h1><br/><strong>%2<br/>fyrir %3</strong><br/><br/>Höfundarréttur 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Höfundarréttur 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Þakkir til <a href="https://calamares.io/team/">Calamares teymisinsm</a> og <a href="https://www.transifex.com/calamares/calamares/">allra þýðenda Calamares</a>.<br/><br/>Þróun <a href="https://calamares.io/">Calamares</a> er studd af <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 stuðningur @@ -3511,7 +3557,7 @@ Output: WelcomeQmlViewStep - + Welcome Velkomin(n) @@ -3519,7 +3565,7 @@ Output: WelcomeViewStep - + Welcome Velkomin(n) @@ -3527,7 +3573,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_it_IT.ts b/lang/calamares_it_IT.ts index 41936fe1b..14fdc4278 100644 --- a/lang/calamares_it_IT.ts +++ b/lang/calamares_it_IT.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Master Boot Record di %1 - + Boot Partition Partizione di avvio @@ -42,7 +42,7 @@ Non installare un boot loader - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Fatto @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Operazione %1 in esecuzione. - + Bad working directory path Il percorso della cartella corrente non è corretto - + Working directory %1 for python job %2 is not readable. La cartella corrente %1 per l'attività di Python %2 non è accessibile. - + Bad main script file File dello script principale non valido - + Main script file %1 for python job %2 is not readable. Il file principale dello script %1 per l'attività di python %2 non è accessibile. - + Boost.Python error in job "%1". Errore da Boost.Python nell'operazione "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... Caricamento ... - + QML Step <i>%1</i>. QML Progresso <i>%1</i>. - + Loading failed. Caricamento fallito. @@ -253,174 +253,174 @@ Calamares::ViewManager - + &Back &Indietro - + &Next &Avanti - + &Cancel &Annulla - + Cancel setup without changing the system. Annulla l'installazione senza modificare il computer - + Cancel installation without changing the system. Annullare l'installazione senza modificare il sistema. - + Setup Failed Installazione fallita - + Would you like to paste the install log to the web? Vuoi incollare il log di installazione nel web? - + Install Log Paste URL Incolla URL Log di Installazione - + The upload was unsuccessful. No web-paste was done. Il caricamento è fallito. Non è stato eseguito web-paste. - + Calamares Initialization Failed Inizializzazione di Calamares Fallita - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 non può essere installato. Calamares non è stato in grado di caricare tutti i moduli configurati. Questo è un problema del modo in cui Calamares viene utilizzato dalla distribuzione. - + <br/>The following modules could not be loaded: <br/>Non è stato possibile caricare il seguente modulo: - + Continue with installation? Continuare l'installazione? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> Il %1 programma di installazione sta per fare dei cambiamenti sul tuo disco per installare %2. Non sarà possibile annullare questi cambiamenti. - + &Set up now &Installa adesso - + &Set up &Installazione - + &Install &Installa - + Setup is complete. Close the setup program. Installazione completata. Chiudere il programma di installazione. - + Cancel setup? Annullare l'installazione? - + Cancel installation? Annullare l'installazione? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. Vuoi davvero annullare il processo di installazione? Il programma di installazione verrrà terminato e tutti i cambiamenti verranno persi. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Si vuole davvero annullare l'installazione in corso? Il programma d'installazione sarà terminato e tutte le modifiche andranno perse. - - + + &Yes &Si - - + + &No &No - + &Close &Chiudi - + 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'installazione %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 &Fatto - + The installation is complete. Close the installer. L'installazione è terminata. Chiudere il programma d'installazione. - + Error Errore - + Installation Failed Installazione non riuscita @@ -428,22 +428,22 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse CalamaresPython::Helper - + Unknown exception type Tipo di eccezione sconosciuto - + unparseable Python error Errore Python non definibile - + unparseable Python traceback Traceback Python non definibile - + Unfetchable Python error. Errore di Python non definibile. @@ -461,17 +461,17 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse CalamaresWindow - + %1 Setup Program %1 Programma di installazione - + %1 Installer %1 Programma di installazione - + Show debug information Mostra le informazioni di debug @@ -479,7 +479,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse CheckerContainer - + Gathering system information... Raccolta delle informazioni di sistema... @@ -492,134 +492,134 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse Modulo - + After: Dopo: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Partizionamento manuale</strong><br/>Si possono creare o ridimensionare le partizioni manualmente. - + Boot loader location: Posizionamento del boot loader: - + Select storage de&vice: Selezionare un dispositivo di me&moria: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 sarà ridotta a %2MiB ed una nuova partizione di %3MiB sarà creata per %4 - + <strong>Select a partition to install on</strong> <strong>Selezionare la partizione sulla quale si vuole installare</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Impossibile trovare una partizione EFI di sistema. Si prega di tornare indietro ed effettuare un partizionamento manuale per configurare %1. - + The EFI system partition at %1 will be used for starting %2. La partizione EFI di sistema su %1 sarà usata per avviare %2. - + EFI system partition: Partizione EFI di sistema: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Questo dispositivo di memoria non sembra contenere alcun sistema operativo. Come si vuole procedere?<br/>Si potranno comunque rivedere e confermare le scelte prima di apportare i cambiamenti al dispositivo. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Cancellare disco</strong><br/>Questo <font color="red">cancellerà</font> tutti i dati attualmente presenti sul dispositivo di memoria. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Questo dispositivo di memoria ha %1. Come si vuole procedere?<br/>Si potranno comunque rivedere e confermare le scelte prima di apportare i cambiamenti al dispositivo. - + No Swap No Swap - + Reuse Swap Riutilizza Swap - + Swap (no Hibernate) Swap (senza ibernazione) - + Swap (with Hibernate) Swap (con ibernazione) - + Swap to file Swap su file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Installare a fianco</strong><br/>Il programma di installazione ridurrà una partizione per dare spazio a %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Sostituire una partizione</strong><br/>Sostituisce una partizione con %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Questo dispositivo di memoria contenere già un sistema operativo. Come si vuole procedere?<br/>Si potranno comunque rivedere e confermare le scelte prima di apportare i cambiamenti al dispositivo. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Questo dispositivo di memoria contenere diversi sistemi operativi. Come si vuole procedere?<br/>Comunque si potranno rivedere e confermare le scelte prima di apportare i cambiamenti al dispositivo. @@ -627,17 +627,17 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse ClearMountsJob - + Clear mounts for partitioning operations on %1 Rimuovere i punti di mount per operazioni di partizionamento su %1 - + Clearing mounts for partitioning operations on %1. Rimozione dei punti di mount per le operazioni di partizionamento su %1. - + Cleared all mounts for %1 Rimossi tutti i punti di mount per %1 @@ -684,10 +684,33 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse Il comando richiede il nome utente, nessun nome utente definito. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>Benvenuto nel programma di installazione Calamares di %1.</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>Benvenuto nell'installazione di %1.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Benvenuti nel programma di installazione Calamares per %1.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Benvenuto nel programma d'installazione di %1.</h1> + + ContextualProcessJob - + Contextual Processes Job Job dei processi contestuali @@ -745,27 +768,27 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse Dimen&sione: - + En&crypt Cr&iptare - + Logical Logica - + Primary Primaria - + GPT GPT - + Mountpoint already in use. Please select another one. Il punto di mount è già in uso. Sceglierne un altro. @@ -773,22 +796,22 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. Crea una nuova partizione da %2MiB su %4 (%3) con file system %1 - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Creare nuova partizione di <strong>%2MiB</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'. @@ -824,22 +847,22 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse 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. @@ -991,13 +1014,13 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1110,7 +1133,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse Confermare frase di accesso - + Please enter the same passphrase in both boxes. Si prega di immettere la stessa frase di accesso in entrambi i riquadri. @@ -1118,37 +1141,37 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse 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. @@ -1232,22 +1255,22 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. Formatta la partitione %1 (file system: %2, dimensione: %3 MiB) su %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. Formatta la partizione <strong>%1</strong> di dimensione <strong>%3MiB </strong> con il file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. Formattazione della partizione %1 con file system %2. - + The installer failed to format partition %1 on disk '%2'. Il programma di installazione non è riuscito a formattare la partizione %1 sul disco '%2'. @@ -1654,16 +1677,6 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse NetInstallPage - - - Name - Nome - - - - Description - Descrizione - Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1675,7 +1688,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse Installazione di rete. (Disabilitata: Ricevuti dati non validi dei gruppi) - + Network Installation. (Disabled: Incorrect configuration) Installazione di rete. (Disabilitato: Configurazione scorretta) @@ -2021,7 +2034,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse Errore sconosciuto - + Password is empty Password vuota @@ -2067,6 +2080,19 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse Pacchetti + + PackageModel + + + Name + Nome + + + + Description + Descrizione + + Page_Keyboard @@ -2229,34 +2255,34 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse PartitionModel - - + + Free Space Spazio disponibile - - + + New partition Nuova partizione - + Name Nome - + File System File System - + Mount Point Punto di mount - + Size Dimensione @@ -2324,17 +2350,17 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse I&nstalla boot loader su: - + Are you sure you want to create a new partition table on %1? Si è sicuri di voler creare una nuova tabella delle partizioni su %1? - + Can not create new partition Impossibile creare nuova partizione - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. La tabella delle partizioni su %1 contiene già %2 partizioni primarie, non se ne possono aggiungere altre. Rimuovere una partizione primaria e aggiungere una partizione estesa invece. @@ -2508,13 +2534,13 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse ProcessResult - + There was no output from the command. Non c'era output dal comando. - + Output: @@ -2523,53 +2549,53 @@ Output: - + External command crashed. Il comando esterno si è arrestato. - + Command <i>%1</i> crashed. Il comando <i>%1</i> si è arrestato. - + External command failed to start. Il comando esterno non si è avviato. - + Command <i>%1</i> failed to start. Il comando %1 non si è avviato. - + Internal error when starting command. Errore interno all'avvio del comando. - + Bad parameters for process job call. Parametri errati per elaborare la chiamata al job. - + External command failed to finish. Il comando esterno non è stato portato a termine. - + Command <i>%1</i> failed to finish in %2 seconds. Il comando <i>%1</i> non è stato portato a termine in %2 secondi. - + External command finished with errors. Il comando esterno è terminato con errori. - + Command <i>%1</i> finished with exit code %2. Il comando <i>%1</i> è terminato con codice di uscita %2. @@ -2588,22 +2614,22 @@ Output: Default - + unknown sconosciuto - + extended estesa - + unformatted non formattata - + swap swap @@ -2657,6 +2683,14 @@ Output: Impossibile creare un nuovo file random <pre>%1</pre>. + + RemoveUserJob + + + Remove live user from target system + Rimuovi l'utente live dal sistema di destinazione + + RemoveVolumeGroupJob @@ -2684,140 +2718,152 @@ Output: Modulo - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Selezionare dove installare %1.<br/><font color="red">Attenzione: </font>questo eliminerà tutti i file dalla partizione selezionata. - + The selected item does not appear to be a valid partition. L'elemento selezionato non sembra essere una partizione valida. - + %1 cannot be installed on empty space. Please select an existing partition. %1 non può essere installato su spazio non partizionato. Si prega di selezionare una partizione esistente. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 non può essere installato su una partizione estesa. Si prega di selezionare una partizione primaria o logica esistente. - + %1 cannot be installed on this partition. %1 non può essere installato su questa partizione. - + Data partition (%1) Partizione dati (%1) - + Unknown system partition (%1) Partizione di sistema sconosciuta (%1) - + %1 system partition (%2) %1 partizione di sistema (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>La partizione %1 è troppo piccola per %2. Si prega di selezionare una partizione con capacità di almeno %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/>Nessuna partizione EFI di sistema rilevata. Si prega di tornare indietro e usare il partizionamento manuale per configurare %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 sarà installato su %2.<br/><font color="red">Attenzione: </font>tutti i dati sulla partizione %2 saranno persi. - + The EFI system partition at %1 will be used for starting %2. La partizione EFI di sistema a %1 sarà usata per avviare %2. - + EFI system partition: Partizione EFI di sistema: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job Operazione di ridimensionamento del Filesystem - + Invalid configuration Configurazione non valida - + The file-system resize job has an invalid configuration and will not run. L'operazione di ridimensionamento del file-system ha una configurazione non valida e non verrà effettuata. - - + KPMCore not Available KPMCore non Disponibile - - + Calamares cannot start KPMCore for the file-system resize job. Calamares non riesce ad avviare KPMCore per ridimensionare il file-system. - - - - - + + + + + Resize Failed Ridimensionamento fallito. - + The filesystem %1 could not be found in this system, and cannot be resized. Il filesystem %1 non è stato trovato su questo sistema, e non può essere ridimensionato. - + The device %1 could not be found in this system, and cannot be resized. Il dispositivo %1 non è stato trovato su questo sistema, e non può essere ridimensionato. - - + + The filesystem %1 cannot be resized. Il filesystem %1 non può essere ridimensionato. - - + + The device %1 cannot be resized. Il dispositivo %1 non può essere ridimensionato. - + The filesystem %1 must be resized, but cannot. Il filesystem %1 deve essere ridimensionato, ma non è possibile farlo. - + The device %1 must be resized, but cannot Il dispositivo %1 deve essere ridimensionato, non è possibile farlo @@ -2875,12 +2921,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: Per ottenere prestazioni ottimali, assicurarsi che questo computer: - + System requirements Requisiti di sistema @@ -2888,27 +2934,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> Questo computer non soddisfa i requisiti minimi per l'installazione di %1.<br/>L'installazione non può continuare. <a href="#details">Dettagli...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Questo computer non soddisfa i requisiti minimi per installare %1. <br/>L'installazione non può proseguire. <a href="#details">Dettagli...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. Questo computer non soddisfa alcuni requisiti raccomandati per l'installazione di %1.<br/>L'installazione può continuare, ma alcune funzionalità potrebbero essere disabilitate. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Questo computer non soddisfa alcuni requisiti consigliati per l'installazione di %1. <br/>L'installazione può proseguire ma alcune funzionalità potrebbero non essere disponibili. - + This program will ask you some questions and set up %2 on your computer. Questo programma chiederà alcune informazioni e configurerà %2 sul computer. @@ -2929,17 +2975,17 @@ Output: SetHostNameJob - + Set hostname %1 Impostare hostname %1 - + Set hostname <strong>%1</strong>. Impostare hostname <strong>%1</strong>. - + Setting hostname %1. Impostare hostname %1. @@ -2989,82 +3035,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. Impostare i flag sulla partizione: %1. - + Set flags on %1MiB %2 partition. Impostare le flag sulla partizione %2 da %1MiB. - + Set flags on new partition. Impostare i flag sulla nuova partizione. - + Clear flags on partition <strong>%1</strong>. Rimuovere i flag sulla partizione <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. Rimuovere le flag dalla partizione <strong>%2</strong> da %1MiB. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. Flag della partizione <strong>%2</strong> da %1MiB impostate come <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. Rimozione delle flag sulla partizione <strong>%2</strong> da %1MiB in corso. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. Impostazione delle flag <strong>%3</strong> sulla partizione <strong>%2</strong> da %1MiB in corso. - + Clear flags on new partition. Rimuovere i flag dalla nuova partizione. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Flag di partizione <strong>%1</strong> come <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Flag della nuova partizione come <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Rimozione dei flag sulla partizione <strong>%1</strong>. - + Clearing flags on new partition. Rimozione dei flag dalla nuova partizione. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Impostazione dei flag <strong>%2</strong> sulla partizione <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Impostazione dei flag <strong>%1</strong> sulla nuova partizione. - + The installer failed to set flags on partition %1. Impossibile impostare i flag sulla partizione %1. @@ -3294,47 +3340,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>Se più di una persona utilizzerà questo computer, puoi creare ulteriori account dopo la configurazione.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>Se più di una persona utilizzerà questo computer, puoi creare ulteriori account dopo l'installazione.</small> - + Your username is too long. Il nome utente è troppo lungo. - + Your username must start with a lowercase letter or underscore. Il tuo username deve iniziare con una lettera minuscola o un trattino basso. - + Only lowercase letters, numbers, underscore and hyphen are allowed. Solo lettere minuscole, numeri, trattini e trattini bassi sono permessi. - + Only letters, numbers, underscore and hyphen are allowed. Solo lettere, numeri, trattini e trattini bassi sono permessi. - + Your hostname is too short. Hostname è troppo corto. - + Your hostname is too long. Hostname è troppo lungo. - + Your passwords do not match! Le password non corrispondono! @@ -3472,42 +3518,42 @@ Output: &Informazioni su - + <h1>Welcome to the %1 installer.</h1> <h1>Benvenuto nel programma d'installazione di %1.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Benvenuti nel programma di installazione Calamares per %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>Benvenuto nel programma di installazione Calamares di %1.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>Benvenuto nell'installazione di %1.</h1> - + About %1 setup Informazioni sul sistema di configurazione %1 - + About %1 installer Informazioni sul programma di installazione %1 - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Grazie al <a href="https://calamares.io/team/">team di Calamares</a> ed al <a href="https://www.transifex.com/calamares/calamares/">team dei traduttori di Calamares</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support supporto %1 @@ -3515,7 +3561,7 @@ Output: WelcomeQmlViewStep - + Welcome Benvenuti @@ -3523,7 +3569,7 @@ Output: WelcomeViewStep - + Welcome Benvenuti @@ -3531,7 +3577,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> <h3>%1</h3> diff --git a/lang/calamares_ja.ts b/lang/calamares_ja.ts index 97d33a7d9..fbb0febfa 100644 --- a/lang/calamares_ja.ts +++ b/lang/calamares_ja.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 %1 のマスターブートレコード - + Boot Partition ブートパーティション @@ -42,7 +42,7 @@ ブートローダーをインストールしません - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done 完了 @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. %1 操作を実行しています。 - + Bad working directory path 不正なワーキングディレクトリパス - + Working directory %1 for python job %2 is not readable. python ジョブ %2 において作業ディレクトリ %1 が読み込めません。 - + Bad main script file 不正なメインスクリプトファイル - + Main script file %1 for python job %2 is not readable. python ジョブ %2 におけるメインスクリプトファイル %1 が読み込めません。 - + Boost.Python error in job "%1". ジョブ "%1" での Boost.Python エラー。 @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... ロードしています... - + QML Step <i>%1</i>. QML ステップ <i>%1</i>。 - + Loading failed. ロードが失敗しました。 @@ -251,175 +251,175 @@ Calamares::ViewManager - + &Back 戻る (&B) - + &Next 次へ (&N) - + &Cancel 中止 (&C) - + Cancel setup without changing the system. システムを変更することなくセットアップを中断します。 - + Cancel installation without changing the system. システムを変更しないでインストールを中止します。 - + Setup Failed セットアップに失敗しました。 - + Would you like to paste the install log to the web? インストールログをWebに貼り付けますか? - + Install Log Paste URL インストールログを貼り付けるURL - + The upload was unsuccessful. No web-paste was done. アップロードは失敗しました。 ウェブへの貼り付けは行われませんでした。 - + Calamares Initialization Failed Calamares によるインストールに失敗しました。 - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 をインストールできません。Calamares はすべてのモジュールをロードすることをできませんでした。これは、Calamares のこのディストリビューションでの使用法による問題です。 - + <br/>The following modules could not be loaded: <br/>以下のモジュールがロードできませんでした。: - + Continue with installation? インストールを続行しますか? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> %1 のセットアッププログラムは %2 のセットアップのためディスクの内容を変更します。<br/><strong>これらの変更は取り消しできません。</strong> - + &Set up now セットアップしています (&S) - + &Set up セットアップ (&S) - + &Install インストール (&I) - + Setup is complete. Close the setup program. セットアップが完了しました。プログラムを閉じます。 - + Cancel setup? セットアップを中止しますか? - + Cancel installation? インストールを中止しますか? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. 本当に現在のセットアップのプロセスを中止しますか? すべての変更が取り消されます。 - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. 本当に現在の作業を中止しますか? すべての変更が取り消されます。 - - + + &Yes はい (&Y) - - + + &No いいえ (&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 インストールに失敗 @@ -427,22 +427,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type 不明な例外型 - + unparseable Python error 解析不能なPythonエラー - + unparseable Python traceback 解析不能な Python トレースバック - + Unfetchable Python error. 取得不能なPythonエラー。 @@ -460,17 +460,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program %1 セットアッププログラム - + %1 Installer %1 インストーラー - + Show debug information デバッグ情報を表示 @@ -478,7 +478,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... システム情報を取得しています... @@ -491,134 +491,134 @@ The installer will quit and all changes will be lost. フォーム - + After: 後: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>手動パーティション</strong><br/>パーティションの作成、あるいはサイズ変更を行うことができます。 - + Boot loader location: ブートローダーの場所: - + Select storage de&vice: ストレージデバイスを選択 (&V): - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 は %2MiB に縮小され新たに %4 に %3MiB のパーティションが作成されます。 - + <strong>Select a partition to install on</strong> <strong>インストールするパーティションの選択</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. システムにEFIシステムパーティションが存在しません。%1 のセットアップのため、元に戻り、手動パーティショニングを使用してください。 - + The EFI system partition at %1 will be used for starting %2. %1 上のEFIシステムパーテイションは %2 のスタートに使用されます。 - + EFI system partition: EFI システムパーティション: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. このストレージデバイスにはオペレーティングシステムが存在しないようです。何を行いますか?<br/>ストレージデバイスに対する変更を行う前に、変更点をレビューし、確認することができます。 - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>ディスクの消去</strong><br/>選択したストレージデバイス上のデータがすべて <font color="red">削除</font>されます。 - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. このストレージデバイスには %1 が存在します。何を行いますか?<br/>ストレージデバイスに対する変更を行う前に、変更点をレビューし、確認することができます。 - + No Swap スワップを使用しない - + Reuse Swap スワップを再利用 - + Swap (no Hibernate) スワップ(ハイバーネートなし) - + Swap (with Hibernate) スワップ(ハイバーネート) - + Swap to file ファイルにスワップ - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>共存してインストール</strong><br/>インストーラは %1 用の空きスペースを確保するため、パーティションを縮小します。 - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>パーティションの置換</strong><br/>パーティションを %1 に置き換えます。 - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. このストレージデバイスにはすでにオペレーティングシステムが存在します。何を行いますか?<br/>ストレージデバイスに対する変更を行う前に、変更点をレビューし、確認することができます。 - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. このストレージデバイスには複数のオペレーティングシステムが存在します。何を行いますか?<br />ストレージデバイスに対する変更を行う前に、変更点をレビューし、確認することができます。 @@ -626,17 +626,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 %1 のパーティション操作のため、マウントを解除 - + Clearing mounts for partitioning operations on %1. %1 のパーティション操作のため、マウントを解除しています。 - + Cleared all mounts for %1 %1 のすべてのマウントを解除 @@ -683,10 +683,33 @@ The installer will quit and all changes will be lost. ユーザー名が必要ですが、定義されていません。 + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>%1 Calamares セットアッププログラムにようこそ</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>%1 セットアップへようこそ</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>%1 Calamares インストーラーにようこそ</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>%1 インストーラーへようこそ。</h1> + + ContextualProcessJob - + Contextual Processes Job コンテキストプロセスジョブ @@ -744,27 +767,27 @@ The installer will quit and all changes will be lost. サイズ (&Z) - + En&crypt 暗号化 (&C) - + Logical 論理 - + Primary プライマリ - + GPT GPT - + Mountpoint already in use. Please select another one. マウントポイントは既に使用されています。他を選択してください。 @@ -772,22 +795,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. %4 (%3) に新たにファイルシステム %1 の %2MiB のパーティションが作成されます。 - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Create new <strong>%4</strong> (%3) に新たにファイルシステム<strong>%1</strong>の <strong>%2MiB</strong> のパーティションが作成されます。 - + Creating new %1 partition on %2. %2 に新しく %1 パーティションを作成しています。 - + The installer failed to create partition on disk '%1'. インストーラーはディスク '%1' にパーティションを作成することに失敗しました。 @@ -823,22 +846,22 @@ 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 へのパーティションテーブルの作成に失敗しました。 @@ -990,13 +1013,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1109,7 +1132,7 @@ The installer will quit and all changes will be lost. パスフレーズの確認 - + Please enter the same passphrase in both boxes. 両方のボックスに同じパスフレーズを入力してください。 @@ -1117,37 +1140,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. マウントポイントを設定する。 @@ -1232,22 +1255,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. %4 のパーティション %1 (ファイルシステム: %2、サイズ: %3 MiB) をフォーマットする。 - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. <strong>%3MiB</strong> のパーティション <strong>%1</strong> をファイルシステム <strong>%2</strong> でフォーマットする。 - + Formatting partition %1 with file system %2. ファイルシステム %2 でパーティション %1 をフォーマットしています。 - + The installer failed to format partition %1 on disk '%2'. インストーラーはディスク '%2' 上のパーティション %1 のフォーマットに失敗しました。 @@ -1654,16 +1677,6 @@ 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) @@ -1675,7 +1688,7 @@ The installer will quit and all changes will be lost. ネットワークインストール (不可: 無効なグループデータを受け取りました) - + Network Installation. (Disabled: Incorrect configuration) ネットワークインストール。(無効: 不正な設定) @@ -2021,7 +2034,7 @@ The installer will quit and all changes will be lost. 未知のエラー - + Password is empty パスワードが空です @@ -2067,6 +2080,19 @@ The installer will quit and all changes will be lost. パッケージ + + PackageModel + + + Name + 名前 + + + + Description + 説明 + + Page_Keyboard @@ -2229,34 +2255,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space 空き領域 - - + + New partition 新しいパーティション - + Name 名前 - + File System ファイルシステム - + Mount Point マウントポイント - + Size サイズ @@ -2324,17 +2350,17 @@ The installer will quit and all changes will be lost. ブートローダーインストール先: - + Are you sure you want to create a new partition table on %1? %1 に新しいパーティションテーブルを作成します。よろしいですか? - + Can not create new partition 新しいパーティションを作成できません - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. %1 上のパーティションテーブルには既にプライマリパーティション %2 が配置されており、追加することができません。プライマリパーティションを消去して代わりに拡張パーティションを追加してください。 @@ -2508,14 +2534,14 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. コマンドから出力するものがありませんでした。 - + Output: @@ -2524,52 +2550,52 @@ Output: - + External command crashed. 外部コマンドがクラッシュしました。 - + Command <i>%1</i> crashed. コマンド <i>%1</i> がクラッシュしました。 - + External command failed to start. 外部コマンドの起動に失敗しました。 - + Command <i>%1</i> failed to start. コマンド <i>%1</i> の起動に失敗しました。 - + Internal error when starting command. コマンドが起動する際に内部エラーが発生しました。 - + Bad parameters for process job call. ジョブ呼び出しにおける不正なパラメータ - + External command failed to finish. 外部コマンドの終了に失敗しました。 - + Command <i>%1</i> failed to finish in %2 seconds. コマンド<i>%1</i> %2 秒以内に終了することに失敗しました。 - + External command finished with errors. 外部のコマンドがエラーで停止しました。 - + Command <i>%1</i> finished with exit code %2. コマンド <i>%1</i> が終了コード %2 で終了しました。. @@ -2588,22 +2614,22 @@ Output: デフォルト - + unknown 不明 - + extended 拡張 - + unformatted 未フォーマット - + swap スワップ @@ -2657,6 +2683,14 @@ Output: 新しいランダムファイル <pre>%1</pre> を作成できませんでした。 + + RemoveUserJob + + + Remove live user from target system + ターゲットシステムからliveユーザーを消去 + + RemoveVolumeGroupJob @@ -2684,140 +2718,153 @@ Output: フォーム - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. %1 をインストールする場所を選択します。<br/><font color="red">警告: </font>選択したパーティション内のすべてのファイルが削除されます。 - + The selected item does not appear to be a valid partition. 選択した項目は有効なパーティションではないようです。 - + %1 cannot be installed on empty space. Please select an existing partition. %1 は空き領域にインストールすることはできません。既存のパーティションを選択してください。 - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 は拡張パーティションにインストールできません。既存のプライマリまたは論理パーティションを選択してください。 - + %1 cannot be installed on this partition. %1 はこのパーティションにインストールできません。 - + Data partition (%1) データパーティション (%1) - + Unknown system partition (%1) 不明なシステムパーティション (%1) - + %1 system partition (%2) %1 システムパーティション (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>パーティション %1 は、%2 には小さすぎます。少なくとも %3 GB 以上のパーティションを選択してください。 - + <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/>EFI システムパーティションがシステムに見つかりません。%1 を設定するために一旦戻って手動パーティショニングを使用してください。 - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 は %2 にインストールされます。<br/><font color="red">警告: </font>パーティション %2 のすべてのデータは失われます。 - + The EFI system partition at %1 will be used for starting %2. %1 上の EFI システムパーティションは %2 開始時に使用されます。 - + EFI system partition: EFI システムパーティション: + + RequirementsModel + + + This program will ask you some questions and set up your installation + このプログラムはいくつかの質問をして、インストールをセットアップします + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + このプログラムはインストールの最小要件を満たしていません。 +インストールを続行できません + + ResizeFSJob - + Resize Filesystem Job ファイルシステム ジョブのサイズ変更 - + Invalid configuration 不当な設定 - + The file-system resize job has an invalid configuration and will not run. ファイルシステムのサイズ変更ジョブが不当な設定であるため、作動しません。 - - + KPMCore not Available KPMCore は利用できません - - + Calamares cannot start KPMCore for the file-system resize job. Calamares はファイエウシステムのサイズ変更ジョブのため KPMCore を開始することができません。 - - - - - + + + + + Resize Failed サイズ変更に失敗しました - + The filesystem %1 could not be found in this system, and cannot be resized. ファイルシステム %1 がシステム内に見つけられなかったため、サイズ変更ができません。 - + The device %1 could not be found in this system, and cannot be resized. デバイス %1 がシステム内に見つけられなかったため、サイズ変更ができません。 - - + + The filesystem %1 cannot be resized. ファイルシステム %1 のサイズ変更ができません。 - - + + The device %1 cannot be resized. デバイス %1 のサイズ変更ができません。 - + The filesystem %1 must be resized, but cannot. ファイルシステム %1 はサイズ変更が必要ですが、できません。 - + The device %1 must be resized, but cannot デバイス %1 はサイズ変更が必要ですが、できません。 @@ -2875,12 +2922,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: 良好な結果を得るために、このコンピュータについて以下の項目を確認してください: - + System requirements システム要件 @@ -2888,27 +2935,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> このコンピュータは %1 をセットアップするための最低要件を満たしていません。<br/>セットアップは続行できません。 <a href="#details">詳細...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> このコンピュータは %1 をインストールするための最低要件を満たしていません。<br/>インストールは続行できません。<a href="#details">詳細...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. このコンピュータは、 %1 をセットアップするための推奨条件をいくつか満たしていません。<br/>インストールは続行しますが、一部の機能が無効になる場合があります。 - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. このコンピュータは、 %1 をインストールするための推奨条件をいくつか満たしていません。<br/>インストールは続行しますが、一部の機能が無効になる場合があります。 - + This program will ask you some questions and set up %2 on your computer. このプログラムはあなたにいくつか質問をして、コンピュータに %2 を設定します。 @@ -2929,17 +2976,17 @@ Output: SetHostNameJob - + Set hostname %1 ホスト名 %1 の設定 - + Set hostname <strong>%1</strong>. ホスト名 <strong>%1</strong> を設定する。 - + Setting hostname %1. ホスト名 %1 を設定しています。 @@ -2989,82 +3036,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. パーティション %1 にフラグを設定する。 - + Set flags on %1MiB %2 partition. %1MiB %2 パーティションにフラグを設定する。 - + Set flags on new partition. 新しいパーティションにフラグを設定する。 - + Clear flags on partition <strong>%1</strong>. パーティション <strong>%1</strong> 上のフラグを消去。 - + Clear flags on %1MiB <strong>%2</strong> partition. %1MiB <strong>%2</strong> パーティション上のフラグを消去。 - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. %1MiB <strong>%2</strong> パーティションに <strong>%3</strong> フラグを設定する。 - + Clearing flags on %1MiB <strong>%2</strong> partition. %1MiB <strong>%2</strong> パーティション上のフラグを消去しています。 - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. %1MiB <strong>%2</strong> パーティションに <strong>%3</strong> フラグを設定しています。 - + Clear flags on new partition. 新しいパーティション上のフラグを消去。 - + Flag partition <strong>%1</strong> as <strong>%2</strong>. パーティション <strong>%1</strong> に <strong>%2</strong>フラグを設定する。 - + Flag new partition as <strong>%1</strong>. 新しいパーティションに <strong>%1</strong> フラグを設定する。 - + Clearing flags on partition <strong>%1</strong>. パーティション <strong>%1</strong> のフラグを消去しています。 - + Clearing flags on new partition. 新しいパーティション上のフラグを消去しています。 - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. パーティション <strong>%1</strong> に <strong>%2</strong> フラグを設定する。 - + Setting flags <strong>%1</strong> on new partition. 新しいパーティションに <strong>%1</strong> フラグを設定しています。 - + The installer failed to set flags on partition %1. インストーラーはパーティション %1 上のフラグの設定に失敗しました。 @@ -3294,47 +3341,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>もし複数の人間がこのコンピュータを使用する場合、セットアップの後で複数のアカウントを作成できます。</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>もし複数の人間がこのコンピュータを使用する場合、インストールの後で複数のアカウントを作成できます。</small> - + Your username is too long. ユーザー名が長すぎます。 - + Your username must start with a lowercase letter or underscore. ユーザー名はアルファベットの小文字または _ で始めてください。 - + Only lowercase letters, numbers, underscore and hyphen are allowed. 使用できるのはアルファベットの小文字と数字と _ と - だけです。 - + Only letters, numbers, underscore and hyphen are allowed. 使用できるのはアルファベットと数字と _ と - だけです。 - + Your hostname is too short. ホスト名が短すぎます。 - + Your hostname is too long. ホスト名が長過ぎます。 - + Your passwords do not match! パスワードが一致していません! @@ -3472,42 +3519,42 @@ Output: 説明 (&A) - + <h1>Welcome to the %1 installer.</h1> <h1>%1 インストーラーへようこそ。</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>%1 Calamares インストーラーにようこそ</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>%1 Calamares セットアッププログラムにようこそ</h1> - + <h1>Welcome to %1 setup.</h1> <h1>%1 セットアップへようこそ</h1> - + About %1 setup %1 セットアップについて - + About %1 installer %1 インストーラーについて - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 サポート @@ -3515,7 +3562,7 @@ Output: WelcomeQmlViewStep - + Welcome ようこそ @@ -3523,7 +3570,7 @@ Output: WelcomeViewStep - + Welcome ようこそ @@ -3531,7 +3578,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> <h3>%1</h3> diff --git a/lang/calamares_kk.ts b/lang/calamares_kk.ts index 72c51fdd9..7dac5f632 100644 --- a/lang/calamares_kk.ts +++ b/lang/calamares_kk.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 - + Boot Partition @@ -42,7 +42,7 @@ - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Дайын @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,173 +253,173 @@ Calamares::ViewManager - + &Back А&ртқа - + &Next &Алға - + &Cancel Ба&с тарту - + Cancel setup without changing the system. - + Cancel installation without changing the system. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? Орнатудан бас тарту керек пе? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. - - + + &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 @@ -427,22 +427,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type - + unparseable Python error - + unparseable Python traceback - + Unfetchable Python error. @@ -459,17 +459,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program - + %1 Installer - + Show debug information @@ -477,7 +477,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... @@ -490,134 +490,134 @@ The installer will quit and all changes will be lost. - + After: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + Select storage de&vice: - - - - + + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: EFI жүйелік бөлімі: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -625,17 +625,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 - + Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 @@ -682,10 +682,33 @@ The installer will quit and all changes will be lost. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + + + ContextualProcessJob - + Contextual Processes Job @@ -743,27 +766,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical - + Primary - + GPT - + Mountpoint already in use. Please select another one. @@ -771,22 +794,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. @@ -822,22 +845,22 @@ 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. @@ -989,13 +1012,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) - + %1 - (%2) device[name] - (device-node[name]) @@ -1108,7 +1131,7 @@ The installer will quit and all changes will be lost. - + Please enter the same passphrase in both boxes. @@ -1116,37 +1139,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. @@ -1230,22 +1253,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. - + The installer failed to format partition %1 on disk '%2'. @@ -1652,16 +1675,6 @@ 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) @@ -1673,7 +1686,7 @@ The installer will quit and all changes will be lost. - + Network Installation. (Disabled: Incorrect configuration) @@ -2019,7 +2032,7 @@ The installer will quit and all changes will be lost. - + Password is empty @@ -2065,6 +2078,19 @@ The installer will quit and all changes will be lost. + + PackageModel + + + Name + + + + + Description + + + Page_Keyboard @@ -2227,34 +2253,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space - - + + New partition - + Name - + File System - + Mount Point - + Size @@ -2322,17 +2348,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2506,65 +2532,65 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2583,22 +2609,22 @@ Output: - + unknown - + extended - + unformatted - + swap @@ -2652,6 +2678,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2679,140 +2713,152 @@ Output: - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. - + %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. - + Data partition (%1) - + Unknown system partition (%1) - + %1 system partition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: EFI жүйелік бөлімі: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2870,12 +2916,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: - + System requirements @@ -2883,27 +2929,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - + This program will ask you some questions and set up %2 on your computer. @@ -2924,17 +2970,17 @@ Output: SetHostNameJob - + Set hostname %1 - + Set hostname <strong>%1</strong>. - + Setting hostname %1. @@ -2984,82 +3030,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. @@ -3289,47 +3335,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your passwords do not match! @@ -3467,42 +3513,42 @@ Output: - + <h1>Welcome to the %1 installer.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer - + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 қолдауы @@ -3510,7 +3556,7 @@ Output: WelcomeQmlViewStep - + Welcome Қош келдіңіз @@ -3518,7 +3564,7 @@ Output: WelcomeViewStep - + Welcome Қош келдіңіз @@ -3526,7 +3572,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_kn.ts b/lang/calamares_kn.ts index 5ce724633..97f7e79ff 100644 --- a/lang/calamares_kn.ts +++ b/lang/calamares_kn.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 - + Boot Partition @@ -42,7 +42,7 @@ - + %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,173 +253,173 @@ Calamares::ViewManager - + &Back ಹಿಂದಿನ - + &Next ಮುಂದಿನ - + &Cancel ರದ್ದುಗೊಳಿಸು - + Cancel setup without changing the system. - + Cancel installation without changing the system. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? ಅನುಸ್ಥಾಪನೆಯನ್ನು ರದ್ದುಮಾಡುವುದೇ? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. - - + + &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 ಅನುಸ್ಥಾಪನೆ ವಿಫಲವಾಗಿದೆ @@ -427,22 +427,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type - + unparseable Python error - + unparseable Python traceback - + Unfetchable Python error. @@ -459,17 +459,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program - + %1 Installer - + Show debug information @@ -477,7 +477,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... @@ -490,134 +490,134 @@ The installer will quit and all changes will be lost. - + After: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + Select storage de&vice: - - - - + + + + Current: ಪ್ರಸಕ್ತ: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -625,17 +625,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 - + Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 @@ -682,10 +682,33 @@ The installer will quit and all changes will be lost. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + + + ContextualProcessJob - + Contextual Processes Job @@ -743,27 +766,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical - + Primary - + GPT - + Mountpoint already in use. Please select another one. @@ -771,22 +794,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. @@ -822,22 +845,22 @@ 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. @@ -989,13 +1012,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) - + %1 - (%2) device[name] - (device-node[name]) @@ -1108,7 +1131,7 @@ The installer will quit and all changes will be lost. - + Please enter the same passphrase in both boxes. @@ -1116,37 +1139,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. @@ -1230,22 +1253,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. - + The installer failed to format partition %1 on disk '%2'. @@ -1652,16 +1675,6 @@ 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) @@ -1673,7 +1686,7 @@ The installer will quit and all changes will be lost. - + Network Installation. (Disabled: Incorrect configuration) @@ -2019,7 +2032,7 @@ The installer will quit and all changes will be lost. - + Password is empty @@ -2065,6 +2078,19 @@ The installer will quit and all changes will be lost. + + PackageModel + + + Name + + + + + Description + + + Page_Keyboard @@ -2227,34 +2253,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space - - + + New partition - + Name - + File System - + Mount Point - + Size @@ -2322,17 +2348,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2506,65 +2532,65 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2583,22 +2609,22 @@ Output: - + unknown - + extended - + unformatted - + swap @@ -2652,6 +2678,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2679,140 +2713,152 @@ Output: - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. - + %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. - + Data partition (%1) - + Unknown system partition (%1) - + %1 system partition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2870,12 +2916,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: - + System requirements @@ -2883,27 +2929,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - + This program will ask you some questions and set up %2 on your computer. @@ -2924,17 +2970,17 @@ Output: SetHostNameJob - + Set hostname %1 - + Set hostname <strong>%1</strong>. - + Setting hostname %1. @@ -2984,82 +3030,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. @@ -3289,47 +3335,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your passwords do not match! @@ -3467,42 +3513,42 @@ Output: - + <h1>Welcome to the %1 installer.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer - + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support @@ -3510,7 +3556,7 @@ Output: WelcomeQmlViewStep - + Welcome @@ -3518,7 +3564,7 @@ Output: WelcomeViewStep - + Welcome @@ -3526,7 +3572,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_ko.ts b/lang/calamares_ko.ts index 009b4a622..4c12f8dba 100644 --- a/lang/calamares_ko.ts +++ b/lang/calamares_ko.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 %1의 마스터 부트 레코드 - + Boot Partition 부트 파티션 @@ -42,7 +42,7 @@ 부트로더를 설치하지 않습니다 - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done 완료 @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. %1 명령을 실행중 - + Bad working directory path 잘못된 작업 디렉터리 경로 - + Working directory %1 for python job %2 is not readable. 파이썬 작업 %2에 대한 작업 디렉터리 %1을 읽을 수 없습니다. - + Bad main script file 잘못된 주 스크립트 파일 - + Main script file %1 for python job %2 is not readable. 파이썬 작업 %2에 대한 주 스크립트 파일 %1을 읽을 수 없습니다. - + Boost.Python error in job "%1". 작업 "%1"에서 Boost.Python 오류 @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... 로딩 중 ... - + QML Step <i>%1</i>. QML 단계 <i>%1</i>. - + Loading failed. 로딩하지 못했습니다. @@ -251,175 +251,175 @@ Calamares::ViewManager - + &Back 뒤로 (&B) - + &Next 다음 (&N) - + &Cancel 취소 (&C) - + Cancel setup without changing the system. 시스템을 변경 하지 않고 설치를 취소합니다. - + Cancel installation without changing the system. 시스템 변경 없이 설치를 취소합니다. - + Setup Failed 설치 실패 - + Would you like to paste the install log to the web? 설치 로그를 웹에 붙여넣으시겠습니까? - + Install Log Paste URL 로그 붙여넣기 URL 설치 - + The upload was unsuccessful. No web-paste was done. 업로드에 실패했습니다. 웹 붙여넣기가 수행되지 않았습니다. - + Calamares Initialization Failed Calamares 초기화 실패 - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 가 설치될 수 없습니다. Calamares가 모든 구성된 모듈을 불러올 수 없었습니다. 이것은 Calamares가 분포에 의해 사용되는 방식에서 비롯된 문제입니다. - + <br/>The following modules could not be loaded: 다음 모듈 불러오기 실패: - + Continue with installation? 설치를 계속하시겠습니까? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> %1 설치 프로그램이 %2을(를) 설정하기 위해 디스크를 변경하려고 하는 중입니다.<br/><strong>이러한 변경은 취소할 수 없습니다.</strong> - + &Set up now 지금 설치 (&S) - + &Set up 설치 (&S) - + &Install 설치(&I) - + Setup is complete. Close the setup program. 설치가 완료 되었습니다. 설치 프로그램을 닫습니다. - + Cancel setup? 설치를 취소 하시겠습니까? - + Cancel installation? 설치를 취소하시겠습니까? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. 현재 설정 프로세스를 취소하시겠습니까? 설치 프로그램이 종료되고 모든 변경 내용이 손실됩니다. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. 정말로 현재 설치 프로세스를 취소하시겠습니까? 설치 관리자가 종료되며 모든 변경은 반영되지 않습니다. - - + + &Yes 예(&Y) - - + + &No 아니오(&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 설치 실패 @@ -427,22 +427,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type 알 수 없는 예외 유형 - + unparseable Python error 구문 분석할 수 없는 파이썬 오류 - + unparseable Python traceback 구문 분석할 수 없는 파이썬 역추적 정보 - + Unfetchable Python error. 가져올 수 없는 파이썬 오류 @@ -460,17 +460,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program %1 설치 프로그램 - + %1 Installer %1 설치 관리자 - + Show debug information 디버그 정보 보기 @@ -478,7 +478,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... 시스템 정보 수집 중... @@ -491,134 +491,134 @@ The installer will quit and all changes will be lost. 형식 - + After: 이후: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>수동 파티션 작업</strong><br/>직접 파티션을 만들거나 크기를 조정할 수 있습니다. - + Boot loader location: 부트 로더 위치 : - + Select storage de&vice: 저장 장치 선택 (&v) - - - - + + + + Current: 현재: - + Reuse %1 as home partition for %2. %2의 홈 파티션으로 %1을 재사용합니다. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>축소할 파티션을 선택한 다음 하단 막대를 끌어 크기를 조정합니다.</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1이 %2MiB로 축소되고 %4에 대해 새 %3MiB 파티션이 생성됩니다. - + <strong>Select a partition to install on</strong> <strong>설치할 파티션을 선택합니다.</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. 이 시스템에서는 EFI 시스템 파티션을 찾을 수 없습니다. 돌아가서 수동 파티션 작업을 사용하여 %1을 설정하세요. - + The EFI system partition at %1 will be used for starting %2. %1의 EFI 시스템 파티션은 %2의 시작으로 사용될 것입니다. - + EFI system partition: EFI 시스템 파티션: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. 이 저장 장치에는 운영 체제가없는 것 같습니다. 무엇을하고 싶으십니까?<br/>저장 장치를 변경하기 전에 선택 사항을 검토하고 확인할 수 있습니다. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>디스크 지우기</strong><br/>그러면 선택한 저장 장치에 현재 있는 모든 데이터가 <font color="red">삭제</font>됩니다. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. 이 저장 장치에 %1이 있습니다. 무엇을하고 싶으십니까?<br/>저장 장치를 변경하기 전에 선택 사항을 검토하고 확인할 수 있습니다. - + No Swap 스왑 없음 - + Reuse Swap 스왑 재사용 - + Swap (no Hibernate) 스왑 (최대 절전모드 아님) - + Swap (with Hibernate) 스왑 (최대 절전모드 사용) - + Swap to file 파일로 스왑 - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>함께 설치</strong><br/>설치 관리자가 파티션을 축소하여 %1 공간을 확보합니다. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>파티션 바꾸기</strong><br/>파티션을 %1로 바꿉니다. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. 이 저장 장치에는 이미 운영 체제가 있습니다. 무엇을하고 싶으십니까?<br/>저장 장치를 변경하기 전에 선택 사항을 검토하고 확인할 수 있습니다. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. 이 저장 장치에는 여러 개의 운영 체제가 있습니다. 무엇을하고 싶으십니까?<br/>저장 장치를 변경하기 전에 선택 사항을 검토하고 확인할 수 있습니다. @@ -626,17 +626,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 파티셔닝 작업을 위해 %1의 마운트를 모두 해제합니다 - + Clearing mounts for partitioning operations on %1. 파티셔닝 작업을 위해 %1의 마운트를 모두 해제하는 중입니다. - + Cleared all mounts for %1 %1의 모든 마운트가 해제되었습니다. @@ -683,10 +683,33 @@ The installer will quit and all changes will be lost. 이 명령은 사용자 이름을 알아야 하지만, username이 정의되지 않았습니다. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>%1에 대한 Calamares 설정 프로그램에 오신 것을 환영합니다.</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>%1 설치에 오신 것을 환영합니다.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>%1을 위한 Calamares 설치 관리자에 오신 것을 환영합니다.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>%1 설치 관리자에 오신 것을 환영합니다.</h1> + + ContextualProcessJob - + Contextual Processes Job 컨텍스트 프로세스 작업 @@ -744,27 +767,27 @@ The installer will quit and all changes will be lost. 크기(&z): - + En&crypt 암호화 (&c) - + Logical 논리 파티션 - + Primary 파티션 - + GPT GPT - + Mountpoint already in use. Please select another one. 마운트 위치가 이미 사용 중입니다. 다른 위치를 선택해주세요. @@ -772,22 +795,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. %1 파일 시스템으로 %4(%3)에 새 %2MiB 파티션을 만듭니다. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. <strong>%1</strong> 파일 시스템으로 <strong>%4</strong> (%3)에 새 <strong>%2MiB</strong> 파티션을 만듭니다. - + Creating new %1 partition on %2. %2에 새로운 %1 파티션 테이블을 만드는 중입니다. - + The installer failed to create partition on disk '%1'. 디스크 '%1'에 파티션을 생성하지 못했습니다. @@ -823,22 +846,22 @@ 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>에 새로운 <strong>%1</strong> 파티션 테이블을 만듭니다 (%3). - + Creating new %1 partition table on %2. %2에 새로운 %1 파티션 테이블을 만드는 중입니다. - + The installer failed to create a partition table on %1. 설치 관리자가 %1에 파티션 테이블을 만들지 못했습니다. @@ -990,13 +1013,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1109,7 +1132,7 @@ The installer will quit and all changes will be lost. 암호 확인 - + Please enter the same passphrase in both boxes. 암호와 암호 확인 상자에 동일한 값을 입력해주세요. @@ -1117,37 +1140,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>. 시스템 파티션 <strong>%1</strong>의 %3에 %2를 설치합니다. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. <strong>%2</strong> 마운트 위치를 사용하여 파티션 <strong>%1</strong>의 %3 을 설정합니다. - + Install boot loader on <strong>%1</strong>. <strong>%1</strong>에 부트 로더를 설치합니다. - + Setting up mount points. 마운트 위치를 설정 중입니다. @@ -1231,22 +1254,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. %4의 %1 포맷 파티션(파일 시스템: %2, 크기: %3 MiB) - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. <strong>%3MiB</strong> 파티션 <strong>%1</strong>을 파일 시스템 <strong>%2</strong>로 포맷합니다. - + Formatting partition %1 with file system %2. %1 파티션을 %2 파일 시스템으로 포맷하는 중입니다. - + The installer failed to format partition %1 on disk '%2'. 설치 관리자가 '%2' 디스크에 있는 %1 파티션을 포맷하지 못했습니다. @@ -1653,16 +1676,6 @@ 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) @@ -1674,7 +1687,7 @@ The installer will quit and all changes will be lost. 네트워크 설치. (불가: 유효하지 않은 그룹 데이터를 수신했습니다) - + Network Installation. (Disabled: Incorrect configuration) 네트워크 설치. (사용안함: 잘못된 환경설정) @@ -2020,7 +2033,7 @@ The installer will quit and all changes will be lost. 알 수 없는 오류 - + Password is empty 비밀번호가 비어 있습니다 @@ -2066,6 +2079,19 @@ The installer will quit and all changes will be lost. 패키지 + + PackageModel + + + Name + 이름 + + + + Description + 설명 + + Page_Keyboard @@ -2228,34 +2254,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space 여유 공간 - - + + New partition 새로운 파티션 - + Name 이름 - + File System 파일 시스템 - + Mount Point 마운트 위치 - + Size 크기 @@ -2323,17 +2349,17 @@ The installer will quit and all changes will be lost. 부트로더 설치 위치 (&l) : - + Are you sure you want to create a new partition table on %1? %1에 새 파티션 테이블을 생성하시겠습니까? - + Can not create new partition 새로운 파티션을 만들 수 없습니다 - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. %1의 파티션 테이블에는 이미 %2 기본 파티션이 있으므로 더 이상 추가할 수 없습니다. 대신 기본 파티션 하나를 제거하고 확장 파티션을 추가하세요. @@ -2507,14 +2533,14 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. 명령으로부터 아무런 출력이 없습니다. - + Output: @@ -2523,52 +2549,52 @@ Output: - + External command crashed. 외부 명령이 실패했습니다. - + Command <i>%1</i> crashed. <i>%1</i> 명령이 실패했습니다. - + External command failed to start. 외부 명령을 시작하지 못했습니다. - + Command <i>%1</i> failed to start. <i>%1</i> 명령을 시작하지 못했습니다. - + Internal error when starting command. 명령을 시작하는 중에 내부 오류가 발생했습니다. - + Bad parameters for process job call. 프로세스 작업 호출에 대한 잘못된 매개 변수입니다. - + External command failed to finish. 외부 명령을 완료하지 못했습니다. - + Command <i>%1</i> failed to finish in %2 seconds. <i>%1</i> 명령을 %2초 안에 완료하지 못했습니다. - + External command finished with errors. 외부 명령이 오류와 함께 완료되었습니다. - + Command <i>%1</i> finished with exit code %2. <i>%1</i> 명령이 종료 코드 %2와 함께 완료되었습니다. @@ -2587,22 +2613,22 @@ Output: 기본 - + unknown 알 수 없음 - + extended 확장됨 - + unformatted 포맷되지 않음 - + swap 스왑 @@ -2656,6 +2682,14 @@ Output: 새 임의 파일 <pre>%1</pre>을(를) 만들 수 없습니다. + + RemoveUserJob + + + Remove live user from target system + 대상 시스템에서 라이브 사용자 제거 + + RemoveVolumeGroupJob @@ -2683,140 +2717,152 @@ Output: 형식 - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. %1을 설치할 위치를 선택합니다.<br/><font color="red">경고: </font>선택한 파티션의 모든 파일이 삭제됩니다. - + The selected item does not appear to be a valid partition. 선택된 항목은 유효한 파티션으로 표시되지 않습니다. - + %1 cannot be installed on empty space. Please select an existing partition. %1은 빈 공간에 설치될 수 없습니다. 존재하는 파티션을 선택해주세요. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1은 확장 파티션에 설치될 수 없습니다. 주 파티션 혹은 논리 파티션을 선택해주세요. - + %1 cannot be installed on this partition. %1은 이 파티션에 설치될 수 없습니다. - + Data partition (%1) 데이터 파티션 (%1) - + Unknown system partition (%1) 알 수 없는 시스템 파티션 (%1) - + %1 system partition (%2) %1 시스템 파티션 (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>%1 파티션이 %2에 비해 너무 작습니다. 용량이 %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/>이 시스템에서는 EFI 시스템 파티션을 찾을 수 없습니다. 돌아가서 수동 파티션 작업을 사용하여 %1을 설정하세요. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1이 %2에 설치됩니다.<br/><font color="red">경고: </font>%2 파티션의 모든 데이터가 손실됩니다. - + The EFI system partition at %1 will be used for starting %2. %1의 EFI 시스템 파티션은 %2의 시작으로 사용될 것입니다. - + EFI system partition: EFI 시스템 파티션: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job 파일시스템 작업 크기조정 - + Invalid configuration 잘못된 설정 - + The file-system resize job has an invalid configuration and will not run. 파일 시스템 크기 조정 작업에 잘못된 설정이 있으며 실행되지 않습니다. - - + KPMCore not Available KPMCore 사용할 수 없음 - - + Calamares cannot start KPMCore for the file-system resize job. Calamares는 파일 시스템 크기 조정 작업을 위해 KPMCore를 시작할 수 없습니다. - - - - - + + + + + Resize Failed 크기조정 실패 - + The filesystem %1 could not be found in this system, and cannot be resized. 이 시스템에서 파일 시스템 %1를 찾을 수 없으므로 크기를 조정할 수 없습니다. - + The device %1 could not be found in this system, and cannot be resized. %1 장치를 이 시스템에서 찾을 수 없으며 크기를 조정할 수 없습니다. - - + + The filesystem %1 cannot be resized. 파일 시스템 %1의 크기를 조정할 수 없습니다. - - + + The device %1 cannot be resized. %1 장치의 크기를 조정할 수 없습니다. - + The filesystem %1 must be resized, but cannot. 파일 시스템 %1의 크기를 조정해야 하지만 조정할 수 없습니다. - + The device %1 must be resized, but cannot %1 장치의 크기를 조정해야 하지만 조정할 수 없습니다. @@ -2874,12 +2920,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: 최상의 결과를 얻으려면 이 컴퓨터가 다음 사항을 충족해야 합니다. - + System requirements 시스템 요구 사항 @@ -2887,27 +2933,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> 이 컴퓨터는 %1 설치를 위한 최소 요구 사항을 충족하지 않습니다.<br/>설치를 계속할 수 없습니다.<a href="#details">세부 정보...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> 이 컴퓨터는 %1 설치를 위한 최소 요구 사항을 충족하지 않습니다.<br/>설치를 계속할 수 없습니다. <a href="#details">세부 사항입니다...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. 이 컴퓨터는 %1 설치를 위한 권장 요구 사항 중 일부를 충족하지 않습니다.<br/>설치를 계속할 수는 있지만 일부 기능을 사용하지 않도록 설정할 수도 있습니다. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. 이 컴퓨터는 %1 설치를 위한 권장 요구 사항 중 일부를 충족하지 않습니다.<br/>설치를 계속할 수 있지만 일부 기능을 사용하지 않도록 설정할 수 있습니다. - + This program will ask you some questions and set up %2 on your computer. 이 프로그램은 몇 가지 질문을 하고 컴퓨터에 %2을 설정합니다. @@ -2928,17 +2974,17 @@ Output: SetHostNameJob - + Set hostname %1 호스트 이름을 %1로 설정합니다 - + Set hostname <strong>%1</strong>. 호스트 이름을 <strong>%1</strong>로 설정합니다. - + Setting hostname %1. 호스트 이름을 %1로 설정하는 중입니다. @@ -2988,82 +3034,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. 파티션 %1에 플래그를 설정합니다. - + Set flags on %1MiB %2 partition. %1MiB %2 파티션에 플래그 설정. - + Set flags on new partition. 새 파티션에 플래그를 설정합니다. - + Clear flags on partition <strong>%1</strong>. 파티션 <strong>%1</strong>에서 플래그를 지웁니다. - + Clear flags on %1MiB <strong>%2</strong> partition. %1MiB <strong>%2</strong> 파티션에서 플래그를 지웁니다. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. %1MiB <strong>%2</strong> 파티션을 <strong>%3</strong>으로 플래그합니다. - + Clearing flags on %1MiB <strong>%2</strong> partition. %1MiB <strong>%2</strong> 파티션에서 플래그를 지우는 중입니다. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. %1MiB <strong>%2</strong> 파티션에서 플래그 <strong>%3</strong>을 설정합니다. - + Clear flags on new partition. 새 파티션에서 플래그를 지웁니다. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. 파티션 <strong>%1</strong>을 <strong>%2</strong>로 플래그 지정합니다. - + Flag new partition as <strong>%1</strong>. 파티션을 <strong>%1</strong>로 플래그 지정합니다 - + Clearing flags on partition <strong>%1</strong>. 파티션 <strong>%1</strong>에서 플래그를 지우는 중입니다. - + Clearing flags on new partition. 새 파티션에서 플래그를 지우는 중입니다. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. 파티션 <strong>%1</strong>에 플래그를 .<strong>%2</strong>로 설정합니다. - + Setting flags <strong>%1</strong> on new partition. 새 파티션에서 플래그를 <strong>%1</strong>으로 설정합니다. - + The installer failed to set flags on partition %1. 설치 프로그램이 파티션 %1에서 플래그를 설정하지 못했습니다.. @@ -3293,47 +3339,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>둘 이상의 사용자가 이 컴퓨터를 사용할 경우, 설정 후 계정을 여러 개 만들 수 있습니다.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>둘 이상의 사용자가 이 컴퓨터를 사용할 경우 설치 후 계정을 여러 개 만들 수 있습니다.</small> - + Your username is too long. 사용자 이름이 너무 깁니다. - + Your username must start with a lowercase letter or underscore. 사용자 이름은 소문자 또는 밑줄로 시작해야 합니다. - + Only lowercase letters, numbers, underscore and hyphen are allowed. 소문자, 숫자, 밑줄 및 하이픈만 허용됩니다. - + Only letters, numbers, underscore and hyphen are allowed. 문자, 숫자, 밑줄 및 하이픈만 허용됩니다. - + Your hostname is too short. 호스트 이름이 너무 짧습니다. - + Your hostname is too long. 호스트 이름이 너무 깁니다. - + Your passwords do not match! 암호가 일치하지 않습니다! @@ -3471,42 +3517,42 @@ Output: 정보 (&A) - + <h1>Welcome to the %1 installer.</h1> <h1>%1 설치 관리자에 오신 것을 환영합니다.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>%1을 위한 Calamares 설치 관리자에 오신 것을 환영합니다.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>%1에 대한 Calamares 설정 프로그램에 오신 것을 환영합니다.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>%1 설치에 오신 것을 환영합니다.</h1> - + About %1 setup %1 설치 정보 - + About %1 installer %1 설치 관리자에 대하여 - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/><a href="https://calamares.io/team/">Calamares</a> 팀과 <a href="https://www.transifex.com/calamares/calamares/">Calamares 번역 팀</a>에게 감사드립니다.<br/><br/><a href="https://calamares.io/">Calamares</a> 개발 후원 : <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 지원 @@ -3514,7 +3560,7 @@ Output: WelcomeQmlViewStep - + Welcome 환영합니다 @@ -3522,7 +3568,7 @@ Output: WelcomeViewStep - + Welcome 환영합니다 @@ -3530,7 +3576,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> <h3>%1</h3> diff --git a/lang/calamares_lo.ts b/lang/calamares_lo.ts index 95f3e9a44..d7132c409 100644 --- a/lang/calamares_lo.ts +++ b/lang/calamares_lo.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 - + Boot Partition @@ -42,7 +42,7 @@ - + %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -251,173 +251,173 @@ Calamares::ViewManager - + &Back - + &Next - + &Cancel - + Cancel setup without changing the system. - + Cancel installation without changing the system. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. - - + + &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 @@ -425,22 +425,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type - + unparseable Python error - + unparseable Python traceback - + Unfetchable Python error. @@ -457,17 +457,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program - + %1 Installer - + Show debug information @@ -475,7 +475,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... @@ -488,134 +488,134 @@ The installer will quit and all changes will be lost. - + After: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + Select storage de&vice: - - - - + + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -623,17 +623,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 - + Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 @@ -680,10 +680,33 @@ The installer will quit and all changes will be lost. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + + + ContextualProcessJob - + Contextual Processes Job @@ -741,27 +764,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical - + Primary - + GPT - + Mountpoint already in use. Please select another one. @@ -769,22 +792,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. @@ -820,22 +843,22 @@ 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. @@ -987,13 +1010,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) - + %1 - (%2) device[name] - (device-node[name]) @@ -1106,7 +1129,7 @@ The installer will quit and all changes will be lost. - + Please enter the same passphrase in both boxes. @@ -1114,37 +1137,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. @@ -1228,22 +1251,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. - + The installer failed to format partition %1 on disk '%2'. @@ -1650,16 +1673,6 @@ 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) @@ -1671,7 +1684,7 @@ The installer will quit and all changes will be lost. - + Network Installation. (Disabled: Incorrect configuration) @@ -2017,7 +2030,7 @@ The installer will quit and all changes will be lost. - + Password is empty @@ -2063,6 +2076,19 @@ The installer will quit and all changes will be lost. + + PackageModel + + + Name + + + + + Description + + + Page_Keyboard @@ -2225,34 +2251,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space - - + + New partition - + Name - + File System - + Mount Point - + Size @@ -2320,17 +2346,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2504,65 +2530,65 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2581,22 +2607,22 @@ Output: - + unknown - + extended - + unformatted - + swap @@ -2650,6 +2676,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2677,140 +2711,152 @@ Output: - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. - + %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. - + Data partition (%1) - + Unknown system partition (%1) - + %1 system partition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2868,12 +2914,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: - + System requirements @@ -2881,27 +2927,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - + This program will ask you some questions and set up %2 on your computer. @@ -2922,17 +2968,17 @@ Output: SetHostNameJob - + Set hostname %1 - + Set hostname <strong>%1</strong>. - + Setting hostname %1. @@ -2982,82 +3028,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. @@ -3287,47 +3333,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your passwords do not match! @@ -3465,42 +3511,42 @@ Output: - + <h1>Welcome to the %1 installer.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer - + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support @@ -3508,7 +3554,7 @@ Output: WelcomeQmlViewStep - + Welcome @@ -3516,7 +3562,7 @@ Output: WelcomeViewStep - + Welcome @@ -3524,7 +3570,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_lt.ts b/lang/calamares_lt.ts index 63a79157e..82c5f2f3b 100644 --- a/lang/calamares_lt.ts +++ b/lang/calamares_lt.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 %1 paleidimo įrašas (MBR) - + Boot Partition Paleidimo skaidinys @@ -42,7 +42,7 @@ Nediegti paleidyklės - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Atlikta @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Vykdoma %1 operacija. - + Bad working directory path Netinkama darbinio katalogo vieta - + Working directory %1 for python job %2 is not readable. Darbinis %1 python katalogas dėl %2 užduoties yra neskaitomas - + Bad main script file Prastas pagrindinio skripto failas - + Main script file %1 for python job %2 is not readable. Pagrindinis scenarijus %1 dėl python %2 užduoties yra neskaitomas - + Boost.Python error in job "%1". Boost.Python klaida užduotyje "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... Įkeliama... - + QML Step <i>%1</i>. QML <i>%1</i> žingsnis. - + Loading failed. Įkėlimas nepavyko. @@ -257,175 +257,175 @@ Calamares::ViewManager - + &Back &Atgal - + &Next &Toliau - + &Cancel A&tsisakyti - + Cancel setup without changing the system. Atsisakyti sąrankos, nieko sistemoje nekeičiant. - + Cancel installation without changing the system. Atsisakyti diegimo, nieko sistemoje nekeičiant. - + Setup Failed Sąranka patyrė nesėkmę - + Would you like to paste the install log to the web? Ar norėtumėte įdėti diegimo žurnalą į saityną? - + Install Log Paste URL Diegimo žurnalo įdėjimo URL - + The upload was unsuccessful. No web-paste was done. Įkėlimas buvo nesėkmingas. Nebuvo atlikta jokio įdėjimo į saityną. - + Calamares Initialization Failed Calamares inicijavimas nepavyko - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. Nepavyksta įdiegti %1. Calamares nepavyko įkelti visų sukonfigūruotų modulių. Tai yra problema, susijusi su tuo, kaip distribucija naudoja diegimo programą Calamares. - + <br/>The following modules could not be loaded: <br/>Nepavyko įkelti šių modulių: - + Continue with installation? Tęsti diegimą? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> %1 sąrankos programa, siekdama nustatyti %2, ketina atlikti pakeitimus diske.<br/><strong>Šių pakeitimų nebegalėsite atšaukti.</strong> - + &Set up now Nu&statyti dabar - + &Set up Nu&statyti - + &Install Į&diegti - + Setup is complete. Close the setup program. Sąranka užbaigta. Užverkite sąrankos programą. - + Cancel setup? Atsisakyti sąrankos? - + Cancel installation? Atsisakyti diegimo? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. Ar tikrai norite atsisakyti dabartinio sąrankos proceso? Sąrankos programa užbaigs darbą ir visi pakeitimai bus prarasti. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Ar tikrai norite atsisakyti dabartinio diegimo proceso? Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. - - + + &Yes &Taip - - + + &No &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>Šių pakeitimų nebegalėsite atšaukti.</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 @@ -433,22 +433,22 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. CalamaresPython::Helper - + Unknown exception type Nežinomas išimties tipas - + unparseable Python error Nepalyginama Python klaida - + unparseable Python traceback Nepalyginamas Python atsekimas - + Unfetchable Python error. Neatgaunama Python klaida. @@ -466,17 +466,17 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. CalamaresWindow - + %1 Setup Program %1 sąrankos programa - + %1 Installer %1 diegimo programa - + Show debug information Rodyti derinimo informaciją @@ -484,7 +484,7 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. CheckerContainer - + Gathering system information... Renkama sistemos informacija... @@ -497,134 +497,134 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. Forma - + After: Po: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Rankinis skaidymas</strong><br/>Galite patys kurti ar keisti skaidinių dydžius. - + Boot loader location: Paleidyklės vieta: - + Select storage de&vice: Pasirinkite atminties įr&enginį: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 bus sumažintas iki %2MiB ir naujas %3MiB skaidinys bus sukurtas sistemai %4. - + <strong>Select a partition to install on</strong> <strong>Pasirinkite kuriame skaidinyje įdiegti</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Šioje sistemoje niekur nepavyko rasti EFI skaidinio. Prašome grįžti ir naudoti rankinį skaidymą, kad nustatytumėte %1. - + The EFI system partition at %1 will be used for starting %2. %2 paleidimui bus naudojamas EFI sistemos skaidinys, esantis ties %1. - + EFI system partition: EFI sistemos skaidinys: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Atrodo, kad šiame įrenginyje nėra operacinės sistemos. Ką norėtumėte daryti?<br/>Prieš atliekant bet kokius pakeitimus atminties įrenginyje, jūs galėsite apžvelgti ir patvirtinti savo pasirinkimus. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Ištrinti diską</strong><br/>Tai <font color="red">ištrins</font> visus, pasirinktame atminties įrenginyje, esančius duomenis. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Šiame atminties įrenginyje jau yra %1. Ką norėtumėte daryti?<br/>Prieš atliekant bet kokius pakeitimus atminties įrenginyje, jūs galėsite apžvelgti ir patvirtinti savo pasirinkimus. - + No Swap Be sukeitimų skaidinio - + Reuse Swap Iš naujo naudoti sukeitimų skaidinį - + Swap (no Hibernate) Sukeitimų skaidinys (be užmigdymo) - + Swap (with Hibernate) Sukeitimų skaidinys (su užmigdymu) - + Swap to file Sukeitimų failas - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Įdiegti šalia</strong><br/>Diegimo programa sumažins skaidinį, kad atlaisvintų vietą sistemai %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Pakeisti skaidinį</strong><br/>Pakeičia skaidinį ir įrašo %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Šiame atminties įrenginyje jau yra operacinė sistema. Ką norėtumėte daryti?<br/>Prieš atliekant bet kokius pakeitimus atminties įrenginyje, jūs galėsite apžvelgti ir patvirtinti savo pasirinkimus. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Šiame atminties įrenginyje jau yra kelios operacinės sistemos. Ką norėtumėte daryti?<br/>Prieš atliekant bet kokius pakeitimus atminties įrenginyje, jūs galėsite apžvelgti ir patvirtinti savo pasirinkimus. @@ -632,17 +632,17 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. ClearMountsJob - + Clear mounts for partitioning operations on %1 Išvalyti prijungimus, siekiant atlikti skaidymo operacijas skaidiniuose %1 - + Clearing mounts for partitioning operations on %1. Išvalomi prijungimai, siekiant atlikti skaidymo operacijas skaidiniuose %1. - + Cleared all mounts for %1 Visi %1 prijungimai išvalyti @@ -689,10 +689,33 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. Komanda turi žinoti naudotojo vardą, tačiau nebuvo apibrėžtas joks naudotojo vardas. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>Jus sveikina Calamares sąrankos programa, skirta %1 sistemai.</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>Jus sveikina %1 sąranka.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Jus sveikina Calamares diegimo programa, skirta %1 sistemai.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Jus sveikina %1 diegimo programa.</h1> + + ContextualProcessJob - + Contextual Processes Job Konteksto procesų užduotis @@ -750,27 +773,27 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. D&ydis: - + En&crypt Užši&fruoti - + Logical Loginis - + Primary Pirminis - + GPT GPT - + Mountpoint already in use. Please select another one. Prijungimo taškas jau yra naudojamas. Prašome pasirinkti kitą. @@ -778,22 +801,22 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. Sukurti naują %2MiB skaidinį diske %4 (%3) su %1 failų sistema. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Sukurti naują <strong>%2MiB</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'. @@ -829,22 +852,22 @@ 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. @@ -996,13 +1019,13 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1115,7 +1138,7 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. Patvirtinkite slaptafrazę - + Please enter the same passphrase in both boxes. Prašome abiejuose langeliuose įrašyti tą pačią slaptafrazę. @@ -1123,37 +1146,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. @@ -1237,22 +1260,22 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. Formatuoti skaidinį %1 (failų sistema: %2, dydis: %3 MiB) diske %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. Formatuoti <strong>%3MiB</strong> skaidinį <strong>%1</strong> su <strong>%2</strong> failų sistema. - + Formatting partition %1 with file system %2. Formatuojamas skaidinys %1 su %2 failų sistema. - + The installer failed to format partition %1 on disk '%2'. Diegimo programai nepavyko formatuoti „%2“ disko skaidinio %1. @@ -1659,16 +1682,6 @@ 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) @@ -1680,7 +1693,7 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. Tinklo diegimas. (Išjungtas: Gauti neteisingi grupių duomenys) - + Network Installation. (Disabled: Incorrect configuration) Tinklo diegimas. (Išjungtas: Neteisinga konfigūracija) @@ -2026,7 +2039,7 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. Nežinoma klaida - + Password is empty Slaptažodis yra tuščias @@ -2072,6 +2085,19 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. Paketai + + PackageModel + + + Name + Pavadinimas + + + + Description + Aprašas + + Page_Keyboard @@ -2234,34 +2260,34 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. PartitionModel - - + + Free Space Laisva vieta - - + + New partition Naujas skaidinys - + Name Pavadinimas - + File System Failų sistema - + Mount Point Prijungimo vieta - + Size Dydis @@ -2329,17 +2355,17 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. Į&diegti paleidyklę skaidinyje: - + Are you sure you want to create a new partition table on %1? Ar tikrai %1 norite sukurti naują skaidinių lentelę? - + Can not create new partition Nepavyksta sukurti naują skaidinį - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Skaidinių lentelėje ties %1 jau yra %2 pirminiai skaidiniai ir daugiau nebegali būti pridėta. Pašalinkite vieną pirminį skaidinį ir vietoj jo, pridėkite išplėstą skaidinį. @@ -2513,14 +2539,14 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. ProcessResult - + There was no output from the command. Nebuvo jokios išvesties iš komandos. - + Output: @@ -2529,52 +2555,52 @@ Išvestis: - + External command crashed. Išorinė komanda užstrigo. - + Command <i>%1</i> crashed. Komanda <i>%1</i> užstrigo. - + External command failed to start. Nepavyko paleisti išorinės komandos. - + Command <i>%1</i> failed to start. Nepavyko paleisti komandos <i>%1</i>. - + Internal error when starting command. Paleidžiant komandą, įvyko vidinė klaida. - + Bad parameters for process job call. Blogi parametrai proceso užduoties iškvietai. - + External command failed to finish. Nepavyko pabaigti išorinės komandos. - + Command <i>%1</i> failed to finish in %2 seconds. Nepavyko per %2 sek. pabaigti komandos <i>%1</i>. - + External command finished with errors. Išorinė komanda pabaigta su klaidomis. - + Command <i>%1</i> finished with exit code %2. Komanda <i>%1</i> pabaigta su išėjimo kodu %2. @@ -2593,22 +2619,22 @@ Išvestis: Numatytasis - + unknown nežinoma - + extended išplėsta - + unformatted nesutvarkyta - + swap sukeitimų (swap) @@ -2662,6 +2688,14 @@ Išvestis: Nepavyko sukurti naujo atsitiktinio failo <pre>%1</pre>. + + RemoveUserJob + + + Remove live user from target system + Šalinti demonstracinį naudotoją iš paskirties sistemos + + RemoveVolumeGroupJob @@ -2689,140 +2723,153 @@ Išvestis: Forma - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Pasirinkite, kur norėtumėte įdiegti %1.<br/><font color="red">Įspėjimas: </font>tai ištrins visus, pasirinktame skaidinyje esančius, failus. - + The selected item does not appear to be a valid partition. Pasirinktas elementas neatrodo kaip teisingas skaidinys. - + %1 cannot be installed on empty space. Please select an existing partition. %1 negali būti įdiegta laisvoje vietoje. Prašome pasirinkti esamą skaidinį. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 negali būti įdiegta išplėstame skaidinyje. Prašome pasirinkti esamą pirminį ar loginį skaidinį. - + %1 cannot be installed on this partition. %1 negali būti įdiegta šiame skaidinyje. - + Data partition (%1) Duomenų skaidinys (%1) - + Unknown system partition (%1) Nežinomas sistemos skaidinys (%1) - + %1 system partition (%2) %1 sistemos skaidinys (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>Skaidinys %1 yra pernelyg mažas sistemai %2. Prašome pasirinkti skaidinį, kurio dydis siektų bent %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/>Šioje sistemoje niekur nepavyko rasti EFI skaidinio. Prašome grįžti ir naudoti rankinį skaidymą, kad nustatytumėte %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 sistema bus įdiegta skaidinyje %2.<br/><font color="red">Įspėjimas: </font>visi duomenys skaidinyje %2 bus prarasti. - + The EFI system partition at %1 will be used for starting %2. %2 paleidimui bus naudojamas EFI sistemos skaidinys, esantis %1. - + EFI system partition: EFI sistemos skaidinys: + + RequirementsModel + + + This program will ask you some questions and set up your installation + Ši programa užduos jums kelis klausimus ir padės nusistatyti diegimą + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + Ši programa netenkina minimalių diegimo reikalavimų. +Diegimas negali būti tęsiamas + + ResizeFSJob - + Resize Filesystem Job Failų sistemos dydžio keitimo užduotis - + Invalid configuration Neteisinga konfigūracija - + The file-system resize job has an invalid configuration and will not run. Failų sistemos dydžio keitimo užduotyje yra neteisinga konfigūracija ir užduotis nebus paleista. - - + KPMCore not Available KPMCore neprieinama - - + Calamares cannot start KPMCore for the file-system resize job. Diegimo programai Calamares nepavyksta paleisti KPMCore, kuri skirta failų sistemos dydžio keitimo užduočiai. - - - - - + + + + + Resize Failed Dydžio pakeisti nepavyko - + The filesystem %1 could not be found in this system, and cannot be resized. Šioje sistemoje nepavyko rasti %1 failų sistemos ir nepavyko pakeisti jos dydį. - + The device %1 could not be found in this system, and cannot be resized. Šioje sistemoje nepavyko rasti %1 įrenginio ir nepavyko pakeisti jo dydį. - - + + The filesystem %1 cannot be resized. %1 failų sistemos dydis negali būti pakeistas. - - + + The device %1 cannot be resized. %1 įrenginio dydis negali būti pakeistas. - + The filesystem %1 must be resized, but cannot. %1 failų sistemos dydis privalo būti pakeistas, tačiau tai negali būti atlikta. - + The device %1 must be resized, but cannot %1 įrenginio dydis privalo būti pakeistas, tačiau tai negali būti atlikta @@ -2880,12 +2927,12 @@ Išvestis: ResultsListDialog - + For best results, please ensure that this computer: Norėdami pasiekti geriausių rezultatų, įsitikinkite kad šis kompiuteris: - + System requirements Sistemos reikalavimai @@ -2893,27 +2940,27 @@ Išvestis: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> Šis kompiuteris netenkina minimalių %1 nustatymo reikalavimų.<br/>Sąranka negali būti tęsiama. <a href="#details">Išsamiau...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Šis kompiuteris netenkina minimalių %1 diegimo reikalavimų.<br/>Diegimas negali būti tęsiamas. <a href="#details">Išsamiau...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. Šis kompiuteris netenkina kai kurių %1 nustatymui rekomenduojamų reikalavimų.<br/>Sąranką galima tęsti, tačiau kai kurios funkcijos gali būti išjungtos. - + 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/>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 kelis klausimus ir padės įsidiegti %2. @@ -2934,17 +2981,17 @@ Išvestis: SetHostNameJob - + Set hostname %1 Nustatyti kompiuterio vardą %1 - + Set hostname <strong>%1</strong>. Nustatyti kompiuterio vardą <strong>%1</strong>. - + Setting hostname %1. Nustatomas kompiuterio vardas %1. @@ -2994,82 +3041,82 @@ Išvestis: SetPartFlagsJob - + Set flags on partition %1. Nustatyti vėliavėles skaidinyje %1. - + Set flags on %1MiB %2 partition. Nustatyti vėliavėles %1MiB skaidinyje %2. - + Set flags on new partition. Nustatyti vėliavėles naujame skaidinyje. - + Clear flags on partition <strong>%1</strong>. Išvalyti vėliavėles skaidinyje <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. Išvalyti vėliavėles %1MiB skaidinyje <strong>%2</strong>. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. Pažymėti vėliavėle %1MiB skaidinį <strong>%2</strong> kaip <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. Išvalomos vėliavėlės %1MiB skaidinyje<strong>%2</strong>. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. Nustatomos vėliavėlės <strong>%3</strong>, %1MiB skaidinyje <strong>%2</strong>. - + Clear flags on new partition. Išvalyti vėliavėles naujame skaidinyje. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Pažymėti vėliavėle skaidinį <strong>%1</strong> kaip <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Pažymėti vėliavėle naują skaidinį kaip <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Išvalomos vėliavėlės skaidinyje <strong>%1</strong>. - + Clearing flags on new partition. Išvalomos vėliavėlės naujame skaidinyje. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Nustatomos <strong>%2</strong> vėliavėlės skaidinyje <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Nustatomos vėliavėlės <strong>%1</strong> naujame skaidinyje. - + The installer failed to set flags on partition %1. Diegimo programai nepavyko nustatyti vėliavėlių skaidinyje %1. @@ -3299,47 +3346,47 @@ Išvestis: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>Jei šiuo kompiuteriu naudosis keli žmonės, po sąrankos galite sukurti papildomas paskyras.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>Jei šiuo kompiuteriu naudosis keli žmonės, po diegimo galite sukurti papildomas paskyras.</small> - + Your username is too long. Jūsų naudotojo vardas yra pernelyg ilgas. - + Your username must start with a lowercase letter or underscore. Jūsų naudotojo vardas privalo prasidėti mažąja raide arba pabraukimo brūkšniu. - + Only lowercase letters, numbers, underscore and hyphen are allowed. Yra leidžiamos tik mažosios raidės, skaitmenys, pabraukimo brūkšniai ir brūkšneliai. - + Only letters, numbers, underscore and hyphen are allowed. Yra leidžiamos tik raidės, skaitmenys, pabraukimo brūkšniai ir brūkšneliai. - + 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 passwords do not match! Jūsų slaptažodžiai nesutampa! @@ -3477,42 +3524,42 @@ Išvestis: &Apie - + <h1>Welcome to the %1 installer.</h1> <h1>Jus sveikina %1 diegimo programa.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Jus sveikina Calamares diegimo programa, skirta %1 sistemai.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>Jus sveikina Calamares sąrankos programa, skirta %1 sistemai.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>Jus sveikina %1 sąranka.</h1> - + About %1 setup Apie %1 sąranką - + About %1 installer Apie %1 diegimo programą - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <h1>%1</h1><br/><strong>%2<br/>skirta %3</strong><br/><br/>Autorių teisės 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Autorių teisės 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Dėkojame <a href="https://calamares.io/team/">Calamares komandai</a> bei <a href="https://www.transifex.com/calamares/calamares/">Calamares vertėjų komandai</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> plėtojimą remia <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Išlaisvinanti programinė įrangą. - + %1 support %1 palaikymas @@ -3520,7 +3567,7 @@ Išvestis: WelcomeQmlViewStep - + Welcome Pasisveikinimas @@ -3528,7 +3575,7 @@ Išvestis: WelcomeViewStep - + Welcome Pasisveikinimas @@ -3536,7 +3583,7 @@ Išvestis: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> <h3>%1</h3> diff --git a/lang/calamares_mk.ts b/lang/calamares_mk.ts index 69409b0f3..5d4eb531e 100644 --- a/lang/calamares_mk.ts +++ b/lang/calamares_mk.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 - + Boot Partition @@ -42,7 +42,7 @@ - + %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Готово @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,173 +253,173 @@ Calamares::ViewManager - + &Back - + &Next - + &Cancel - + Cancel setup without changing the system. - + Cancel installation without changing the system. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. - - + + &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 @@ -427,22 +427,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type - + unparseable Python error - + unparseable Python traceback - + Unfetchable Python error. @@ -459,17 +459,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program - + %1 Installer - + Show debug information @@ -477,7 +477,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... @@ -490,134 +490,134 @@ The installer will quit and all changes will be lost. - + After: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + Select storage de&vice: - - - - + + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -625,17 +625,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 - + Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 @@ -682,10 +682,33 @@ The installer will quit and all changes will be lost. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + + + ContextualProcessJob - + Contextual Processes Job @@ -743,27 +766,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical - + Primary - + GPT - + Mountpoint already in use. Please select another one. @@ -771,22 +794,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. @@ -822,22 +845,22 @@ 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. @@ -989,13 +1012,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) - + %1 - (%2) device[name] - (device-node[name]) @@ -1108,7 +1131,7 @@ The installer will quit and all changes will be lost. - + Please enter the same passphrase in both boxes. @@ -1116,37 +1139,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. @@ -1230,22 +1253,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. - + The installer failed to format partition %1 on disk '%2'. @@ -1652,16 +1675,6 @@ 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) @@ -1673,7 +1686,7 @@ The installer will quit and all changes will be lost. - + Network Installation. (Disabled: Incorrect configuration) @@ -2019,7 +2032,7 @@ The installer will quit and all changes will be lost. - + Password is empty @@ -2065,6 +2078,19 @@ The installer will quit and all changes will be lost. + + PackageModel + + + Name + + + + + Description + + + Page_Keyboard @@ -2227,34 +2253,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space - - + + New partition - + Name - + File System - + Mount Point - + Size @@ -2322,17 +2348,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2506,65 +2532,65 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2583,22 +2609,22 @@ Output: - + unknown - + extended - + unformatted - + swap @@ -2652,6 +2678,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2679,140 +2713,152 @@ Output: - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. - + %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. - + Data partition (%1) - + Unknown system partition (%1) - + %1 system partition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2870,12 +2916,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: - + System requirements @@ -2883,27 +2929,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - + This program will ask you some questions and set up %2 on your computer. @@ -2924,17 +2970,17 @@ Output: SetHostNameJob - + Set hostname %1 - + Set hostname <strong>%1</strong>. - + Setting hostname %1. @@ -2984,82 +3030,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. @@ -3289,47 +3335,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your passwords do not match! @@ -3467,42 +3513,42 @@ Output: - + <h1>Welcome to the %1 installer.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer - + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support @@ -3510,7 +3556,7 @@ Output: WelcomeQmlViewStep - + Welcome @@ -3518,7 +3564,7 @@ Output: WelcomeViewStep - + Welcome @@ -3526,7 +3572,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_ml.ts b/lang/calamares_ml.ts index 36fed6ecb..4b4c7a1eb 100644 --- a/lang/calamares_ml.ts +++ b/lang/calamares_ml.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 %1 ന്റെ മാസ്റ്റർ ബൂട്ട് റെക്കോർഡ് - + Boot Partition ബൂട്ട് പാർട്ടീഷൻ @@ -42,7 +42,7 @@ ബൂട്ട് ലോഡർ ഇൻസ്റ്റാൾ ചെയ്യരുത് - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done പൂർത്തിയായി @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. %1 ക്രിയ നടപ്പിലാക്കുന്നു. - + Bad working directory path പ്രവർത്ഥനരഹിതമായ ഡയറക്ടറി പാത - + Working directory %1 for python job %2 is not readable. പൈതൺ ജോബ് %2 യുടെ പ്രവർത്തന പാതയായ %1 വായിക്കുവാൻ കഴിയുന്നില്ല - + Bad main script file മോശമായ പ്രധാന സ്ക്രിപ്റ്റ് ഫയൽ - + Main script file %1 for python job %2 is not readable. പൈത്തൺ ജോബ് %2 നായുള്ള പ്രധാന സ്ക്രിപ്റ്റ് ഫയൽ %1 വായിക്കാൻ കഴിയുന്നില്ല. - + Boost.Python error in job "%1". "%1" എന്ന പ്രവൃത്തിയില്‍ ബൂസ്റ്റ്.പൈതണ്‍ പിശക് @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,175 +253,175 @@ Calamares::ViewManager - + &Back പുറകോട്ട് (&B) - + &Next അടുത്തത് (&N) - + &Cancel റദ്ദാക്കുക (&C) - + Cancel setup without changing the system. സിസ്റ്റത്തിന് മാറ്റമൊന്നും വരുത്താതെ സജ്ജീകരണപ്രക്രിയ റദ്ദാക്കുക. - + Cancel installation without changing the system. സിസ്റ്റത്തിന് മാറ്റമൊന്നും വരുത്താതെ ഇൻസ്റ്റളേഷൻ റദ്ദാക്കുക. - + Setup Failed സജ്ജീകരണപ്രക്രിയ പരാജയപ്പെട്ടു - + Would you like to paste the install log to the web? ഇൻസ്റ്റാൾ ലോഗ് വെബിലേക്ക് പകർത്തണോ? - + Install Log Paste URL ഇൻസ്റ്റാൾ ലോഗ് പകർപ്പിന്റെ വിലാസം - + The upload was unsuccessful. No web-paste was done. അപ്‌ലോഡ് പരാജയമായിരുന്നു. വെബിലേക്ക് പകർത്തിയില്ല. - + Calamares Initialization Failed കലാമാരേസ് സമാരംഭിക്കൽ പരാജയപ്പെട്ടു - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 ഇൻസ്റ്റാൾ ചെയ്യാൻ കഴിയില്ല. ക്രമീകരിച്ച എല്ലാ മൊഡ്യൂളുകളും ലോഡുചെയ്യാൻ കാലാമറെസിന് കഴിഞ്ഞില്ല. വിതരണത്തിൽ കാലാമറെസ് ഉപയോഗിക്കുന്ന രീതിയിലുള്ള ഒരു പ്രശ്നമാണിത്. - + <br/>The following modules could not be loaded: <br/>താഴെ പറയുന്ന മൊഡ്യൂളുകൾ ലഭ്യമാക്കാനായില്ല: - + Continue with installation? ഇൻസ്റ്റളേഷൻ തുടരണോ? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> %2 സജ്ജീകരിക്കുന്നതിന് %1 സജ്ജീകരണ പ്രോഗ്രാം നിങ്ങളുടെ ഡിസ്കിൽ മാറ്റങ്ങൾ വരുത്താൻ പോകുന്നു.<br/><strong>നിങ്ങൾക്ക് ഈ മാറ്റങ്ങൾ പഴയപടിയാക്കാൻ കഴിയില്ല</strong> - + &Set up now ഉടൻ സജ്ജീകരിക്കുക (&S) - + &Set up സജ്ജീകരിക്കുക (&S) - + &Install ഇൻസ്റ്റാൾ (&I) - + Setup is complete. Close the setup program. സജ്ജീകരണം പൂർത്തിയായി. പ്രയോഗം അടയ്ക്കുക. - + Cancel setup? സജ്ജീകരണം റദ്ദാക്കണോ? - + Cancel installation? ഇൻസ്റ്റളേഷൻ റദ്ദാക്കണോ? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. നിലവിലുള്ള സജ്ജീകരണപ്രക്രിയ റദ്ദാക്കണോ? സജ്ജീകരണപ്രയോഗം നിൽക്കുകയും എല്ലാ മാറ്റങ്ങളും നഷ്ടപ്പെടുകയും ചെയ്യും. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. നിലവിലുള്ള ഇൻസ്റ്റാൾ പ്രക്രിയ റദ്ദാക്കണോ? ഇൻസ്റ്റാളർ നിൽക്കുകയും എല്ലാ മാറ്റങ്ങളും നഷ്ടപ്പെടുകയും ചെയ്യും. - - + + &Yes വേണം (&Y) - - + + &No വേണ്ട (&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> %2 ഇൻസ്റ്റാളുചെയ്യുന്നതിന് %1 ഇൻസ്റ്റാളർ നിങ്ങളുടെ ഡിസ്കിൽ മാറ്റങ്ങൾ വരുത്താൻ പോകുന്നു.<br/><strong>നിങ്ങൾക്ക് ഈ മാറ്റങ്ങൾ പഴയപടിയാക്കാൻ കഴിയില്ല.</strong> - + &Install now ഉടൻ ഇൻസ്റ്റാൾ ചെയ്യുക (&I) - + Go &back പുറകോട്ടു പോകുക - + &Done ചെയ്‌തു - + The installation is complete. Close the installer. ഇൻസ്റ്റളേഷൻ പൂർത്തിയായി. ഇൻസ്റ്റാളർ അടയ്ക്കുക - + Error പിശക് - + Installation Failed ഇൻസ്റ്റളേഷൻ പരാജയപ്പെട്ടു @@ -429,22 +429,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type അജ്ഞാതമായ പിശക് - + unparseable Python error മനസ്സിലാക്കാനാവാത്ത പൈത്തൺ പിഴവ് - + unparseable Python traceback മനസ്സിലാക്കാനാവാത്ത പൈത്തൺ ട്രേസ്ബാക്ക് - + Unfetchable Python error. ലഭ്യമാക്കാനാവാത്ത പൈത്തൺ പിഴവ്. @@ -462,17 +462,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program %1 സജ്ജീകരണപ്രയോഗം - + %1 Installer %1 ഇൻസ്റ്റാളർ - + Show debug information ഡീബഗ് വിവരങ്ങൾ കാണിക്കുക @@ -480,7 +480,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... സിസ്റ്റത്തെക്കുറിച്ചുള്ള വിവരങ്ങൾ ശേഖരിക്കുന്നു... @@ -493,134 +493,134 @@ The installer will quit and all changes will be lost. ഫോം - + After: ശേഷം: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>സ്വമേധയാ ഉള്ള പാർട്ടീഷനിങ്</strong><br/>നിങ്ങൾക്ക് സ്വയം പാർട്ടീഷനുകൾ സൃഷ്ടിക്കാനോ വലുപ്പം മാറ്റാനോ കഴിയും. - + Boot loader location: ബൂട്ട് ലോഡറിന്റെ സ്ഥാനം: - + Select storage de&vice: സംഭരണിയ്ക്കുള്ള ഉപകരണം തിരഞ്ഞെടുക്കൂ: - - - - + + + + Current: നിലവിലുള്ളത്: - + Reuse %1 as home partition for %2. %2 നുള്ള ഹോം പാർട്ടീഷനായി %1 വീണ്ടും ഉപയോഗിക്കൂ. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>ചുരുക്കുന്നതിന് ഒരു പാർട്ടീഷൻ തിരഞ്ഞെടുക്കുക, എന്നിട്ട് വലുപ്പം മാറ്റാൻ ചുവടെയുള്ള ബാർ വലിക്കുക. - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 %2MiB ആയി ചുരുങ്ങുകയും %4 ന് ഒരു പുതിയ %3MiB പാർട്ടീഷൻ സൃഷ്ടിക്കുകയും ചെയ്യും. - + <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. ഈ സിസ്റ്റത്തിൽ എവിടെയും ഒരു ഇ.എഫ്.ഐ സിസ്റ്റം പാർട്ടീഷൻ കണ്ടെത്താനായില്ല. %1 സജ്ജീകരിക്കുന്നതിന് ദയവായി തിരികെ പോയി മാനുവൽ പാർട്ടീഷനിംഗ് ഉപയോഗിക്കുക. - + The EFI system partition at %1 will be used for starting %2. %1 ലെ ഇഎഫ്ഐ സിസ്റ്റം പാർട്ടീഷൻ %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. ഈ ഡറ്റോറേജ്‌ ഉപകരണത്തിൽ ഒരു ഓപ്പറേറ്റിംഗ് സിസ്റ്റം ഉണ്ടെന്ന് തോന്നുന്നില്ല. നിങ്ങൾ എന്താണ് ചെയ്യാൻ ആഗ്രഹിക്കുന്നത്?<br/>സ്റ്റോറേജ് ഉപകരണത്തിൽ എന്തെങ്കിലും മാറ്റം വരുത്തുന്നതിനുമുമ്പ് നിങ്ങൾക്ക് നിങ്ങളുടെ ചോയ്‌സുകൾ അവലോകനം ചെയ്യാനും സ്ഥിരീകരിക്കാനും കഴിയും.  - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>ഡിസ്ക് മായ്ക്കൂ</strong><br/>ഈ പ്രവൃത്തി തെരെഞ്ഞെടുത്ത സ്റ്റോറേജ് ഉപകരണത്തിലെ എല്ലാ ഡാറ്റയും <font color="red">മായ്‌ച്ച്കളയും</font>. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. ഈ സ്റ്റോറേജ് ഉപകരണത്തിൽ %1 ഉണ്ട്.നിങ്ങൾ എന്താണ് ചെയ്യാൻ ആഗ്രഹിക്കുന്നത്?<br/>സ്റ്റോറേജ് ഉപകരണത്തിൽ എന്തെങ്കിലും മാറ്റം വരുത്തുന്നതിനുമുമ്പ് നിങ്ങളുടെ ചോയ്‌സുകൾ അവലോകനം ചെയ്യാനും സ്ഥിരീകരിക്കാനും നിങ്ങൾക്ക് കഴിയും. - + No Swap സ്വാപ്പ് വേണ്ട - + Reuse Swap സ്വാപ്പ് വീണ്ടും ഉപയോഗിക്കൂ - + Swap (no Hibernate) സ്വാപ്പ് (ഹൈബർനേഷൻ ഇല്ല) - + Swap (with Hibernate) സ്വാപ്പ് (ഹൈബർനേഷനോട് കൂടി) - + Swap to file ഫയലിലേക്ക് സ്വാപ്പ് ചെയ്യുക - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>ഇതിനൊപ്പം ഇൻസ്റ്റാൾ ചെയ്യുക</strong><br/>%1 ന് ഇടം നൽകുന്നതിന് ഇൻസ്റ്റാളർ ഒരു പാർട്ടീഷൻ ചുരുക്കും. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>ഒരു പാർട്ടീഷൻ പുനഃസ്ഥാപിക്കുക</strong><br/>ഒരു പാർട്ടീഷന് %1 ഉപയോഗിച്ച് പുനഃസ്ഥാപിക്കുന്നു. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. ഈ സ്റ്റോറേജ് ഉപകരണത്തിൽ ഇതിനകം ഒരു ഓപ്പറേറ്റിംഗ് സിസ്റ്റം ഉണ്ട്. നിങ്ങൾ എന്താണ് ചെയ്യാൻ ആഗ്രഹിക്കുന്നത്?<br/>സ്റ്റോറേജ് ഉപകരണത്തിൽ എന്തെങ്കിലും മാറ്റം വരുത്തുന്നതിനുമുമ്പ് നിങ്ങൾക്ക് നിങ്ങളുടെ ചോയ്‌സുകൾ അവലോകനം ചെയ്യാനും സ്ഥിരീകരിക്കാനും കഴിയും.  - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. ഈ സ്റ്റോറേജ് ഉപകരണത്തിൽ ഒന്നിലധികം ഓപ്പറേറ്റിംഗ് സിസ്റ്റങ്ങളുണ്ട്. നിങ്ങൾ എന്താണ് ചെയ്യാൻ ആഗ്രഹിക്കുന്നത്?<br/>സ്റ്റോറേജ് ഉപകരണത്തിൽ എന്തെങ്കിലും മാറ്റം വരുത്തുന്നതിനുമുമ്പ് നിങ്ങൾക്ക് നിങ്ങളുടെ ചോയ്‌സുകൾ അവലോകനം ചെയ്യാനും സ്ഥിരീകരിക്കാനും കഴിയും.  @@ -628,17 +628,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 %1 ൽ പാർട്ടീഷനിങ്ങ് പ്രക്രിയകൾക്കായി മൗണ്ടുകൾ നീക്കം ചെയ്യുക - + Clearing mounts for partitioning operations on %1. %1 ൽ പാർട്ടീഷനിങ്ങ് പ്രക്രിയകൾക്കായി മൗണ്ടുകൾ നീക്കം ചെയ്യുന്നു. - + Cleared all mounts for %1 %1 നായുള്ള എല്ലാ മൗണ്ടുകളും നീക്കം ചെയ്തു @@ -685,10 +685,33 @@ The installer will quit and all changes will be lost. കമാൻഡിന് ഉപയോക്താവിന്റെ പേര് അറിയേണ്ടതുണ്ട്,എന്നാൽ ഉപയോക്തൃനാമമൊന്നും നിർവചിച്ചിട്ടില്ല. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>%1 -നായുള്ള കലാമാരേസ് സജ്ജീകരണപ്രക്രിയയിലേയ്ക്ക് സ്വാഗതം.</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>%1 സജ്ജീകരണത്തിലേക്ക് സ്വാഗതം.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>%1 -നായുള്ള കലാമാരേസ് ഇൻസ്റ്റാളറിലേക്ക് സ്വാഗതം.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>%1 ഇൻസ്റ്റാളറിലേക്ക് സ്വാഗതം</h1> + + ContextualProcessJob - + Contextual Processes Job സാന്ദർഭിക പ്രക്രിയകൾ ജോലി @@ -746,27 +769,27 @@ The installer will quit and all changes will be lost. വലുപ്പം (&z): - + En&crypt എൻക്രിപ്റ്റ് (&c) - + Logical ലോജിക്കൽ - + Primary പ്രാഥമികം - + GPT ജിപിറ്റി - + Mountpoint already in use. Please select another one. മൗണ്ട്പോയിന്റ് നിലവിൽ ഉപയോഗിക്കപ്പെട്ടിരിക്കുന്നു. ദയവായി മറ്റൊരെണ്ണം തിരഞ്ഞെടുക്കൂ. @@ -774,22 +797,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. ഫയൽ സിസ്റ്റം %1 ഉപയോഗിച്ച് %4 (%3) ൽ പുതിയ %2MiB പാർട്ടീഷൻ സൃഷ്ടിക്കുക. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. ഫയൽ സിസ്റ്റം <strong>%1</strong> ഉപയോഗിച്ച് <strong>%4</strong> (%3) ൽ പുതിയ <strong>%2MiB</strong> പാർട്ടീഷൻ സൃഷ്ടിക്കുക. - + Creating new %1 partition on %2. %2 ൽ പുതിയ %1 പാർട്ടീഷൻ സൃഷ്ടിക്കുന്നു. - + The installer failed to create partition on disk '%1'. '%1' ഡിസ്കിൽ പാർട്ടീഷൻ സൃഷ്ടിക്കുന്നതിൽ ഇൻസ്റ്റാളർ പരാജയപ്പെട്ടു. @@ -825,22 +848,22 @@ 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 ൽ പാർട്ടീഷൻ പട്ടിക സൃഷ്ടിക്കുന്നതിൽ ഇൻസ്റ്റാളർ പരാജയപ്പെട്ടു. @@ -992,13 +1015,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1111,7 +1134,7 @@ The installer will quit and all changes will be lost. രഹസ്യവാചകം സ്ഥിരീകരിക്കുക - + Please enter the same passphrase in both boxes. രണ്ട് പെട്ടികളിലും ഒരേ രഹസ്യവാചകം നല്‍കുക, @@ -1119,37 +1142,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>%2</strong> മൗണ്ട് പോയിന്റോട് കൂടി %3 പാർട്ടീഷൻ %1 സജ്ജീകരിക്കുക. - + Install boot loader on <strong>%1</strong>. <strong>%1-ൽ</strong> ബൂട്ട് ലോഡർ ഇൻസ്റ്റാൾ ചെയ്യുക. - + Setting up mount points. മൗണ്ട് പോയിന്റുകൾ സജ്ജീകരിക്കുക. @@ -1233,22 +1256,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. %4 -ലുള്ള പാർട്ടീഷൻ %1 (ഫയൽ സിസ്റ്റം: %2, വലുപ്പം:‌%3 MiB) ഫോർമാറ്റ് ചെയ്യുക. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. ഫയൽ സിസ്റ്റം <strong>%2</strong> ഉപയോഗിച്ച് %3 MiB പാർട്ടീഷൻ <strong>%1</strong> ഫോർമാറ്റ് ചെയ്യുക. - + Formatting partition %1 with file system %2. ഫയൽ സിസ്റ്റം %2 ഉപയോഗിച്ച് പാർട്ടീഷൻ‌%1 ഫോർമാറ്റ് ചെയ്യുന്നു. - + The installer failed to format partition %1 on disk '%2'. ഡിസ്ക് '%2'ൽ ഉള്ള പാർട്ടീഷൻ‌ %1 ഫോർമാറ്റ് ചെയ്യുന്നതിൽ ഇൻസ്റ്റാളർ പരാജയപ്പെട്ടു. @@ -1655,16 +1678,6 @@ 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) @@ -1676,7 +1689,7 @@ The installer will quit and all changes will be lost. നെറ്റ്‌വർക്ക് ഇൻസ്റ്റാളേഷൻ. (അപ്രാപ്‌തമാക്കി: അസാധുവായ ഗ്രൂപ്പുകളുടെ ഡാറ്റ ലഭിച്ചു) - + Network Installation. (Disabled: Incorrect configuration) നെറ്റ്‌വർക്ക് ഇൻസ്റ്റാളേഷൻ. (പ്രവർത്തനരഹിതമാക്കി: തെറ്റായ ക്രമീകരണം) @@ -2022,7 +2035,7 @@ The installer will quit and all changes will be lost. അപരിചിതമായ പിശക് - + Password is empty രഹസ്യവാക്ക് ശൂന്യമാണ് @@ -2068,6 +2081,19 @@ The installer will quit and all changes will be lost. പാക്കേജുകൾ + + PackageModel + + + Name + പേര് + + + + Description + വിവരണം + + Page_Keyboard @@ -2230,34 +2256,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space ലഭ്യമായ സ്ഥലം - - + + New partition പുതിയ പാർട്ടീഷൻ - + Name പേര് - + File System ഫയൽ സിസ്റ്റം - + Mount Point മൗണ്ട് പോയിന്റ് - + Size വലുപ്പം @@ -2325,17 +2351,17 @@ The installer will quit and all changes will be lost. ബൂട്ട്ലോഡർ ഇവിടെ ഇൻസ്റ്റാൾ ചെയ്യുക (&n): - + Are you sure you want to create a new partition table on %1? %1ൽ ഒരു പുതിയ പാർട്ടീഷൻ ടേബിൾ നിർമ്മിക്കണമെന്ന് താങ്കൾക്കുറപ്പാണോ? - + Can not create new partition പുതിയ പാർട്ടീഷൻ നിർമ്മിക്കാനായില്ല - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. %1 ലെ പാർട്ടീഷൻ പട്ടികയിൽ ഇതിനകം %2 പ്രാഥമിക പാർട്ടീഷനുകൾ ഉണ്ട്,ഇനി ഒന്നും ചേർക്കാൻ കഴിയില്ല. പകരം ഒരു പ്രാഥമിക പാർട്ടീഷൻ നീക്കംചെയ്‌ത് എക്സ്ടെൻഡഡ്‌ പാർട്ടീഷൻ ചേർക്കുക. @@ -2509,14 +2535,14 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. ആജ്ഞയിൽ നിന്നും ഔട്ട്പുട്ടൊന്നുമില്ല. - + Output: @@ -2525,52 +2551,52 @@ Output: - + External command crashed. ബാഹ്യമായ ആജ്ഞ തകർന്നു. - + Command <i>%1</i> crashed. ആജ്ഞ <i>%1</i> പ്രവർത്തനരഹിതമായി. - + External command failed to start. ബാഹ്യമായ ആജ്ഞ ആരംഭിക്കുന്നതിൽ പരാജയപ്പെട്ടു. - + Command <i>%1</i> failed to start. <i>%1</i>ആജ്ഞ ആരംഭിക്കുന്നതിൽ പരാജയപ്പെട്ടു. - + Internal error when starting command. ആജ്ഞ ആരംഭിക്കുന്നതിൽ ആന്തരികമായ പിഴവ്. - + Bad parameters for process job call. പ്രക്രിയ ജോലി വിളിയ്ക്ക് ശരിയല്ലാത്ത പരാമീറ്ററുകൾ. - + External command failed to finish. ബാഹ്യമായ ആജ്ഞ പൂർത്തിയാവുന്നതിൽ പരാജയപ്പെട്ടു. - + Command <i>%1</i> failed to finish in %2 seconds. ആജ്ഞ <i>%1</i> %2 സെക്കൻഡുകൾക്കുള്ളിൽ പൂർത്തിയാവുന്നതിൽ പരാജയപ്പെട്ടു. - + External command finished with errors. ബാഹ്യമായ ആജ്ഞ പിഴവുകളോട് കൂടീ പൂർത്തിയായി. - + Command <i>%1</i> finished with exit code %2. ആജ്ഞ <i>%1</i> എക്സിറ്റ് കോഡ് %2ഓട് കൂടി പൂർത്തിയായി. @@ -2589,22 +2615,22 @@ Output: സ്വതേയുള്ളത് - + unknown അജ്ഞാതം - + extended വിസ്തൃതമായത് - + unformatted ഫോർമാറ്റ് ചെയ്യപ്പെടാത്തത് - + swap സ്വാപ്പ് @@ -2658,6 +2684,14 @@ Output: റാൻഡം ഫയൽ <pre>%1</pre> നിർമ്മിക്കാനായില്ല. + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2685,140 +2719,152 @@ Output: ഫോം - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. %1 എവിടെ ഇൻസ്റ്റാൾ ചെയ്യണമെന്ന് തിരഞ്ഞെടുക്കുക.<br/><font color="red">മുന്നറിയിപ്പ്: </font> ഇത് തിരഞ്ഞെടുത്ത പാർട്ടീഷനിലെ എല്ലാ ഫയലുകളും നീക്കം ചെയ്യും. - + The selected item does not appear to be a valid partition. തിരഞ്ഞെടുക്കപ്പെട്ടത് സാധുവായ ഒരു പാർട്ടീഷനായി തോന്നുന്നില്ല. - + %1 cannot be installed on empty space. Please select an existing partition. %1 ഒരു ശൂന്യമായ സ്ഥലത്ത് ഇൻസ്റ്റാൾ ചെയ്യാൻ സാധിക്കില്ല. ദയവായി നിലവിലുള്ള ഒരു പാർട്ടീഷൻ തിരഞ്ഞെടുക്കൂ. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 ഒരു എക്സ്റ്റൻഡഡ് പാർട്ടീഷനിൽ ചെയ്യാൻ സാധിക്കില്ല. ദയവായി നിലവിലുള്ള ഒരു പ്രൈമറി അല്ലെങ്കിൽ ലോജിക്കൽ പാർട്ടീഷൻ തിരഞ്ഞെടുക്കൂ. - + %1 cannot be installed on this partition. %1 ഈ പാർട്ടീഷനിൽ ഇൻസ്റ്റാൾ ചെയ്യാൻ സാധിക്കില്ല. - + Data partition (%1) ഡാറ്റ പാർട്ടീഷൻ (%1) - + Unknown system partition (%1) അപരിചിതമായ സിസ്റ്റം പാർട്ടീഷൻ (%1) - + %1 system partition (%2) %1 സിസ്റ്റം പാർട്ടീഷൻ (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>പാർട്ടീഷൻ %1 %2ന് തീരെ ചെറുതാണ്. ദയവായി %3ജിബി എങ്കീലും ഇടമുള്ള ഒരു പാർട്ടീഷൻ തിരഞ്ഞെടുക്കൂ. - + <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/>ഈ സിസ്റ്റത്തിൽ എവിടേയും ഒരു ഇഎഫ്ഐ സിസ്റ്റം പർട്ടീഷൻ കണ്ടെത്താനായില്ല. %1 സജ്ജീകരിക്കുന്നതിന് ദയവായി തിരിച്ചുപോയി മാനുവൽ പാർട്ടീഷനിങ്ങ് ഉപയോഗിക്കുക. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 %2ൽ ഇൻസ്റ്റാൾ ചെയ്യപ്പെടും.<br/><font color="red">മുന്നറിയിപ്പ്:</font>പാർട്ടീഷൻ %2ൽ ഉള്ള എല്ലാ ഡാറ്റയും നഷ്ടപ്പെടും. - + The EFI system partition at %1 will be used for starting %2. %1 ലെ ഇഎഫ്ഐ സിസ്റ്റം പാർട്ടീഷൻ %2 ആരംഭിക്കുന്നതിന് ഉപയോഗിക്കും. - + EFI system partition: ഇഎഫ്ഐ സിസ്റ്റം പാർട്ടീഷൻ + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job ഫയൽ സിസ്റ്റത്തിന്റെ വലുപ്പം മാറ്റുന്ന ജോലി - + Invalid configuration അസാധുവായ ക്രമീകരണം - + The file-system resize job has an invalid configuration and will not run. ഫയൽ സിസ്റ്റം വലുപ്പം മാറ്റുന്ന ജോലിയിൽ അസാധുവായ ക്രമീകരണം ഉണ്ട്, അത് പ്രവർത്തിക്കില്ല. - - + KPMCore not Available KPMCore ലഭ്യമല്ല - - + Calamares cannot start KPMCore for the file-system resize job. ഫയൽ സിസ്റ്റം വലുപ്പം മാറ്റുന്നതിനുള്ള ജോലിക്കായി കാലാമറസിന് KPMCore ആരംഭിക്കാൻ കഴിയില്ല. - - - - - + + + + + Resize Failed വലുപ്പം മാറ്റുന്നത് പരാജയപ്പെട്ടു - + The filesystem %1 could not be found in this system, and cannot be resized. ഫയൽ സിസ്റ്റം %1 ഈ സിസ്റ്റത്തിൽ കണ്ടെത്താനായില്ല, അതിനാൽ അതിന്റെ വലുപ്പം മാറ്റാനാവില്ല. - + The device %1 could not be found in this system, and cannot be resized. ഉപകരണം %1 ഈ സിസ്റ്റത്തിൽ കണ്ടെത്താനായില്ല, അതിനാൽ അതിന്റെ വലുപ്പം മാറ്റാനാവില്ല. - - + + The filesystem %1 cannot be resized. %1 എന്ന ഫയൽസിസ്റ്റത്തിന്റെ വലുപ്പം മാറ്റാൻ കഴിയില്ല. - - + + The device %1 cannot be resized. %1 ഉപകരണത്തിന്റെ വലുപ്പം മാറ്റാൻ കഴിയില്ല. - + The filesystem %1 must be resized, but cannot. %1 എന്ന ഫയൽസിസ്റ്റത്തിന്റെ വലുപ്പം മാറ്റണം, പക്ഷേ കഴിയില്ല. - + The device %1 must be resized, but cannot %1 ഉപകരണത്തിന്റെ വലുപ്പം മാറ്റണം, പക്ഷേ കഴിയില്ല @@ -2876,12 +2922,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: മികച്ച ഫലങ്ങൾക്കായി ഈ കമ്പ്യൂട്ടർ താഴെപ്പറയുന്നവ നിറവേറ്റുന്നു എന്നുറപ്പുവരുത്തുക: - + System requirements സിസ്റ്റം ആവശ്യകതകൾ @@ -2889,27 +2935,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> %1 സജ്ജീകരിക്കുന്നതിനുള്ള ഏറ്റവും കുറഞ്ഞ ആവശ്യങ്ങൾ ഈ കമ്പ്യൂട്ടർ നിറവേറ്റുന്നില്ല.<br/>സജ്ജീകരണം തുടരാനാവില്ല. <a href="#details">വിവരങ്ങൾ...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> %1 ഇൻസ്റ്റാൾ ചെയ്യുന്നതിനുള്ള ഏറ്റവും കുറഞ്ഞ ആവശ്യങ്ങൾ ഈ കമ്പ്യൂട്ടർ നിറവേറ്റുന്നില്ല.<br/>ഇൻസ്റ്റളേഷൻ തുടരാനാവില്ല. <a href="#details">വിവരങ്ങൾ...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. %1 സജ്ജീകരിക്കുന്നതിനുള്ള ചില ആവശ്യങ്ങൾ ഈ കമ്പ്യൂട്ടർ നിറവേറ്റുന്നില്ല.<br/>സജ്ജീകരണം തുടരാം, പക്ഷേ ചില സവിശേഷതകൾ നിഷ്ക്രിയമായിരിക്കാം. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. %1 ഇൻസ്റ്റാൾ ചെയ്യാൻ ശുപാർശ ചെയ്യപ്പെട്ടിട്ടുള്ള ആവശ്യങ്ങൾ ഈ കമ്പ്യൂട്ടർ നിറവേറ്റുന്നില്ല.<br/>ഇൻസ്റ്റളേഷൻ തുടരാം, പക്ഷേ ചില സവിശേഷതകൾ നിഷ്ക്രിയമായിരിക്കാം. - + This program will ask you some questions and set up %2 on your computer. ഈ പ്രക്രിയ താങ്കളോട് ചില ചോദ്യങ്ങൾ ചോദിക്കുകയും %2 താങ്കളുടെ കമ്പ്യൂട്ടറിൽ സജ്ജീകരിക്കുകയും ചെയ്യും. @@ -2930,17 +2976,17 @@ Output: SetHostNameJob - + Set hostname %1 %1 ഹോസ്റ്റ്‌നെയിം ക്രമീകരിക്കുക - + Set hostname <strong>%1</strong>. <strong>%1</strong> ഹോസ്റ്റ്‌നെയിം ക്രമീകരിക്കുക. - + Setting hostname %1. %1 ഹോസ്റ്റ്‌നെയിം ക്രമീകരിക്കുന്നു. @@ -2990,82 +3036,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. പാർട്ടീഷൻ %1ൽ ഫ്ലാഗുകൾ ക്രമീകരിക്കുക. - + Set flags on %1MiB %2 partition. %1എംബി പാർട്ടീഷൻ %2ൽ ഫ്ലാഗുകൾ ക്രമീകരിക്കുക. - + Set flags on new partition. പുതിയ പാർട്ടീഷനിൽ ഫ്ലാഗുകൾ ക്രമീകരിക്കുക. - + Clear flags on partition <strong>%1</strong>. <strong>%1</strong> പാർട്ടീഷനിലെ ഫ്ലാഗുകൾ നീക്കം ചെയ്യുക. - + Clear flags on %1MiB <strong>%2</strong> partition. %1എംബി <strong>%2</strong> പാർട്ടീഷനിലെ ഫ്ലാഗുകൾ ക്രമീകരിക്കുക. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. %1MiB <strong>%2</strong> പാർട്ടീഷൻ <strong>%3</strong> ആയി ഫ്ലാഗ് ചെയ്യുക. - + Clearing flags on %1MiB <strong>%2</strong> partition. ഫ്ലാഗുകൾ %1MiB <strong>%2</strong> പാർട്ടീഷനിൽ നിർമ്മിക്കുന്നു. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. <strong>%3</strong> ഫ്ലാഗുകൾ %1MiB <strong>%2</strong> പാർട്ടീഷനിൽ ക്രമീകരിക്കുന്നു. - + Clear flags on new partition. പുതിയ പാർട്ടീഷനിലെ ഫ്ലാഗുകൾ മായ്ക്കുക. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. <strong>%1</strong> പാർട്ടീഷനെ <strong>%2</strong> ആയി ഫ്ലാഗ് ചെയ്യുക - + Flag new partition as <strong>%1</strong>. പുതിയ പാർട്ടീഷൻ <strong>%1 </strong>ആയി ഫ്ലാഗുചെയ്യുക. - + Clearing flags on partition <strong>%1</strong>. പാർട്ടീഷൻ <strong>%1</strong>ലെ ഫ്ലാഗുകൾ മായ്ക്കുന്നു. - + Clearing flags on new partition. പുതിയ പാർട്ടീഷനിലെ ഫ്ലാഗുകൾ മായ്ക്കുന്നു. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. <strong>%2</strong> ഫ്ലാഗുകൾ <strong>%1</strong> പാർട്ടീഷനിൽ ക്രമീകരിക്കുക. - + Setting flags <strong>%1</strong> on new partition. <strong>%1</strong> ഫ്ലാഗുകൾ പുതിയ പാർട്ടീഷനിൽ ക്രമീകരിക്കുക. - + The installer failed to set flags on partition %1. പാർട്ടീഷൻ %1ൽ ഫ്ലാഗുകൾ ക്രമീകരിക്കുന്നതിൽ ഇൻസ്റ്റാളർ പരാജയപ്പെട്ടു. @@ -3295,47 +3341,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>ഒന്നിലധികം ആളുകൾ ഈ കമ്പ്യൂട്ടർ ഉപയോഗിക്കുമെങ്കിൽ, താങ്കൾക്ക് സജ്ജീകരണത്തിന് ശേഷം നിരവധി അക്കൗണ്ടുകൾ സൃഷ്ടിക്കാം.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>ഒന്നിലധികം ആളുകൾ ഈ കമ്പ്യൂട്ടർ ഉപയോഗിക്കുമെങ്കിൽ, താങ്കൾക്ക് ഇൻസ്റ്റളേഷന് ശേഷം നിരവധി അക്കൗണ്ടുകൾ സൃഷ്ടിക്കാം.</small> - + Your username is too long. നിങ്ങളുടെ ഉപയോക്തൃനാമം വളരെ വലുതാണ്. - + Your username must start with a lowercase letter or underscore. താങ്കളുടെ ഉപയോക്തൃനാമം ഒരു ചെറിയ അക്ഷരമോ അണ്ടർസ്കോറോ ഉപയോഗിച്ച് വേണം തുടങ്ങാൻ. - + Only lowercase letters, numbers, underscore and hyphen are allowed. ചെറിയ അക്ഷരങ്ങൾ, അക്കങ്ങൾ, അണ്ടർസ്കോർ, ഹൈഫൺ എന്നിവയേ അനുവദിച്ചിട്ടുള്ളൂ. - + Only letters, numbers, underscore and hyphen are allowed. അക്ഷരങ്ങൾ, അക്കങ്ങൾ, അണ്ടർസ്കോർ, ഹൈഫൺ എന്നിവയേ അനുവദിച്ചിട്ടുള്ളൂ. - + Your hostname is too short. നിങ്ങളുടെ ഹോസ്റ്റ്നാമം വളരെ ചെറുതാണ് - + Your hostname is too long. നിങ്ങളുടെ ഹോസ്റ്റ്നാമം ദൈർഘ്യമേറിയതാണ് - + Your passwords do not match! നിങ്ങളുടെ പാസ്‌വേഡുകൾ പൊരുത്തപ്പെടുന്നില്ല! @@ -3473,42 +3519,42 @@ Output: വിവരം (&A) - + <h1>Welcome to the %1 installer.</h1> <h1>%1 ഇൻസ്റ്റാളറിലേക്ക് സ്വാഗതം</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>%1 -നായുള്ള കലാമാരേസ് ഇൻസ്റ്റാളറിലേക്ക് സ്വാഗതം.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>%1 -നായുള്ള കലാമാരേസ് സജ്ജീകരണപ്രക്രിയയിലേയ്ക്ക് സ്വാഗതം.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>%1 സജ്ജീകരണത്തിലേക്ക് സ്വാഗതം.</h1> - + About %1 setup %1 സജ്ജീകരണത്തെക്കുറിച്ച് - + About %1 installer %1 ഇൻസ്റ്റാളറിനെ കുറിച്ച് - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <h1>%1</h1><br/><strong>%2<br/>%3 ന്</strong><br/><br/>പകർപ്പവകാശം 2015-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>പകർപ്പവകാശം 2018-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/><a href="https://calamares.io/team/">കലാമരേസ് ടീമിനും</a><a href="https://www.transifex.com/calamares/calamares/">കലാമരേസ് പരിഭാഷാ ടീമിനും</a> നന്ദി.<br/><br/><a href="https://calamares.io/">കലാമരേസ്</a>വികസനം <br/><a href="http://www.blue-systems.com/">Blue Systems</a>- Liberating Software സ്പോൺസർ ചെയ്യുന്നതാണ്. - + %1 support %1 പിന്തുണ @@ -3516,7 +3562,7 @@ Output: WelcomeQmlViewStep - + Welcome സ്വാഗതം @@ -3524,7 +3570,7 @@ Output: WelcomeViewStep - + Welcome സ്വാഗതം @@ -3532,7 +3578,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_mr.ts b/lang/calamares_mr.ts index c04841659..2957e99c8 100644 --- a/lang/calamares_mr.ts +++ b/lang/calamares_mr.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 %1 च्या मुख्य आरंभ अभिलेखामधे - + Boot Partition आरंभक विभाजन @@ -42,7 +42,7 @@ आरंभ सूचक अधिष्ठापित करु नका - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done पूर्ण झाली @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. %1 क्रिया चालवला जातोय - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,173 +253,173 @@ Calamares::ViewManager - + &Back &मागे - + &Next &पुढे - + &Cancel &रद्द करा - + Cancel setup without changing the system. - + Cancel installation without changing the system. प्रणालीत बदल न करता अधिष्टापना रद्द करा. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? अधिष्ठापना रद्द करायचे? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. - - + + &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 अधिष्ठापना अयशस्वी झाली @@ -427,22 +427,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type - + unparseable Python error - + unparseable Python traceback - + Unfetchable Python error. @@ -459,17 +459,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program - + %1 Installer %1 अधिष्ठापक - + Show debug information दोषमार्जन माहिती दर्शवा @@ -477,7 +477,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... @@ -490,134 +490,134 @@ The installer will quit and all changes will be lost. स्वरुप - + After: नंतर : - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + Select storage de&vice: - - - - + + + + Current: सद्या : - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -625,17 +625,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 - + Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 @@ -682,10 +682,33 @@ The installer will quit and all changes will be lost. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>‌%1 साठी असलेल्या अधिष्ठापकमध्ये स्वागत आहे.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>‌%1 अधिष्ठापकमधे स्वागत आहे.</h1> + + ContextualProcessJob - + Contextual Processes Job @@ -743,27 +766,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical तार्किक - + Primary प्राथमिक - + GPT - + Mountpoint already in use. Please select another one. @@ -771,22 +794,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</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'. @@ -822,22 +845,22 @@ 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. @@ -989,13 +1012,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) - + %1 - (%2) device[name] - (device-node[name]) @@ -1108,7 +1131,7 @@ The installer will quit and all changes will be lost. - + Please enter the same passphrase in both boxes. @@ -1116,37 +1139,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. @@ -1230,22 +1253,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. - + The installer failed to format partition %1 on disk '%2'. @@ -1652,16 +1675,6 @@ 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) @@ -1673,7 +1686,7 @@ The installer will quit and all changes will be lost. - + Network Installation. (Disabled: Incorrect configuration) @@ -2019,7 +2032,7 @@ The installer will quit and all changes will be lost. - + Password is empty @@ -2065,6 +2078,19 @@ The installer will quit and all changes will be lost. + + PackageModel + + + Name + + + + + Description + + + Page_Keyboard @@ -2227,34 +2253,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space - - + + New partition - + Name - + File System - + Mount Point - + Size @@ -2322,17 +2348,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2506,65 +2532,65 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2583,22 +2609,22 @@ Output: - + unknown - + extended - + unformatted - + swap @@ -2652,6 +2678,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2679,140 +2713,152 @@ Output: स्वरुप - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. - + %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. - + Data partition (%1) - + Unknown system partition (%1) - + %1 system partition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2870,12 +2916,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: - + System requirements प्रणालीची आवशक्यता @@ -2883,27 +2929,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - + This program will ask you some questions and set up %2 on your computer. @@ -2924,17 +2970,17 @@ Output: SetHostNameJob - + Set hostname %1 - + Set hostname <strong>%1</strong>. - + Setting hostname %1. @@ -2984,82 +3030,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. @@ -3289,47 +3335,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. तुमचा वापरकर्तानाव खूप लांब आहे - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. तुमचा संगणकनाव खूप लहान आहे - + Your hostname is too long. तुमचा संगणकनाव खूप लांब आहे - + Your passwords do not match! तुमचा परवलीशब्द जुळत नाही @@ -3467,42 +3513,42 @@ Output: &विषयी - + <h1>Welcome to the %1 installer.</h1> <h1>‌%1 अधिष्ठापकमधे स्वागत आहे.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>‌%1 साठी असलेल्या अधिष्ठापकमध्ये स्वागत आहे.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer %1 अधिष्ठापक बद्दल - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 पाठबळ @@ -3510,7 +3556,7 @@ Output: WelcomeQmlViewStep - + Welcome स्वागत @@ -3518,7 +3564,7 @@ Output: WelcomeViewStep - + Welcome स्वागत @@ -3526,7 +3572,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_nb.ts b/lang/calamares_nb.ts index 87c7aec8d..e2a56029c 100644 --- a/lang/calamares_nb.ts +++ b/lang/calamares_nb.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Master Boot Record til %1 - + Boot Partition Bootpartisjon @@ -42,7 +42,7 @@ Ikke installer en oppstartslaster - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Ferdig @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. - + Bad working directory path Feil filsti til arbeidsmappe - + Working directory %1 for python job %2 is not readable. Arbeidsmappe %1 for python oppgave %2 er ikke lesbar. - + Bad main script file Ugyldig hovedskriptfil - + Main script file %1 for python job %2 is not readable. Hovedskriptfil %1 for python oppgave %2 er ikke lesbar. - + Boost.Python error in job "%1". Boost.Python feil i oppgave "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,174 +253,174 @@ Calamares::ViewManager - + &Back &Tilbake - + &Next &Neste - + &Cancel &Avbryt - + Cancel setup without changing the system. - + Cancel installation without changing the system. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? Avbryte installasjon? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Vil du virkelig avbryte installasjonen? Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. - - + + &Yes &Ja - - + + &No &Nei - + &Close &Lukk - + 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 &Ferdig - + The installation is complete. Close the installer. Installasjonen er fullført. Lukk installeringsprogrammet. - + Error Feil - + Installation Failed Installasjon feilet @@ -428,22 +428,22 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. CalamaresPython::Helper - + Unknown exception type Ukjent unntakstype - + unparseable Python error Ikke-kjørbar Python feil - + unparseable Python traceback Ikke-kjørbar Python tilbakesporing - + Unfetchable Python error. Ukjent Python feil. @@ -460,17 +460,17 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. CalamaresWindow - + %1 Setup Program - + %1 Installer %1 Installasjonsprogram - + Show debug information Vis feilrettingsinformasjon @@ -478,7 +478,7 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. CheckerContainer - + Gathering system information... @@ -491,134 +491,134 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.Form - + After: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Manuell partisjonering</strong><br/>Du kan opprette eller endre størrelse på partisjoner selv. - + Boot loader location: - + Select storage de&vice: - - - - + + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -626,17 +626,17 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. ClearMountsJob - + Clear mounts for partitioning operations on %1 - + Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 @@ -683,10 +683,33 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + + + ContextualProcessJob - + Contextual Processes Job @@ -744,27 +767,27 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.St&ørrelse: - + En&crypt - + Logical Logisk - + Primary Primær - + GPT GPT - + Mountpoint already in use. Please select another one. @@ -772,22 +795,22 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. @@ -823,22 +846,22 @@ 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. @@ -990,13 +1013,13 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) - + %1 - (%2) device[name] - (device-node[name]) @@ -1109,7 +1132,7 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. - + Please enter the same passphrase in both boxes. @@ -1117,37 +1140,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. @@ -1231,22 +1254,22 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. Formaterer partisjon %1 med filsystem %2. - + The installer failed to format partition %1 on disk '%2'. @@ -1653,16 +1676,6 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. NetInstallPage - - - Name - - - - - Description - - Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1674,7 +1687,7 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. - + Network Installation. (Disabled: Incorrect configuration) @@ -2020,7 +2033,7 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.Ukjent feil - + Password is empty @@ -2066,6 +2079,19 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. + + PackageModel + + + Name + + + + + Description + + + Page_Keyboard @@ -2228,34 +2254,34 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. PartitionModel - - + + Free Space - - + + New partition - + Name - + File System - + Mount Point - + Size @@ -2323,17 +2349,17 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2507,65 +2533,65 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. Ugyldige parametere for prosessens oppgavekall - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2584,22 +2610,22 @@ Output: Standard - + unknown - + extended - + unformatted - + swap @@ -2653,6 +2679,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2680,140 +2714,152 @@ Output: Form - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. - + %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. %1 kan ikke bli installert på denne partisjonen. - + Data partition (%1) - + Unknown system partition (%1) - + %1 system partition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2871,12 +2917,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: - + System requirements Systemkrav @@ -2884,27 +2930,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Denne datamaskinen oppfyller ikke minimumskravene for installering %1.<br/> Installeringen kan ikke fortsette. <a href="#details">Detaljer..</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - + This program will ask you some questions and set up %2 on your computer. @@ -2925,17 +2971,17 @@ Output: SetHostNameJob - + Set hostname %1 - + Set hostname <strong>%1</strong>. - + Setting hostname %1. @@ -2985,82 +3031,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. @@ -3290,47 +3336,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. Brukernavnet ditt er for langt. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your passwords do not match! @@ -3468,42 +3514,42 @@ Output: &Om - + <h1>Welcome to the %1 installer.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer - + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support @@ -3511,7 +3557,7 @@ Output: WelcomeQmlViewStep - + Welcome Velkommen @@ -3519,7 +3565,7 @@ Output: WelcomeViewStep - + Welcome Velkommen @@ -3527,7 +3573,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_ne_NP.ts b/lang/calamares_ne_NP.ts index aaa6b12b3..b27a3c44e 100644 --- a/lang/calamares_ne_NP.ts +++ b/lang/calamares_ne_NP.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 - + Boot Partition @@ -42,7 +42,7 @@ - + %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,173 +253,173 @@ Calamares::ViewManager - + &Back - + &Next - + &Cancel - + Cancel setup without changing the system. - + Cancel installation without changing the system. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. - - + + &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 @@ -427,22 +427,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type - + unparseable Python error - + unparseable Python traceback - + Unfetchable Python error. @@ -459,17 +459,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program - + %1 Installer - + Show debug information @@ -477,7 +477,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... @@ -490,134 +490,134 @@ The installer will quit and all changes will be lost. - + After: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + Select storage de&vice: - - - - + + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -625,17 +625,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 - + Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 @@ -682,10 +682,33 @@ The installer will quit and all changes will be lost. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + + + ContextualProcessJob - + Contextual Processes Job @@ -743,27 +766,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical - + Primary - + GPT - + Mountpoint already in use. Please select another one. @@ -771,22 +794,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. @@ -822,22 +845,22 @@ 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. @@ -989,13 +1012,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) - + %1 - (%2) device[name] - (device-node[name]) @@ -1108,7 +1131,7 @@ The installer will quit and all changes will be lost. - + Please enter the same passphrase in both boxes. @@ -1116,37 +1139,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. @@ -1230,22 +1253,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. - + The installer failed to format partition %1 on disk '%2'. @@ -1652,16 +1675,6 @@ 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) @@ -1673,7 +1686,7 @@ The installer will quit and all changes will be lost. - + Network Installation. (Disabled: Incorrect configuration) @@ -2019,7 +2032,7 @@ The installer will quit and all changes will be lost. - + Password is empty @@ -2065,6 +2078,19 @@ The installer will quit and all changes will be lost. + + PackageModel + + + Name + + + + + Description + + + Page_Keyboard @@ -2227,34 +2253,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space - - + + New partition - + Name - + File System - + Mount Point - + Size @@ -2322,17 +2348,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2506,65 +2532,65 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2583,22 +2609,22 @@ Output: - + unknown - + extended - + unformatted - + swap @@ -2652,6 +2678,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2679,140 +2713,152 @@ Output: - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. - + %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. - + Data partition (%1) - + Unknown system partition (%1) - + %1 system partition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2870,12 +2916,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: - + System requirements @@ -2883,27 +2929,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - + This program will ask you some questions and set up %2 on your computer. @@ -2924,17 +2970,17 @@ Output: SetHostNameJob - + Set hostname %1 - + Set hostname <strong>%1</strong>. - + Setting hostname %1. @@ -2984,82 +3030,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. @@ -3289,47 +3335,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your passwords do not match! @@ -3467,42 +3513,42 @@ Output: - + <h1>Welcome to the %1 installer.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer - + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support @@ -3510,7 +3556,7 @@ Output: WelcomeQmlViewStep - + Welcome @@ -3518,7 +3564,7 @@ Output: WelcomeViewStep - + Welcome @@ -3526,7 +3572,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_nl.ts b/lang/calamares_nl.ts index 6ced05850..acc25631b 100644 --- a/lang/calamares_nl.ts +++ b/lang/calamares_nl.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Master Boot Record van %1 - + Boot Partition Bootpartitie @@ -42,7 +42,7 @@ Geen bootloader installeren - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Gereed @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Bewerking %1 uitvoeren. - + Bad working directory path Ongeldig pad voor huidige map - + Working directory %1 for python job %2 is not readable. Werkmap %1 voor python taak %2 onleesbaar. - + Bad main script file Onjuist hoofdscriptbestand - + Main script file %1 for python job %2 is not readable. Hoofdscriptbestand %1 voor python taak %2 onleesbaar. - + Boost.Python error in job "%1". Boost.Python fout in taak "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,174 +253,174 @@ Calamares::ViewManager - + &Back &Terug - + &Next &Volgende - + &Cancel &Afbreken - + Cancel setup without changing the system. - + Cancel installation without changing the system. Installatie afbreken zonder aanpassingen aan het systeem. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed Calamares Initialisatie mislukt - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 kan niet worden geïnstalleerd. Calamares kon niet alle geconfigureerde modules laden. Dit is een probleem met hoe Calamares wordt gebruikt door de distributie. - + <br/>The following modules could not be loaded: <br/>The volgende modules konden niet worden geladen: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install &Installeer - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? Installatie afbreken? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Wil je het huidige installatieproces echt afbreken? Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. - - + + &Yes &ja - - + + &No &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 @@ -428,22 +428,22 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. CalamaresPython::Helper - + Unknown exception type Onbekend uitzonderingstype - + unparseable Python error onuitvoerbare Python fout - + unparseable Python traceback onuitvoerbare Python traceback - + Unfetchable Python error. Onbekende Python fout. @@ -460,17 +460,17 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. CalamaresWindow - + %1 Setup Program - + %1 Installer %1 Installatieprogramma - + Show debug information Toon debug informatie @@ -478,7 +478,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. CheckerContainer - + Gathering system information... Systeeminformatie verzamelen... @@ -491,134 +491,134 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Formulier - + After: Na: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Handmatig partitioneren</strong><br/>Je maakt of wijzigt zelf de partities. - + Boot loader location: Bootloader locatie: - + Select storage de&vice: Selecteer &opslagmedium: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> <strong>Selecteer een partitie om op te installeren</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Er werd geen EFI systeempartitie gevonden op dit systeem. Gelieve terug te gaan en manueel te partitioneren om %1 in te stellen. - + The EFI system partition at %1 will be used for starting %2. De EFI systeempartitie op %1 zal gebruikt worden om %2 te starten. - + EFI system partition: EFI systeempartitie: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Dit opslagmedium lijkt geen besturingssysteem te bevatten. Wat wil je doen?<br/>Je zal jouw keuzes kunnen nazien en bevestigen voordat er iets aan het opslagmedium wordt veranderd. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Wis schijf</strong><br/>Dit zal alle huidige gegevens op de geselecteerd opslagmedium <font color="red">verwijderen</font>. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Dit opslagmedium bevat %1. Wat wil je doen?<br/>Je zal jouw keuzes kunnen nazien en bevestigen voordat er iets aan het opslagmedium wordt veranderd. - + No Swap Geen wisselgeheugen - + Reuse Swap Wisselgeheugen hergebruiken - + Swap (no Hibernate) Wisselgeheugen (geen Sluimerstand) - + Swap (with Hibernate) Wisselgeheugen ( met Sluimerstand) - + Swap to file Wisselgeheugen naar bestand - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Installeer ernaast</strong><br/>Het installatieprogramma zal een partitie verkleinen om plaats te maken voor %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Vervang een partitie</strong><br/>Vervangt een partitie met %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Dit opslagmedium bevat reeds een besturingssysteem. Wat wil je doen?<br/>Je zal jouw keuzes kunnen nazien en bevestigen voordat er iets aan het opslagmedium wordt veranderd. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Dit opslagmedium bevat meerdere besturingssystemen. Wat wil je doen?<br/>Je zal jouw keuzes kunnen nazien en bevestigen voordat er iets aan het opslagmedium wordt veranderd. @@ -626,17 +626,17 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. ClearMountsJob - + Clear mounts for partitioning operations on %1 Geef aankoppelpunten vrij voor partitiebewerkingen op %1 - + Clearing mounts for partitioning operations on %1. Aankoppelpunten vrijgeven voor partitiebewerkingen op %1. - + Cleared all mounts for %1 Alle aankoppelpunten voor %1 zijn vrijgegeven @@ -683,10 +683,33 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. De opdracht moet de naam van de gebruiker weten, maar de gebruikersnaam is niet gedefinieerd. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Welkom in het Calamares installatieprogramma voor %1.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Welkom in het %1 installatieprogramma.</h1> + + ContextualProcessJob - + Contextual Processes Job Contextuele processen Taak @@ -744,27 +767,27 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. &Grootte: - + En&crypt &Versleutelen - + Logical Logisch - + Primary Primair - + GPT GPT - + Mountpoint already in use. Please select another one. Aankoppelpunt reeds in gebruik. Gelieve een andere te kiezen. @@ -772,22 +795,22 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <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'. @@ -823,22 +846,22 @@ 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. @@ -990,13 +1013,13 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1109,7 +1132,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Bevestig wachtwoordzin - + Please enter the same passphrase in both boxes. Gelieve in beide velden dezelfde wachtwoordzin in te vullen. @@ -1117,37 +1140,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. @@ -1231,22 +1254,22 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. Partitie %1 formatteren met bestandssysteem %2. - + The installer failed to format partition %1 on disk '%2'. Installatieprogramma heeft gefaald om partitie %1 op schijf %2 te formateren. @@ -1653,16 +1676,6 @@ 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) @@ -1674,7 +1687,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Netwerkinstallatie. (Uitgeschakeld: ongeldige gegevens over groepen) - + Network Installation. (Disabled: Incorrect configuration) @@ -2020,7 +2033,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Onbekende fout - + Password is empty @@ -2066,6 +2079,19 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. + + PackageModel + + + Name + Naam + + + + Description + Beschrijving + + Page_Keyboard @@ -2228,34 +2254,34 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. PartitionModel - - + + Free Space Vrije ruimte - - + + New partition Nieuwe partitie - + Name Naam - + File System Bestandssysteem - + Mount Point Aankoppelpunt - + Size Grootte @@ -2323,17 +2349,17 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. I&nstalleer bootloader op: - + Are you sure you want to create a new partition table on %1? Weet u zeker dat u een nieuwe partitie tabel wil maken op %1? - + Can not create new partition Kan de nieuwe partitie niet aanmaken - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. De partitietabel op %1 bevat al %2 primaire partities en er kunnen geen nieuwe worden aangemaakt. In plaats hiervan kan één primaire partitie verwijderen en een uitgebreide partitie toevoegen. @@ -2507,14 +2533,14 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. ProcessResult - + There was no output from the command. Er was geen uitvoer van de opdracht. - + Output: @@ -2523,52 +2549,52 @@ Uitvoer: - + External command crashed. Externe opdracht is vastgelopen. - + Command <i>%1</i> crashed. Opdracht <i>%1</i> is vastgelopen. - + External command failed to start. Externe opdracht kon niet worden gestart. - + Command <i>%1</i> failed to start. Opdracht <i>%1</i> kon niet worden gestart. - + Internal error when starting command. Interne fout bij het starten van de opdracht. - + Bad parameters for process job call. Onjuiste parameters voor procestaak - + External command failed to finish. Externe opdracht is niet correct beëindigd. - + Command <i>%1</i> failed to finish in %2 seconds. Opdracht <i>%1</i> is niet beëindigd in %2 seconden. - + External command finished with errors. Externe opdracht beëindigd met fouten. - + Command <i>%1</i> finished with exit code %2. Opdracht <i>%1</i> beëindigd met foutcode %2. @@ -2587,22 +2613,22 @@ Uitvoer: Standaard - + unknown onbekend - + extended uitgebreid - + unformatted niet-geformateerd - + swap wisselgeheugen @@ -2656,6 +2682,14 @@ Uitvoer: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2683,140 +2717,152 @@ Uitvoer: Formulier - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Kies waar %1 te installeren. <br/><font color="red">Opgelet: </font>dit zal alle bestanden op de geselecteerde partitie wissen. - + The selected item does not appear to be a valid partition. Het geselecteerde item is geen geldige partitie. - + %1 cannot be installed on empty space. Please select an existing partition. %1 kan niet worden geïnstalleerd op lege ruimte. Kies een bestaande partitie. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 kan niet op een uitgebreide partitie geïnstalleerd worden. Kies een bestaande primaire of logische partitie. - + %1 cannot be installed on this partition. %1 kan niet op deze partitie geïnstalleerd worden. - + Data partition (%1) Gegevenspartitie (%1) - + Unknown system partition (%1) Onbekende systeempartitie (%1) - + %1 system partition (%2) %1 systeempartitie (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>Partitie %1 is te klein voor %2. Gelieve een partitie te selecteren met een capaciteit van minstens %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/>Er werd geen EFI systeempartite gevonden op dit systeem. Gelieve terug te keren en manueel te partitioneren om %1 in te stellen. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 zal geïnstalleerd worden op %2.<br/><font color="red">Opgelet: </font>alle gegevens op partitie %2 zullen verloren gaan. - + 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: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job Bestandssysteem herschalen Taak - + Invalid configuration Ongeldige configuratie - + The file-system resize job has an invalid configuration and will not run. De bestandssysteem herschalen-taak heeft een ongeldige configuratie en zal niet uitgevoerd worden. - - + KPMCore not Available KPMCore niet beschikbaar - - + Calamares cannot start KPMCore for the file-system resize job. Calamares kan KPMCore niet starten voor de bestandssysteem-herschaaltaak. - - - - - + + + + + Resize Failed Herschalen mislukt - + The filesystem %1 could not be found in this system, and cannot be resized. Het bestandssysteem %1 kon niet gevonden worden op dit systeem en kan niet herschaald worden. - + The device %1 could not be found in this system, and cannot be resized. Het apparaat %1 kon niet gevonden worden op dit systeem en kan niet herschaald worden. - - + + The filesystem %1 cannot be resized. Het bestandssysteem %1 kan niet worden herschaald. - - + + The device %1 cannot be resized. Het apparaat %1 kan niet worden herschaald. - + The filesystem %1 must be resized, but cannot. Het bestandssysteem %1 moet worden herschaald, maar kan niet. - + The device %1 must be resized, but cannot Het apparaat %1 moet worden herschaald, maar kan niet. @@ -2874,12 +2920,12 @@ Uitvoer: ResultsListDialog - + For best results, please ensure that this computer: Voor de beste resultaten is het aangeraden dat deze computer: - + System requirements Systeemvereisten @@ -2887,27 +2933,27 @@ Uitvoer: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Deze computer voldoet niet aan de minimumvereisten om %1 te installeren.<br/>De installatie kan niet doorgaan. <a href="#details">Details...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Deze computer voldoet niet aan enkele van de aanbevolen specificaties om %1 te installeren.<br/>De installatie kan doorgaan, maar sommige functies kunnen uitgeschakeld zijn. - + This program will ask you some questions and set up %2 on your computer. Dit programma stelt je enkele vragen en installeert %2 op jouw computer. @@ -2928,17 +2974,17 @@ Uitvoer: SetHostNameJob - + Set hostname %1 Instellen hostnaam %1 - + Set hostname <strong>%1</strong>. Instellen hostnaam <strong>%1</strong> - + Setting hostname %1. Hostnaam %1 instellen. @@ -2988,82 +3034,82 @@ Uitvoer: SetPartFlagsJob - + Set flags on partition %1. Stel vlaggen in op partitie %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. Stel vlaggen in op nieuwe partitie. - + Clear flags on partition <strong>%1</strong>. Wis vlaggen op partitie <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. Wis vlaggen op nieuwe partitie. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Partitie <strong>%1</strong> als <strong>%2</strong> vlaggen. - + Flag new partition as <strong>%1</strong>. Vlag nieuwe partitie als <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Vlaggen op partitie <strong>%1</strong> wissen. - + Clearing flags on new partition. Vlaggen op nieuwe partitie wissen. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Vlaggen <strong>%2</strong> op partitie <strong>%1</strong> instellen. - + Setting flags <strong>%1</strong> on new partition. Vlaggen <strong>%1</strong> op nieuwe partitie instellen. - + The installer failed to set flags on partition %1. Het installatieprogramma kon geen vlaggen instellen op partitie %1. @@ -3293,47 +3339,47 @@ Uitvoer: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. De gebruikersnaam is te lang. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. De hostnaam is te kort. - + Your hostname is too long. De hostnaam is te lang. - + Your passwords do not match! Je wachtwoorden komen niet overeen! @@ -3471,42 +3517,42 @@ Uitvoer: &Over - + <h1>Welcome to the %1 installer.</h1> <h1>Welkom in het %1 installatieprogramma.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Welkom in het Calamares installatieprogramma voor %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer Over het %1 installatieprogramma - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 ondersteuning @@ -3514,7 +3560,7 @@ Uitvoer: WelcomeQmlViewStep - + Welcome Welkom @@ -3522,7 +3568,7 @@ Uitvoer: WelcomeViewStep - + Welcome Welkom @@ -3530,7 +3576,7 @@ Uitvoer: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_pl.ts b/lang/calamares_pl.ts index 1b6b69e46..955d868f2 100644 --- a/lang/calamares_pl.ts +++ b/lang/calamares_pl.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Master Boot Record %1 - + Boot Partition Partycja rozruchowa @@ -42,7 +42,7 @@ Nie instaluj programu rozruchowego - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Ukończono @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Wykonuję operację %1. - + Bad working directory path Niepoprawna ścieżka katalogu roboczego - + Working directory %1 for python job %2 is not readable. Katalog roboczy %1 dla zadań pythona %2 jest nieosiągalny. - + Bad main script file Niepoprawny główny plik skryptu - + Main script file %1 for python job %2 is not readable. Główny plik skryptu %1 dla zadań pythona %2 jest nieczytelny. - + Boost.Python error in job "%1". Wystąpił błąd Boost.Python w zadaniu "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -257,174 +257,174 @@ Calamares::ViewManager - + &Back &Wstecz - + &Next &Dalej - + &Cancel &Anuluj - + Cancel setup without changing the system. - + Cancel installation without changing the system. Anuluj instalację bez dokonywania zmian w systemie. - + Setup Failed - + Nieudane ustawianie - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed Błąd inicjacji programu Calamares - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 nie może zostać zainstalowany. Calamares nie mógł wczytać wszystkich skonfigurowanych modułów. Jest to problem ze sposobem, w jaki Calamares jest używany przez dystrybucję. - + <br/>The following modules could not be loaded: <br/>Następujące moduły nie mogły zostać wczytane: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install Za&instaluj - + Setup is complete. Close the setup program. - + Cancel setup? Anulować ustawianie? - + Cancel installation? Anulować instalację? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Czy na pewno chcesz anulować obecny proces instalacji? Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. - - + + &Yes &Tak - - + + &No &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 @@ -432,22 +432,22 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. CalamaresPython::Helper - + Unknown exception type Nieznany rodzaj wyjątku - + unparseable Python error nieparowalny błąd Pythona - + unparseable Python traceback nieparowalny traceback Pythona - + Unfetchable Python error. Nieosiągalny błąd Pythona. @@ -464,17 +464,17 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. CalamaresWindow - + %1 Setup Program - + %1 Installer Instalator %1 - + Show debug information Pokaż informacje debugowania @@ -482,7 +482,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. CheckerContainer - + Gathering system information... Zbieranie informacji o systemie... @@ -495,134 +495,134 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Formularz - + After: Po: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Ręczne partycjonowanie</strong><br/>Możesz samodzielnie utworzyć lub zmienić rozmiar istniejących partycji. - + Boot loader location: Położenie programu rozruchowego: - + Select storage de&vice: &Wybierz urządzenie przechowywania: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> <strong>Wybierz partycję, na której przeprowadzona będzie instalacja</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Nigdzie w tym systemie nie można odnaleźć partycji systemowej EFI. Prosimy się cofnąć i użyć ręcznego partycjonowania dysku do ustawienia %1. - + The EFI system partition at %1 will be used for starting %2. Partycja systemowa EFI na %1 będzie użyta do uruchamiania %2. - + EFI system partition: Partycja systemowa EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. To urządzenie pamięci masowej prawdopodobnie nie posiada żadnego systemu operacyjnego. Co chcesz zrobić?<br/>Będziesz miał możliwość przejrzenia oraz zatwierdzenia swoich ustawień przed wykonaniem jakichkolwiek zmian na tym urządzeniu. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Wyczyść dysk</strong><br/>Ta operacja <font color="red">usunie</font> wszystkie dane obecnie znajdujące się na wybranym urządzeniu przechowywania. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. To urządzenie pamięci masowej posiada %1. Co chcesz zrobić?<br/>Będziesz miał możliwość przejrzenia oraz zatwierdzenia swoich ustawień przed wykonaniem jakichkolwiek zmian na tym urządzeniu. - + No Swap Brak przestrzeni wymiany - + Reuse Swap Użyj ponownie przestrzeni wymiany - + Swap (no Hibernate) Przestrzeń wymiany (bez hibernacji) - + Swap (with Hibernate) Przestrzeń wymiany (z hibernacją) - + Swap to file Przestrzeń wymiany do pliku - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Zainstaluj obok siebie</strong><br/>Instalator zmniejszy partycję, aby zrobić miejsce dla %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Zastąp partycję</strong><br/>Zastępowanie partycji poprzez %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. To urządzenie pamięci masowej posiada już system operacyjny. Co chcesz zrobić?<br/>Będziesz miał możliwość przejrzenia oraz zatwierdzenia swoich ustawień przed wykonaniem jakichkolwiek zmian na tym urządzeniu. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. To urządzenie pamięci masowej posiada kilka systemów operacyjnych. Co chcesz zrobić?<br/>Będziesz miał możliwość przejrzenia oraz zatwierdzenia swoich ustawień przed wykonaniem jakichkolwiek zmian na tym urządzeniu. @@ -630,17 +630,17 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. ClearMountsJob - + Clear mounts for partitioning operations on %1 Wyczyść zamontowania dla operacji partycjonowania na %1 - + Clearing mounts for partitioning operations on %1. Czyszczenie montowań dla operacji partycjonowania na %1. - + Cleared all mounts for %1 Wyczyszczono wszystkie zamontowania dla %1 @@ -687,10 +687,33 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Polecenie musi znać nazwę użytkownika, ale żadna nazwa nie została jeszcze zdefiniowana. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + <h1>Witamy w ustawianiu %1.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Witamy w instalatorze Calamares dla systemu %1.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Witamy w instalatorze %1.</h1> + + ContextualProcessJob - + Contextual Processes Job Działania procesów kontekstualnych @@ -748,27 +771,27 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Ro&zmiar: - + En&crypt Zaszy%fruj - + Logical Logiczna - + Primary Podstawowa - + GPT GPT - + Mountpoint already in use. Please select another one. Punkt montowania jest już używany. Proszę wybrać inny. @@ -776,22 +799,22 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <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'. @@ -827,22 +850,22 @@ 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. @@ -994,16 +1017,16 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) - %1-(%2) + %1 - (%2) @@ -1113,7 +1136,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Potwierdź hasło - + Please enter the same passphrase in both boxes. Użyj tego samego hasła w obu polach. @@ -1121,37 +1144,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. @@ -1235,22 +1258,22 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. Formatowanie partycji %1 z systemem plików %2. - + The installer failed to format partition %1 on disk '%2'. Instalator nie mógł sformatować partycji %1 na dysku '%2'. @@ -1657,16 +1680,6 @@ 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) @@ -1678,7 +1691,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Instalacja sieciowa. (Niedostępna: Otrzymano nieprawidłowe dane grupowe) - + Network Installation. (Disabled: Incorrect configuration) @@ -2024,7 +2037,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Nieznany błąd - + Password is empty @@ -2070,6 +2083,19 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. + + PackageModel + + + Name + Nazwa + + + + Description + Opis + + Page_Keyboard @@ -2232,34 +2258,34 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. PartitionModel - - + + Free Space Wolna powierzchnia - - + + New partition Nowa partycja - + Name Nazwa - + File System System plików - + Mount Point Punkt montowania - + Size Rozmiar @@ -2327,17 +2353,17 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Zainstaluj program rozruchowy - + Are you sure you want to create a new partition table on %1? Czy na pewno chcesz utworzyć nową tablicę partycji na %1? - + Can not create new partition Nie można utworzyć nowej partycji - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Tablica partycji na %1 ma już %2 podstawowych partycji i więcej nie może już być dodanych. Prosimy o usunięcie jednej partycji systemowej i dodanie zamiast niej partycji rozszerzonej. @@ -2511,14 +2537,14 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. ProcessResult - + There was no output from the command. W wyniku polecenia nie ma żadnego rezultatu. - + Output: @@ -2527,52 +2553,52 @@ Wyjście: - + External command crashed. Zewnętrzne polecenie zakończone niepowodzeniem. - + Command <i>%1</i> crashed. Wykonanie polecenia <i>%1</i> nie powiodło się. - + External command failed to start. Nie udało się uruchomić zewnętrznego polecenia. - + Command <i>%1</i> failed to start. Polecenie <i>%1</i> nie zostało uruchomione. - + Internal error when starting command. Wystąpił wewnętrzny błąd podczas uruchamiania polecenia. - + Bad parameters for process job call. Błędne parametry wywołania zadania. - + External command failed to finish. Nie udało się ukończyć zewnętrznego polecenia. - + Command <i>%1</i> failed to finish in %2 seconds. Nie udało się ukończyć polecenia <i>%1</i> w ciągu %2 sekund. - + External command finished with errors. Ukończono zewnętrzne polecenie z błędami. - + Command <i>%1</i> finished with exit code %2. Polecenie <i>%1</i> zostało ukończone z błędem o kodzie %2. @@ -2591,22 +2617,22 @@ Wyjście: Domyślnie - + unknown nieznany - + extended rozszerzona - + unformatted niesformatowany - + swap przestrzeń wymiany @@ -2660,6 +2686,14 @@ Wyjście: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2687,141 +2721,153 @@ Wyjście: Formularz - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Wskaż gdzie zainstalować %1.<br/><font color="red">Uwaga: </font>na wybranej partycji zostaną usunięte wszystkie pliki. - + The selected item does not appear to be a valid partition. Wybrany element zdaje się nie być poprawną partycją. - + %1 cannot be installed on empty space. Please select an existing partition. Nie można zainstalować %1 na pustej przestrzeni. Prosimy wybrać istniejącą partycję. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. Nie można zainstalować %1 na rozszerzonej partycji. Prosimy wybrać istniejącą partycję podstawową lub logiczną. - + %1 cannot be installed on this partition. %1 nie może zostać zainstalowany na tej partycji. - + Data partition (%1) Partycja z danymi (%1) - + Unknown system partition (%1) Nieznana partycja systemowa (%1) - + %1 system partition (%2) %1 partycja systemowa (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>Partycja %1 jest zbyt mała dla %2. Prosimy wybrać partycję o pojemności przynajmniej %3 GB. - + <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/>Nigdzie w tym systemie nie można odnaleźć partycji systemowej EFI. Prosimy się cofnąć i użyć ręcznego partycjonowania dysku do ustawienia %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 zostanie zainstalowany na %2.<br/><font color="red">Uwaga: </font>wszystkie dane znajdujące się na partycji %2 zostaną utracone. - + 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: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job Zmień Rozmiar zadania systemu plików - + Invalid configuration Nieprawidłowa konfiguracja - + The file-system resize job has an invalid configuration and will not run. Zadanie zmiany rozmiaru systemu plików ma nieprawidłową konfigurację i nie uruchomi się - - + KPMCore not Available KPMCore nie dostępne - - + Calamares cannot start KPMCore for the file-system resize job. Calamares nie może uruchomić KPMCore dla zadania zmiany rozmiaru systemu plików - - - - - + + + + + Resize Failed Nieudana zmiana rozmiaru - + The filesystem %1 could not be found in this system, and cannot be resized. System plików %1 nie mógł być znaleziony w tym systemie i nie może być zmieniony rozmiar - + The device %1 could not be found in this system, and cannot be resized. Urządzenie %1 nie mogło być znalezione w tym systemie i zmiana rozmiaru jest nie dostępna - - + + The filesystem %1 cannot be resized. Zmiana rozmiaru w systemie plików %1 niedostępna - - + + The device %1 cannot be resized. Zmiana rozmiaru w urządzeniu %1 niedostępna - + The filesystem %1 must be resized, but cannot. Wymagana zmiana rozmiaru w systemie plików %1 , ale jest niedostępna - + The device %1 must be resized, but cannot Wymagana zmiana rozmiaru w urządzeniu %1 , ale jest niedostępna @@ -2879,12 +2925,12 @@ i nie uruchomi się ResultsListDialog - + For best results, please ensure that this computer: Dla osiągnięcia najlepszych rezultatów upewnij się, że ten komputer: - + System requirements Wymagania systemowe @@ -2892,27 +2938,27 @@ i nie uruchomi się ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Ten komputer nie spełnia minimalnych wymagań, niezbędnych do instalacji %1.<br/>Instalacja nie może być kontynuowana. <a href="#details">Szczegóły...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Ten komputer nie spełnia wszystkich, zalecanych do instalacji %1 wymagań.<br/>Instalacja może być kontynuowana, ale niektóre opcje mogą być niedostępne. - + This program will ask you some questions and set up %2 on your computer. Ten program zada Ci garść pytań i ustawi %2 na Twoim komputerze. @@ -2933,17 +2979,17 @@ i nie uruchomi się SetHostNameJob - + Set hostname %1 Ustaw nazwę komputera %1 - + Set hostname <strong>%1</strong>. Ustaw nazwę komputera <strong>%1</strong>. - + Setting hostname %1. Ustawianie nazwy komputera %1. @@ -2993,82 +3039,82 @@ i nie uruchomi się SetPartFlagsJob - + Set flags on partition %1. Ustaw flagi na partycji %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. Ustaw flagi na nowej partycji. - + Clear flags on partition <strong>%1</strong>. Usuń flagi na partycji <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. Wyczyść flagi na nowej partycji. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Oflaguj partycję <strong>%1</strong> jako <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Oflaguj nową partycję jako <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Usuwanie flag na partycji <strong>%1</strong>. - + Clearing flags on new partition. Czyszczenie flag na nowej partycji. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Ustawianie flag <strong>%2</strong> na partycji <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Ustawianie flag <strong>%1</strong> na nowej partycji. - + The installer failed to set flags on partition %1. Instalator nie mógł ustawić flag na partycji %1. @@ -3225,7 +3271,7 @@ i nie uruchomi się Configuring machine feedback. - Konfiguracja machine feedback + Konfiguracja mechanizmu informacji zwrotnej. @@ -3298,47 +3344,47 @@ i nie uruchomi się UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. Twoja nazwa użytkownika jest za długa. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + 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 passwords do not match! Twoje hasła nie są zgodne! @@ -3389,7 +3435,7 @@ i nie uruchomi się Physical Extent Size: - Rozmiar fizycznego rozszerzenia : + Rozmiar fizycznego rozszerzenia: @@ -3404,7 +3450,7 @@ i nie uruchomi się Used Size: - Użyty Rozmiar + Użyty rozmiar: @@ -3476,42 +3522,42 @@ i nie uruchomi się &Informacje - + <h1>Welcome to the %1 installer.</h1> <h1>Witamy w instalatorze %1.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Witamy w instalatorze Calamares dla systemu %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>Witamy w ustawianiu %1.</h1> - + About %1 setup - + About %1 installer O instalatorze %1 - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support Wsparcie %1 @@ -3519,7 +3565,7 @@ i nie uruchomi się WelcomeQmlViewStep - + Welcome Witamy @@ -3527,7 +3573,7 @@ i nie uruchomi się WelcomeViewStep - + Welcome Witamy @@ -3535,7 +3581,7 @@ i nie uruchomi się notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_pt_BR.ts b/lang/calamares_pt_BR.ts index 1036af59f..bc94be9f8 100644 --- a/lang/calamares_pt_BR.ts +++ b/lang/calamares_pt_BR.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Master Boot Record de %1 - + Boot Partition Partição de Boot @@ -42,7 +42,7 @@ Não instalar um gerenciador de inicialização - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Concluído @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Executando operação %1. - + Bad working directory path Caminho de diretório de trabalho ruim - + Working directory %1 for python job %2 is not readable. Diretório de trabalho %1 para a tarefa do python %2 não é legível. - + Bad main script file Arquivo de script principal ruim - + Main script file %1 for python job %2 is not readable. Arquivo de script principal %1 para a tarefa do python %2 não é legível. - + Boost.Python error in job "%1". Boost.Python erro na tarefa "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... Carregando ... - + QML Step <i>%1</i>. Passo QML <i>%1</i>. - + Loading failed. Carregamento falhou. @@ -253,175 +253,175 @@ Calamares::ViewManager - + &Back &Voltar - + &Next &Próximo - + &Cancel &Cancelar - + Cancel setup without changing the system. Cancelar configuração sem alterar o sistema. - + Cancel installation without changing the system. Cancelar instalação sem modificar o sistema. - + Setup Failed A Configuração Falhou - + Would you like to paste the install log to the web? Deseja colar o registro de instalação na web? - + Install Log Paste URL Colar URL de Registro de Instalação - + The upload was unsuccessful. No web-paste was done. Não foi possível fazer o upload. Nenhuma colagem foi feita na web. - + Calamares Initialization Failed Falha na inicialização do Calamares - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 não pôde ser instalado. O Calamares não conseguiu carregar todos os módulos configurados. Este é um problema com o modo em que o Calamares está sendo utilizado pela distribuição. - + <br/>The following modules could not be loaded: <br/>Os seguintes módulos não puderam ser carregados: - + Continue with installation? Continuar com a instalação? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> O programa de configuração %1 está prestes a fazer mudanças no seu disco de modo a configurar %2.<br/><strong>Você não será capaz de desfazer estas mudanças.</strong> - + &Set up now &Configurar agora - + &Set up &Configurar - + &Install &Instalar - + Setup is complete. Close the setup program. A configuração está completa. Feche o programa de configuração. - + Cancel setup? Cancelar a configuração? - + Cancel installation? Cancelar a instalação? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. Você realmente quer cancelar o processo atual de configuração? O programa de configuração será fechado e todas as mudanças serão perdidas. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Você deseja realmente cancelar a instalação atual? O instalador será fechado e todas as alterações serão perdidas. - - + + &Yes &Sim - - + + &No &Não - + &Close Fe&char - + 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 Concluí&do - + The installation is complete. Close the installer. A instalação está completa. Feche o instalador. - + Error Erro - + Installation Failed Falha na Instalação @@ -429,22 +429,22 @@ O instalador será fechado e todas as alterações serão perdidas. CalamaresPython::Helper - + Unknown exception type Tipo de exceção desconhecida - + unparseable Python error erro inanalisável do Python - + unparseable Python traceback rastreamento inanalisável do Python - + Unfetchable Python error. Erro inbuscável do Python. @@ -462,17 +462,17 @@ O instalador será fechado e todas as alterações serão perdidas. CalamaresWindow - + %1 Setup Program Programa de configuração %1 - + %1 Installer Instalador %1 - + Show debug information Exibir informações de depuração @@ -480,7 +480,7 @@ O instalador será fechado e todas as alterações serão perdidas. CheckerContainer - + Gathering system information... Coletando informações do sistema... @@ -493,134 +493,134 @@ O instalador será fechado e todas as alterações serão perdidas.Formulário - + After: Depois: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Particionamento manual</strong><br/>Você pode criar ou redimensionar partições. - + Boot loader location: Local do gerenciador de inicialização: - + Select storage de&vice: Selecione o dispositi&vo de armazenamento: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 será reduzida para %2MiB e uma nova partição de %3MiB será criada para %4. - + <strong>Select a partition to install on</strong> <strong>Selecione uma partição para instalação</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Uma partição de sistema EFI não pôde ser encontrada neste dispositivo. Por favor, volte e use o particionamento manual para gerenciar %1. - + The EFI system partition at %1 will be used for starting %2. A partição de sistema EFI em %1 será utilizada para iniciar %2. - + EFI system partition: Partição de sistema EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Parece que não há um sistema operacional neste dispositivo de armazenamento. O que você gostaria de fazer?<br/>Você poderá revisar e confirmar suas opções antes que as alterações sejam feitas no dispositivo de armazenamento. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Apagar disco</strong><br/>Isto <font color="red">excluirá</font> todos os dados no dispositivo de armazenamento selecionado. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de armazenamento possui %1 nele. O que você gostaria de fazer?<br/>Você poderá revisar e confirmar suas opções antes que as alterações sejam feitas no dispositivo de armazenamento. - + No Swap Sem swap - + Reuse Swap Reutilizar swap - + Swap (no Hibernate) Swap (sem hibernação) - + Swap (with Hibernate) Swap (com hibernação) - + Swap to file Swap em arquivo - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instalar lado a lado</strong><br/>O instalador reduzirá uma partição para liberar espaço para %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Substituir uma partição</strong><br/>Substitui uma partição com %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Já há um sistema operacional neste dispositivo de armazenamento. O que você gostaria de fazer?<br/>Você poderá revisar e confirmar suas opções antes que as alterações sejam feitas no dispositivo de armazenamento. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Há diversos sistemas operacionais neste dispositivo de armazenamento. O que você gostaria de fazer?<br/>Você poderá revisar e confirmar suas opções antes que as alterações sejam feitas no dispositivo de armazenamento. @@ -628,17 +628,17 @@ O instalador será fechado e todas as alterações serão perdidas. ClearMountsJob - + Clear mounts for partitioning operations on %1 Limpar as montagens para as operações nas partições em %1 - + Clearing mounts for partitioning operations on %1. Limpando montagens para operações de particionamento em %1. - + Cleared all mounts for %1 Todos os pontos de montagem para %1 foram limpos @@ -685,10 +685,33 @@ O instalador será fechado e todas as alterações serão perdidas.O comando precisa saber do nome do usuário, mas nenhum nome de usuário foi definido. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>Bem-vindo ao programa de configuração Calamares para %1.</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>Bem-vindo à configuração de %1</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Bem-vindo ao instalador Calamares para %1.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Bem-vindo ao instalador %1 .</h1> + + ContextualProcessJob - + Contextual Processes Job Tarefa de Processos Contextuais @@ -746,27 +769,27 @@ O instalador será fechado e todas as alterações serão perdidas.&Tamanho: - + En&crypt &Criptografar - + Logical Lógica - + Primary Primária - + GPT GPT - + Mountpoint already in use. Please select another one. Ponto de montagem já em uso. Por favor, selecione outro. @@ -774,22 +797,22 @@ O instalador será fechado e todas as alterações serão perdidas. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. Criar nova partição de %2MiB em %4 (%3) com o sistema de arquivos %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Criar nova partição de <strong>%2MiB</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'. @@ -825,22 +848,22 @@ O instalador será fechado e todas as alterações serão perdidas. 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. @@ -992,13 +1015,13 @@ O instalador será fechado e todas as alterações serão perdidas. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1111,7 +1134,7 @@ O instalador será fechado e todas as alterações serão perdidas.Confirme a frase-chave - + Please enter the same passphrase in both boxes. Por favor, insira a mesma frase-chave nos dois campos. @@ -1119,37 +1142,37 @@ O instalador será fechado e todas as alterações serão perdidas. 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 na 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. @@ -1233,22 +1256,22 @@ O instalador será fechado e todas as alterações serão perdidas. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. Formatar partição %1 (sistema de arquivos: %2, tamanho: %3 MiB) em %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. Formatar partição de <strong>%3MiB</strong> <strong>%1</strong> com o sistema de arquivos <strong>%2</strong>. - + Formatting partition %1 with file system %2. Formatando partição %1 com o sistema de arquivos %2. - + The installer failed to format partition %1 on disk '%2'. O instalador falhou em formatar a partição %1 no disco '%2'. @@ -1655,16 +1678,6 @@ O instalador será fechado 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) @@ -1676,7 +1689,7 @@ O instalador será fechado e todas as alterações serão perdidas.Instalação pela Rede. (Desabilitado: Recebidos dados de grupos inválidos) - + Network Installation. (Disabled: Incorrect configuration) Instalação via Rede. (Desabilitada: Configuração incorreta) @@ -2022,7 +2035,7 @@ O instalador será fechado e todas as alterações serão perdidas.Erro desconhecido - + Password is empty A senha está em branco @@ -2068,6 +2081,19 @@ O instalador será fechado e todas as alterações serão perdidas.Pacotes + + PackageModel + + + Name + Nome + + + + Description + Descrição + + Page_Keyboard @@ -2230,34 +2256,34 @@ O instalador será fechado e todas as alterações serão perdidas. PartitionModel - - + + Free Space Espaço livre - - + + New partition Nova partição - + Name Nome - + File System Sistema de arquivos - + Mount Point Ponto de montagem - + Size Tamanho @@ -2325,17 +2351,17 @@ O instalador será fechado e todas as alterações serão perdidas.I&nstalar gerenciador de inicialização em: - + Are you sure you want to create a new partition table on %1? Você tem certeza de que deseja criar uma nova tabela de partições em %1? - + Can not create new partition Não foi possível criar uma nova partição - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. A tabela de partições %1 já tem %2 partições primárias, e nenhuma a mais pode ser adicionada. Por favor, remova uma partição primária e adicione uma partição estendida no lugar. @@ -2509,14 +2535,14 @@ O instalador será fechado e todas as alterações serão perdidas. ProcessResult - + There was no output from the command. Não houve saída do comando. - + Output: @@ -2525,52 +2551,52 @@ Saída: - + External command crashed. O comando externo falhou. - + Command <i>%1</i> crashed. O comando <i>%1</i> falhou. - + External command failed to start. O comando externo falhou ao iniciar. - + Command <i>%1</i> failed to start. O comando <i>%1</i> falhou ao iniciar. - + Internal error when starting command. Erro interno ao iniciar o comando. - + Bad parameters for process job call. Parâmetros ruins para a chamada da tarefa do processo. - + External command failed to finish. O comando externo falhou ao finalizar. - + Command <i>%1</i> failed to finish in %2 seconds. O comando <i>%1</i> falhou ao finalizar em %2 segundos. - + External command finished with errors. O comando externo foi concluído com erros. - + Command <i>%1</i> finished with exit code %2. O comando <i>%1</i> foi concluído com o código %2. @@ -2589,22 +2615,22 @@ Saída: Padrão - + unknown desconhecido - + extended estendida - + unformatted não formatado - + swap swap @@ -2658,6 +2684,14 @@ Saída: Não foi possível criar um novo arquivo aleatório <pre>%1</pre>. + + RemoveUserJob + + + Remove live user from target system + Remover usuário live do sistema de destino + + RemoveVolumeGroupJob @@ -2685,140 +2719,152 @@ Saída: Formulário - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Selecione onde instalar %1.<br/><font color="red">Atenção:</font> isto excluirá todos os arquivos existentes na partição selecionada. - + The selected item does not appear to be a valid partition. O item selecionado não parece ser uma partição válida. - + %1 cannot be installed on empty space. Please select an existing partition. %1 não pode ser instalado no espaço vazio. Por favor, selecione uma partição existente. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 não pode ser instalado em uma partição estendida. Por favor, selecione uma partição primária ou lógica existente. - + %1 cannot be installed on this partition. %1 não pode ser instalado nesta partição. - + Data partition (%1) Partição de dados (%1) - + Unknown system partition (%1) Partição de sistema desconhecida (%1) - + %1 system partition (%2) Partição de sistema %1 (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>A partição %1 é muito pequena para %2. Por favor, selecione uma partição com capacidade mínima de %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/>Não foi encontrada uma partição de sistema EFI no sistema. Por favor, volte e use o particionamento manual para configurar %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 será instalado em %2.<br/><font color="red">Atenção: </font>todos os dados da partição %2 serão perdidos. - + The EFI system partition at %1 will be used for starting %2. A partição do sistema EFI em %1 será utilizada para iniciar %2. - + EFI system partition: Partição do sistema EFI: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job Redimensionar Tarefa de Sistema de Arquivos - + Invalid configuration Configuração inválida - + The file-system resize job has an invalid configuration and will not run. A tarefa de redimensionamento do sistema de arquivos tem uma configuração inválida e não poderá ser executada. - - + KPMCore not Available O KPMCore não está disponível - - + Calamares cannot start KPMCore for the file-system resize job. O Calamares não pôde iniciar o KPMCore para a tarefa de redimensionamento do sistema de arquivos. - - - - - + + + + + Resize Failed O Redimensionamento Falhou - + The filesystem %1 could not be found in this system, and cannot be resized. O sistema de arquivos %1 não pôde ser encontrado neste sistema e não poderá ser redimensionado. - + The device %1 could not be found in this system, and cannot be resized. O dispositivo %1 não pôde ser encontrado neste sistema e não poderá ser redimensionado. - - + + The filesystem %1 cannot be resized. O sistema de arquivos %1 não pode ser redimensionado. - - + + The device %1 cannot be resized. O dispositivo %1 não pode ser redimensionado. - + The filesystem %1 must be resized, but cannot. O sistema de arquivos %1 deve ser redimensionado, mas não foi possível executar a tarefa. - + The device %1 must be resized, but cannot O dispositivo %1 deve ser redimensionado, mas não foi possível executar a tarefa. @@ -2876,12 +2922,12 @@ Saída: ResultsListDialog - + For best results, please ensure that this computer: Para melhores resultados, por favor, certifique-se de que este computador: - + System requirements Requisitos do sistema @@ -2889,27 +2935,27 @@ Saída: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> Este computador não satisfaz os requerimentos mínimos para configurar %1.<br/>A configuração não pode continuar. <a href="#details">Detalhes...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Este computador não satisfaz os requisitos mínimos para instalar %1.<br/>A instalação não pode continuar. <a href="#details">Detalhes...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. Este computador não satisfaz alguns dos requerimentos recomendados para configurar %1.<br/>A configuração pode continuar, mas algumas funções podem ser desativadas. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Este computador não satisfaz alguns dos requisitos recomendados para instalar %1.<br/>A instalação pode continuar, mas alguns recursos podem ser desativados. - + This program will ask you some questions and set up %2 on your computer. Este programa irá fazer-lhe algumas perguntas e configurar %2 no computador. @@ -2930,17 +2976,17 @@ Saída: SetHostNameJob - + Set hostname %1 Definir nome da máquina %1 - + Set hostname <strong>%1</strong>. Definir nome da máquina <strong>%1</strong>. - + Setting hostname %1. Definindo nome da máquina %1. @@ -2990,82 +3036,82 @@ Saída: SetPartFlagsJob - + Set flags on partition %1. Definir marcadores na partição %1. - + Set flags on %1MiB %2 partition. Definir marcadores na partição de %1MiB %2. - + Set flags on new partition. Definir marcadores na nova partição. - + Clear flags on partition <strong>%1</strong>. Limpar marcadores na partição <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. Limpar marcadores na partição de %1MiB <strong>%2</strong>. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. Marcar partição de %1MiB <strong>%2</strong> como <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. Limpando marcadores na partição de %1MiB <strong>%2</strong>. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. Definindo marcadores <strong>%3</strong> na partição de %1MiB <strong>%2</strong>. - + Clear flags on new partition. Limpar marcadores na nova partição. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Marcar partição <strong>%1</strong> como <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Marcar nova partição como <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Limpando marcadores na partição <strong>%1</strong>. - + Clearing flags on new partition. Limpando marcadores na nova partição. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Definindo marcadores <strong>%2</strong> na partição <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Definindo marcadores <strong>%1</strong> na nova partição. - + The installer failed to set flags on partition %1. O instalador falhou em definir marcadores na partição %1. @@ -3295,47 +3341,47 @@ Saída: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>Se mais de uma pessoa for utilizar este computador, você poderá criar múltiplas contas após terminar a configuração.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>Se mais de uma pessoa for utilizar este computador, você poderá criar múltiplas contas após terminar de instalar.</small> - + Your username is too long. O nome de usuário é grande demais. - + Your username must start with a lowercase letter or underscore. Seu nome de usuário deve começar com uma letra maiúscula ou com um sublinhado. - + Only lowercase letters, numbers, underscore and hyphen are allowed. É permitido apenas letras minúsculas, números, sublinhado e hífen. - + Only letters, numbers, underscore and hyphen are allowed. É permitido apenas letras, números, sublinhado e hífen. - + 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 passwords do not match! As senhas não estão iguais! @@ -3473,42 +3519,42 @@ Saída: &Sobre - + <h1>Welcome to the %1 installer.</h1> <h1>Bem-vindo ao instalador %1 .</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Bem-vindo ao instalador Calamares para %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>Bem-vindo ao programa de configuração Calamares para %1.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>Bem-vindo à configuração de %1</h1> - + About %1 setup Sobre a configuração de %1 - + About %1 installer Sobre o instalador %1 - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <h1>%1</h1><br/><strong>%2<br/>para %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Obrigado ao <a href="https://calamares.io/team/">time Calamares</a> e ao <a href="https://www.transifex.com/calamares/calamares/">time de tradutores do Calamares</a>.<br/><br/>O desenvolvimento do <a href="https://calamares.io/">Calamares</a> é patrocinado pela <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 suporte @@ -3516,7 +3562,7 @@ Saída: WelcomeQmlViewStep - + Welcome Bem-vindo @@ -3524,7 +3570,7 @@ Saída: WelcomeViewStep - + Welcome Bem-vindo @@ -3532,7 +3578,7 @@ Saída: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> <h3>%1</h3> diff --git a/lang/calamares_pt_PT.ts b/lang/calamares_pt_PT.ts index 47c952240..6f0bd891f 100644 --- a/lang/calamares_pt_PT.ts +++ b/lang/calamares_pt_PT.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Master Boot Record de %1 - + Boot Partition Partição de arranque @@ -42,7 +42,7 @@ Não instalar um carregador de arranque - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Concluído @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Operação %1 em execução. - + Bad working directory path Caminho do directório de trabalho errado - + Working directory %1 for python job %2 is not readable. Directório de trabalho %1 para a tarefa python %2 não é legível. - + Bad main script file Ficheiro de script principal errado - + Main script file %1 for python job %2 is not readable. Ficheiro de script principal %1 para a tarefa python %2 não é legível. - + Boost.Python error in job "%1". Erro Boost.Python na tarefa "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,175 +253,175 @@ Calamares::ViewManager - + &Back &Voltar - + &Next &Próximo - + &Cancel &Cancelar - + Cancel setup without changing the system. Cancelar instalação sem alterar o sistema. - + Cancel installation without changing the system. Cancelar instalar instalação sem modificar o sistema. - + Setup Failed Falha de Instalação - + Would you like to paste the install log to the web? Deseja colar o registo de instalação na Web? - + Install Log Paste URL Instalar o URL da pasta de registo - + The upload was unsuccessful. No web-paste was done. O carregamento não teve êxito. Nenhuma pasta da web foi feita. - + Calamares Initialization Failed Falha na Inicialização do Calamares - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 não pode ser instalado. O Calamares não foi capaz de carregar todos os módulos configurados. Isto é um problema da maneira como o Calamares é usado pela distribuição. - + <br/>The following modules could not be loaded: <br/>Os módulos seguintes não puderam ser carregados: - + Continue with installation? Continuar com a instalação? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> O programa de instalação %1 está prestes a fazer alterações no seu disco para configurar o %2.<br/><strong>Você não poderá desfazer essas alterações.</strong> - + &Set up now &Instalar agora - + &Set up &Instalar - + &Install &Instalar - + Setup is complete. Close the setup program. Instalação completa. Feche o programa de instalação. - + Cancel setup? Cancelar instalação? - + Cancel installation? Cancelar a instalação? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. Quer mesmo cancelar o processo de instalação atual? O programa de instalação irá fechar todas as alterações serão perdidas. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Tem a certeza que pretende cancelar o atual processo de instalação? O instalador será encerrado e todas as alterações serão perdidas. - - + + &Yes &Sim - - + + &No &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 @@ -429,22 +429,22 @@ O instalador será encerrado e todas as alterações serão perdidas. CalamaresPython::Helper - + Unknown exception type Tipo de exceção desconhecido - + unparseable Python error erro inanalisável do Python - + unparseable Python traceback rasto inanalisável do Python - + Unfetchable Python error. Erro inatingível do Python. @@ -462,17 +462,17 @@ O instalador será encerrado e todas as alterações serão perdidas. CalamaresWindow - + %1 Setup Program %1 Programa de Instalação - + %1 Installer %1 Instalador - + Show debug information Mostrar informação de depuração @@ -480,7 +480,7 @@ O instalador será encerrado e todas as alterações serão perdidas. CheckerContainer - + Gathering system information... A recolher informação de sistema... @@ -493,134 +493,134 @@ O instalador será encerrado e todas as alterações serão perdidas.Formulário - + After: Depois: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Particionamento manual</strong><br/>Pode criar ou redimensionar partições manualmente. - + Boot loader location: Localização do carregador de arranque: - + Select storage de&vice: Selecione o dis&positivo de armazenamento: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> <strong>Selecione uma partição para instalar</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Nenhuma partição de sistema EFI foi encontrada neste sistema. Por favor volte atrás e use o particionamento manual para configurar %1. - + The EFI system partition at %1 will be used for starting %2. A partição de sistema EFI em %1 será usada para iniciar %2. - + EFI system partition: Partição de sistema EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de armazenamento aparenta não ter um sistema operativo. O que quer fazer?<br/>Poderá rever e confirmar as suas escolhas antes de qualquer alteração ser feita no dispositivo de armazenamento. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Apagar disco</strong><br/>Isto irá <font color="red">apagar</font> todos os dados atualmente apresentados no dispositivo de armazenamento selecionado. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de armazenamento tem %1 nele. O que quer fazer?<br/>Poderá rever e confirmar as suas escolhas antes de qualquer alteração ser feita no dispositivo de armazenamento. - + No Swap Sem Swap - + Reuse Swap Reutilizar Swap - + Swap (no Hibernate) Swap (sem Hibernação) - + Swap (with Hibernate) Swap (com Hibernação) - + Swap to file Swap para ficheiro - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instalar paralelamente</strong><br/>O instalador irá encolher a partição para arranjar espaço para %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Substituir a partição</strong><br/>Substitui a partição com %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de armazenamento já tem um sistema operativo nele. O que quer fazer?<br/>Poderá rever e confirmar as suas escolhas antes de qualquer alteração ser feita no dispositivo de armazenamento. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Este dispositivo de armazenamento tem múltiplos sistemas operativos nele, O que quer fazer?<br/>Poderá rever e confirmar as suas escolhas antes de qualquer alteração ser feita no dispositivo de armazenamento. @@ -628,17 +628,17 @@ O instalador será encerrado e todas as alterações serão perdidas. ClearMountsJob - + Clear mounts for partitioning operations on %1 Limpar montagens para operações de particionamento em %1 - + Clearing mounts for partitioning operations on %1. A limpar montagens para operações de particionamento em %1. - + Cleared all mounts for %1 Limpar todas as montagens para %1 @@ -685,10 +685,33 @@ O instalador será encerrado e todas as alterações serão perdidas.O comando precisa de saber o nome do utilizador, mas não está definido nenhum nome de utilizador. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>Bem vindo ao programa de instalação Calamares para %1.</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>Bem vindo à instalação de %1.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Bem vindo ao instalador Calamares para %1.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Bem vindo ao instalador do %1.</h1> + + ContextualProcessJob - + Contextual Processes Job Tarefa de Processos Contextuais @@ -746,27 +769,27 @@ O instalador será encerrado e todas as alterações serão perdidas.Ta&manho: - + En&crypt En&criptar - + Logical Lógica - + Primary Primária - + GPT GPT - + Mountpoint already in use. Please select another one. Ponto de montagem já em uso. Por favor selecione outro. @@ -774,22 +797,22 @@ O instalador será encerrado e todas as alterações serão perdidas. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <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'. @@ -825,22 +848,22 @@ 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. @@ -992,13 +1015,13 @@ O instalador será encerrado e todas as alterações serão perdidas. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1111,7 +1134,7 @@ O instalador será encerrado e todas as alterações serão perdidas.Confirmar frase-chave - + Please enter the same passphrase in both boxes. Por favor insira a mesma frase-passe em ambas as caixas. @@ -1119,37 +1142,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. @@ -1233,22 +1256,22 @@ O instalador será encerrado e todas as alterações serão perdidas. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. A formatar partição %1 com sistema de ficheiros %2. - + The installer failed to format partition %1 on disk '%2'. O instalador falhou ao formatar a partição %1 no disco '%2'. @@ -1655,16 +1678,6 @@ 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) @@ -1676,7 +1689,7 @@ O instalador será encerrado e todas as alterações serão perdidas.Instalação de Rede. (Desativada: Recebeu dados de grupos inválidos) - + Network Installation. (Disabled: Incorrect configuration) @@ -2022,7 +2035,7 @@ O instalador será encerrado e todas as alterações serão perdidas.Erro desconhecido - + Password is empty @@ -2068,6 +2081,19 @@ O instalador será encerrado e todas as alterações serão perdidas.Pacotes + + PackageModel + + + Name + Nome + + + + Description + Descrição + + Page_Keyboard @@ -2230,34 +2256,34 @@ O instalador será encerrado e todas as alterações serão perdidas. PartitionModel - - + + Free Space Espaço Livre - - + + New partition Nova partição - + Name Nome - + File System Sistema de Ficheiros - + Mount Point Ponto de Montagem - + Size Tamanho @@ -2325,17 +2351,17 @@ O instalador será encerrado e todas as alterações serão perdidas.I&nstalar carregador de arranque em: - + Are you sure you want to create a new partition table on %1? Tem certeza de que deseja criar uma nova tabela de partições em %1? - + Can not create new partition Não é possível criar nova partição - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. A tabela de partições em %1 já tem %2 partições primárias, e não podem ser adicionadas mais. Em vez disso, por favor remova uma partição primária e adicione uma partição estendida. @@ -2509,14 +2535,14 @@ O instalador será encerrado e todas as alterações serão perdidas. ProcessResult - + There was no output from the command. O comando não produziu saída de dados. - + Output: @@ -2525,52 +2551,52 @@ Saída de Dados: - + External command crashed. O comando externo "crashou". - + Command <i>%1</i> crashed. Comando <i>%1</i> "crashou". - + External command failed to start. Comando externo falhou ao iniciar. - + Command <i>%1</i> failed to start. Comando <i>%1</i> falhou a inicialização. - + Internal error when starting command. Erro interno ao iniciar comando. - + Bad parameters for process job call. Maus parâmetros para chamada de processamento de tarefa. - + External command failed to finish. Comando externo falhou a finalização. - + Command <i>%1</i> failed to finish in %2 seconds. Comando <i>%1</i> falhou ao finalizar em %2 segundos. - + External command finished with errors. Comando externo finalizou com erros. - + Command <i>%1</i> finished with exit code %2. Comando <i>%1</i> finalizou com código de saída %2. @@ -2589,22 +2615,22 @@ Saída de Dados: Padrão - + unknown desconhecido - + extended estendido - + unformatted não formatado - + swap swap @@ -2658,6 +2684,14 @@ Saída de Dados: + + RemoveUserJob + + + Remove live user from target system + Remover utilizador ativo do sistema de destino + + RemoveVolumeGroupJob @@ -2685,140 +2719,152 @@ Saída de Dados: Formulário - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Selecione onde instalar %1.<br/><font color="red">Aviso: </font>isto irá apagar todos os ficheiros na partição selecionada. - + The selected item does not appear to be a valid partition. O item selecionado não aparenta ser uma partição válida. - + %1 cannot be installed on empty space. Please select an existing partition. %1 não pode ser instalado no espaço vazio. Por favor selecione uma partição existente. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 não pode ser instalado numa partição estendida. Por favor selecione uma partição primária ou partição lógica. - + %1 cannot be installed on this partition. %1 não pode ser instalado nesta partição. - + Data partition (%1) Partição de dados (%1) - + Unknown system partition (%1) Partição de sistema desconhecida (%1) - + %1 system partition (%2) %1 partição de sistema (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>A partição %1 é demasiado pequena para %2. Por favor selecione uma partição com pelo menos %3 GiB de capacidade. - + <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/>Uma partição de sistema EFI não pode ser encontrada em nenhum sítio neste sistema. Por favor volte atrás e use o particionamento manual para instalar %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 será instalado na %2.<br/><font color="red">Aviso: </font>todos os dados na partição %2 serão perdidos. - + 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: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job Tarefa de Redimensionamento do Sistema de Ficheiros - + Invalid configuration Configuração inválida - + The file-system resize job has an invalid configuration and will not run. A tarefa de redimensionamento do sistema de ficheiros tem uma configuração inválida e não irá ser corrida. - - + KPMCore not Available KPMCore não Disponível - - + Calamares cannot start KPMCore for the file-system resize job. O Calamares não consegue iniciar KPMCore para a tarefa de redimensionamento de sistema de ficheiros. - - - - - + + + + + Resize Failed Redimensionamento Falhou - + The filesystem %1 could not be found in this system, and cannot be resized. O sistema de ficheiros %1 não foi encontrado neste sistema, e não pode ser redimensionado. - + The device %1 could not be found in this system, and cannot be resized. O dispositivo %1 não pode ser encontrado neste sistema, e não pode ser redimensionado. - - + + The filesystem %1 cannot be resized. O sistema de ficheiros %1 não pode ser redimensionado. - - + + The device %1 cannot be resized. O dispositivo %1 não pode ser redimensionado. - + The filesystem %1 must be resized, but cannot. O sistema de ficheiros %1 tem de ser redimensionado, mas não pode. - + The device %1 must be resized, but cannot O dispositivo %1 tem de ser redimensionado, mas não pode @@ -2876,12 +2922,12 @@ Saída de Dados: ResultsListDialog - + For best results, please ensure that this computer: Para melhores resultados, por favor certifique-se que este computador: - + System requirements Requisitos de sistema @@ -2889,27 +2935,27 @@ Saída de Dados: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Este computador não satisfaz os requisitos mínimos para instalar %1.<br/>A instalação não pode continuar. <a href="#details">Detalhes...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Este computador não satisfaz alguns dos requisitos recomendados para instalar %1.<br/>A instalação pode continuar, mas algumas funcionalidades poderão ser desativadas. - + This program will ask you some questions and set up %2 on your computer. Este programa vai fazer-lhe algumas perguntas e configurar o %2 no seu computador. @@ -2930,17 +2976,17 @@ Saída de Dados: SetHostNameJob - + Set hostname %1 Configurar nome da máquina %1 - + Set hostname <strong>%1</strong>. Definir nome da máquina <strong>%1</strong>. - + Setting hostname %1. A definir nome da máquina %1. @@ -2990,82 +3036,82 @@ Saída de Dados: SetPartFlagsJob - + Set flags on partition %1. Definir flags na partição %1. - + Set flags on %1MiB %2 partition. Definir flags na partição %1MiB %2. - + Set flags on new partition. Definir flags na nova partição. - + Clear flags on partition <strong>%1</strong>. Limpar flags na partitição <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. Limpar flags na nova partição. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Definir flag da partição <strong>%1</strong> como <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Nova partição com flag <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. A limpar flags na partição <strong>%1</strong>. - + Clearing flags on new partition. A limpar flags na nova partição. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. A definir flags <strong>%2</strong> na partitição <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. A definir flags <strong>%1</strong> na nova partição. - + The installer failed to set flags on partition %1. O instalador falhou ao definir flags na partição %1. @@ -3295,47 +3341,47 @@ Saída de Dados: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>Se mais de uma pessoa usar este computador, você pode criar várias contas após a configuração.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>Se mais de uma pessoa usar este computador, você pode criar várias contas após a instalação.</small> - + Your username is too long. O seu nome de utilizador é demasiado longo. - + Your username must start with a lowercase letter or underscore. O seu nome de utilizador deve começar com uma letra minúscula ou underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. Apenas letras minúsculas, números, underscore e hífen são permitidos. - + Only letters, numbers, underscore and hyphen are allowed. Apenas letras, números, underscore e hífen 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 passwords do not match! As suas palavras-passe não coincidem! @@ -3473,42 +3519,42 @@ Saída de Dados: &Acerca - + <h1>Welcome to the %1 installer.</h1> <h1>Bem vindo ao instalador do %1.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Bem vindo ao instalador Calamares para %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>Bem vindo ao programa de instalação Calamares para %1.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>Bem vindo à instalação de %1.</h1> - + About %1 setup Sobre a instalação de %1 - + About %1 installer Acerca %1 instalador - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <h1>%1</h1><br/><strong>%2<br/>para %3</strong><br/><br/>Direitos de Cópia 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Direitos de Cópia 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Agradecimentos à <a href="https://calamares.io/team/">Equipa Calamares</a> e à<a href="https://www.transifex.com/calamares/calamares/">Equipa de tradutores do Calamares</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> desenvolvido e patrocinado por <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 suporte @@ -3516,7 +3562,7 @@ Saída de Dados: WelcomeQmlViewStep - + Welcome Bem-vindo @@ -3524,7 +3570,7 @@ Saída de Dados: WelcomeViewStep - + Welcome Bem-vindo @@ -3532,7 +3578,7 @@ Saída de Dados: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_ro.ts b/lang/calamares_ro.ts index 32aadae02..64ef1e9a0 100644 --- a/lang/calamares_ro.ts +++ b/lang/calamares_ro.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Master boot record (MBR) al %1 - + Boot Partition Partiție de boot @@ -42,7 +42,7 @@ Nu instala un bootloader - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Gata @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Se rulează operațiunea %1. - + Bad working directory path Calea dosarului de lucru este proastă - + Working directory %1 for python job %2 is not readable. Dosarul de lucru %1 pentru sarcina python %2 nu este citibil. - + Bad main script file Fișierul script principal este prost - + Main script file %1 for python job %2 is not readable. Fișierul script peincipal %1 pentru sarcina Python %2 nu este citibil. - + Boost.Python error in job "%1". Eroare Boost.Python în sarcina „%1”. @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -255,174 +255,174 @@ Calamares::ViewManager - + &Back &Înapoi - + &Next &Următorul - + &Cancel &Anulează - + Cancel setup without changing the system. - + Cancel installation without changing the system. Anulează instalarea fără schimbarea sistemului. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install Instalează - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? Anulez instalarea? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Doriți să anulați procesul curent de instalare? Programul de instalare va ieși, iar toate modificările vor fi pierdute. - - + + &Yes &Da - - + + &No &Nu - + &Close În&chide - + 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 &Gata - + The installation is complete. Close the installer. Instalarea este completă. Închide instalatorul. - + Error Eroare - + Installation Failed Instalare eșuată @@ -430,22 +430,22 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. CalamaresPython::Helper - + Unknown exception type Tip de excepție necunoscut - + unparseable Python error Eroare Python neanalizabilă - + unparseable Python traceback Traceback Python neanalizabil - + Unfetchable Python error. Eroare Python nepreluabilă @@ -462,17 +462,17 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. CalamaresWindow - + %1 Setup Program - + %1 Installer Program de instalare %1 - + Show debug information Arată informația de depanare @@ -480,7 +480,7 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. CheckerContainer - + Gathering system information... Se adună informații despre sistem... @@ -493,134 +493,134 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.Formular - + After: După: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Partiționare manuală</strong><br/>Puteți crea sau redimensiona partițiile. - + Boot loader location: Locație boot loader: - + Select storage de&vice: Selectează dispoziti&vul de stocare: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> <strong>Selectează o partiție pe care să se instaleze</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. O partiție de sistem EFI nu poate fi găsită nicăieri în acest sistem. Vă rugăm să reveniți și să partiționați manual pentru a seta %1. - + The EFI system partition at %1 will be used for starting %2. Partiția de sistem EFI de la %1 va fi folosită pentru a porni %2. - + EFI system partition: Partiție de sistem EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Acest dispozitiv de stocare nu pare să aibă un sistem de operare instalat. Ce doriți să faceți?<br/>Veți putea revedea și confirma alegerile făcute înainte să fie realizate schimbări pe dispozitivul de stocare. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Șterge discul</strong><br/>Aceasta va <font color="red">șterge</font> toate datele prezente pe dispozitivul de stocare selectat. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Acest dispozitiv de stocare are %1. Ce doriți să faceți?<br/>Veți putea revedea și confirma alegerile făcute înainte să fie realizate schimbări pe dispozitivul de stocare. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instalează laolaltă</strong><br/>Instalatorul va micșora o partiție pentru a face loc pentru %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Înlocuiește o partiție</strong><br/>Înlocuiește o partiție cu %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Acest dispozitiv de stocare are deja un sistem de operare instalat. Ce doriți să faceți?<br/>Veți putea revedea și confirma alegerile făcute înainte de se realiza schimbări pe dispozitivul de stocare. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Acest dispozitiv de stocare are mai multe sisteme de operare instalate. Ce doriți să faceți?<br/>Veți putea revedea și confirma alegerile făcute înainte de a se realiza schimbări pe dispozitivul de stocare. @@ -628,17 +628,17 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. ClearMountsJob - + Clear mounts for partitioning operations on %1 Eliminați montările pentru operațiunea de partiționare pe %1 - + Clearing mounts for partitioning operations on %1. Se elimină montările pentru operațiunile de partiționare pe %1. - + Cleared all mounts for %1 S-au eliminat toate punctele de montare pentru %1 @@ -685,10 +685,33 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Bun venit în programul de instalare Calamares pentru %1.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Bine ați venit la programul de instalare pentru %1.</h1> + + ContextualProcessJob - + Contextual Processes Job Job de tip Contextual Process @@ -746,27 +769,27 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.Mă&rime: - + En&crypt &Criptează - + Logical Logică - + Primary Primară - + GPT GPT - + Mountpoint already in use. Please select another one. Punct de montare existent. Vă rugăm alegeţi altul. @@ -774,22 +797,22 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <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”. @@ -825,22 +848,22 @@ 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. @@ -992,13 +1015,13 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) @@ -1111,7 +1134,7 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.Confirmă fraza secretă - + Please enter the same passphrase in both boxes. Introduceți aceeași frază secretă în ambele căsuțe. @@ -1119,37 +1142,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. @@ -1233,22 +1256,22 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. Se formatează partiția %1 cu sistemul de fișiere %2. - + The installer failed to format partition %1 on disk '%2'. Programul de instalare nu a putut formata partiția %1 pe discul „%2”. @@ -1655,16 +1678,6 @@ 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) @@ -1676,7 +1689,7 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.Instalare prin rețea. (Dezactivată: S-au recepționat grupuri de date invalide) - + Network Installation. (Disabled: Incorrect configuration) @@ -2025,7 +2038,7 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.Eroare necunoscuta - + Password is empty @@ -2071,6 +2084,19 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. + + PackageModel + + + Name + Nume + + + + Description + Despre + + Page_Keyboard @@ -2233,34 +2259,34 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. PartitionModel - - + + Free Space Spațiu liber - - + + New partition Partiție nouă - + Name Nume - + File System Sistem de fișiere - + Mount Point Punct de montare - + Size Mărime @@ -2328,17 +2354,17 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. - + Are you sure you want to create a new partition table on %1? Sigur doriți să creați o nouă tabelă de partiție pe %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2512,14 +2538,14 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. ProcessResult - + There was no output from the command. Nu a existat nici o iesire din comanda - + Output: @@ -2528,52 +2554,52 @@ Output - + External command crashed. Comanda externă a eșuat. - + Command <i>%1</i> crashed. Comanda <i>%1</i> a eșuat. - + External command failed to start. Comanda externă nu a putut fi pornită. - + Command <i>%1</i> failed to start. Comanda <i>%1</i> nu a putut fi pornită. - + Internal error when starting command. Eroare internă la pornirea comenzii. - + Bad parameters for process job call. Parametri proști pentru apelul sarcinii de proces. - + External command failed to finish. Finalizarea comenzii externe a eșuat. - + Command <i>%1</i> failed to finish in %2 seconds. Comanda <i>%1</i> nu a putut fi finalizată în %2 secunde. - + External command finished with errors. Comanda externă finalizată cu erori. - + Command <i>%1</i> finished with exit code %2. Comanda <i>%1</i> finalizată cu codul de ieșire %2. @@ -2592,22 +2618,22 @@ Output Implicit - + unknown necunoscut - + extended extins - + unformatted neformatat - + swap swap @@ -2661,6 +2687,14 @@ Output + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2688,140 +2722,152 @@ Output Formular - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Selectați locul în care să instalați %1.<br/><font color="red">Atenție: </font>aceasta va șterge toate fișierele de pe partiția selectată. - + The selected item does not appear to be a valid partition. Elementul selectat nu pare a fi o partiție validă. - + %1 cannot be installed on empty space. Please select an existing partition. %1 nu poate fi instalat în spațiul liber. Vă rugăm să alegeți o partiție existentă. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 nu poate fi instalat pe o partiție extinsă. Vă rugăm selectați o partiție primară existentă sau o partiție logică. - + %1 cannot be installed on this partition. %1 nu poate fi instalat pe această partiție. - + Data partition (%1) Partiție de date (%1) - + Unknown system partition (%1) Partiție de sistem necunoscută (%1) - + %1 system partition (%2) %1 partiție de sistem (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>Partiția %1 este prea mică pentru %2. Vă rugăm selectați o partiție cu o capacitate de cel puțin %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/>O partiție de sistem EFI nu a putut fi găsită nicăieri pe sistem. Vă rugăm să reveniți și să utilizați partiționarea manuală pentru a seta %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 va fi instalat pe %2.<br/><font color="red">Atenție: </font>toate datele de pe partiția %2 se vor pierde. - + 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: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2879,12 +2925,12 @@ Output ResultsListDialog - + For best results, please ensure that this computer: Pentru rezultate optime, asigurați-vă că acest calculator: - + System requirements Cerințe de sistem @@ -2892,27 +2938,27 @@ Output ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Acest calculator nu satisface cerințele minimale pentru instalarea %1.<br/>Instalarea nu poate continua. <a href="#details">Detalii...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Acest calculator nu satisface unele din cerințele recomandate pentru instalarea %1.<br/>Instalarea poate continua, dar unele funcții ar putea fi dezactivate. - + This program will ask you some questions and set up %2 on your computer. Acest program vă va pune mai multe întrebări și va seta %2 pe calculatorul dumneavoastră. @@ -2933,17 +2979,17 @@ Output SetHostNameJob - + Set hostname %1 Setează hostname %1 - + Set hostname <strong>%1</strong>. Setați un hostname <strong>%1</strong>. - + Setting hostname %1. Se setează hostname %1. @@ -2993,82 +3039,82 @@ Output SetPartFlagsJob - + Set flags on partition %1. Setează flag-uri pentru partiția %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. Setează flagurile pe noua partiție. - + Clear flags on partition <strong>%1</strong>. Șterge flag-urile partiției <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. Elimină flagurile pentru noua partiție. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Marchează partiția <strong>%1</strong> cu flag-ul <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Marchează noua partiție ca <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Se șterg flag-urile pentru partiția <strong>%1</strong>. - + Clearing flags on new partition. Se elimină flagurile de pe noua partiție. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Se setează flag-urile <strong>%2</strong> pentru partiția <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Se setează flagurile <strong>%1</strong> pe noua partiție. - + The installer failed to set flags on partition %1. Programul de instalare a eșuat în setarea flag-urilor pentru partiția %1. @@ -3298,47 +3344,47 @@ Output UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. Numele de utilizator este prea lung. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. Hostname este prea scurt. - + Your hostname is too long. Hostname este prea lung. - + Your passwords do not match! Parolele nu se potrivesc! @@ -3476,42 +3522,42 @@ Output &Despre - + <h1>Welcome to the %1 installer.</h1> <h1>Bine ați venit la programul de instalare pentru %1.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Bun venit în programul de instalare Calamares pentru %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer Despre programul de instalare %1 - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 suport @@ -3519,7 +3565,7 @@ Output WelcomeQmlViewStep - + Welcome Bine ați venit @@ -3527,7 +3573,7 @@ Output WelcomeViewStep - + Welcome Bine ați venit @@ -3535,7 +3581,7 @@ Output notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_ru.ts b/lang/calamares_ru.ts index a04763d08..2993c2750 100644 --- a/lang/calamares_ru.ts +++ b/lang/calamares_ru.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Главная загрузочная запись %1 - + Boot Partition Загрузочный раздел @@ -42,7 +42,7 @@ Не устанавливать загрузчик - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Готово @@ -177,32 +177,32 @@ Calamares::PythonJob - + 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". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -257,174 +257,174 @@ Calamares::ViewManager - + &Back &Назад - + &Next &Далее - + &Cancel О&тмена - + Cancel setup without changing the system. Отменить установку без изменения системы. - + Cancel installation without changing the system. Отменить установку без изменения системы. - + Setup Failed Сбой установки - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed Ошибка инициализации Calamares - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. Не удалось установить %1. Calamares не удалось загрузить все сконфигурированные модули. Эта проблема вызвана тем, как ваш дистрибутив использует Calamares. - + <br/>The following modules could not be loaded: <br/>Не удалось загрузить следующие модули: - + Continue with installation? Продолжить установку? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> Программа установки %1 готова внести изменения на Ваш диск, чтобы установить %2.<br/><strong>Отменить эти изменения будет невозможно.</strong> - + &Set up now - + &Set up - + &Install &Установить - + Setup is complete. Close the setup program. Установка завершена. Закройте программу установки. - + Cancel setup? Отменить установку? - + Cancel installation? Отменить установку? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. Прервать процесс установки? Программа установки прекратит работу и все изменения будут потеряны. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Действительно прервать процесс установки? Программа установки сразу прекратит работу, все изменения будут потеряны. - - + + &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> Программа установки %1 готова внести изменения на Ваш диск, чтобы установить %2.<br/><strong>Отменить эти изменения будет невозможно.</strong> - + &Install now Приступить к &установке - + Go &back &Назад - + &Done &Готово - + The installation is complete. Close the installer. Установка завершена. Закройте установщик. - + Error Ошибка - + Installation Failed Установка завершилась неудачей @@ -432,22 +432,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type Неизвестный тип исключения - + unparseable Python error неподдающаяся обработке ошибка Python - + unparseable Python traceback неподдающийся обработке traceback Python - + Unfetchable Python error. Неизвестная ошибка Python @@ -464,17 +464,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program Программа установки %1 - + %1 Installer Программа установки %1 - + Show debug information Показать отладочную информацию @@ -482,7 +482,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... Сбор информации о системе... @@ -495,134 +495,134 @@ The installer will quit and all changes will be lost. Форма - + After: После: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Ручная разметка</strong><br/>Вы можете самостоятельно создавать разделы или изменять их размеры. - + Boot loader location: Расположение загрузчика: - + Select storage de&vice: Выбрать устройство &хранения: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 будет уменьшен до %2MB и новый раздел %3MB будет создан для %4. - + <strong>Select a partition to install on</strong> <strong>Выберите раздел для установки</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Не найдено системного раздела EFI. Пожалуйста, вернитесь назад и выполните ручную разметку %1. - + The EFI system partition at %1 will be used for starting %2. Системный раздел EFI на %1 будет использован для запуска %2. - + EFI system partition: Системный раздел EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Видимо, на этом устройстве нет операционной системы. Что Вы хотите сделать?<br/>Вы сможете изменить или подтвердить свой выбор до того, как на устройстве будут сделаны какие-либо изменения. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Стереть диск</strong><br/>Это <font color="red">удалит</font> все данные, которые сейчас находятся на выбранном устройстве. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. На этом устройстве есть %1. Что Вы хотите сделать?<br/>Вы сможете изменить или подтвердить свой выбор до того, как на устройстве будут сделаны какие-либо изменения. - + No Swap Без раздела подкачки - + Reuse Swap Использовать существующий раздел подкачки - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Установить рядом</strong><br/>Программа установки уменьшит раздел, чтобы освободить место для %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Заменить раздел</strong><br/>Меняет раздел на %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. На этом устройстве уже есть операционная система. Что Вы хотите сделать?<br/>Вы сможете изменить или подтвердить свой выбор до того, как на устройстве будут сделаны какие-либо изменения. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. На этом устройстве есть несколько операционных систем. Что Вы хотите сделать?<br/>Вы сможете изменить или подтвердить свой выбор до того, как на устройстве будут сделаны какие-либо изменения. @@ -630,17 +630,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 Освободить точки монтирования для выполнения разметки на %1 - + Clearing mounts for partitioning operations on %1. Освобождаются точки монтирования для выполнения разметки на %1. - + Cleared all mounts for %1 Освобождены все точки монтирования для %1 @@ -687,10 +687,33 @@ The installer will quit and all changes will be lost. Команде необходимо знать имя пользователя, но оно не задано. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>Добро пожаловать в программу установки Calamares для %1 .</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>Добро пожаловать в программу установки %1 .</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Добро пожаловать в установщик Calamares для %1 .</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Добро пожаловать в программу установки %1 .</h1> + + ContextualProcessJob - + Contextual Processes Job @@ -748,27 +771,27 @@ The installer will quit and all changes will be lost. Ра&змер: - + En&crypt Ши&фровать - + Logical Логический - + Primary Основной - + GPT GPT - + Mountpoint already in use. Please select another one. Точка монтирования уже занята. Пожалуйста, выберете другую. @@ -776,22 +799,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. Создать новый раздел %2 MB на %4 (%3) с файловой системой %1. - + Create new <strong>%2MiB</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'. @@ -827,22 +850,22 @@ 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. @@ -994,13 +1017,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1113,7 +1136,7 @@ The installer will quit and all changes will be lost. Подтвердите пароль - + Please enter the same passphrase in both boxes. Пожалуйста, введите один и тот же пароль в оба поля. @@ -1121,37 +1144,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. Настраиваются точки монтирования. @@ -1235,22 +1258,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. Форматировать раздел %1 (файловая система: %2, размер: %3 МБ) на %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. Форматировать раздел <strong>%1</strong> размером <strong>%3MB</strong> с файловой системой <strong>%2</strong>. - + Formatting partition %1 with file system %2. Форматируется раздел %1 под файловую систему %2. - + The installer failed to format partition %1 on disk '%2'. Программе установки не удалось отформатировать раздел %1 на диске '%2'. @@ -1657,16 +1680,6 @@ 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) @@ -1678,7 +1691,7 @@ The installer will quit and all changes will be lost. Установка по сети. (Отключено: получены неверные сведения о группах) - + Network Installation. (Disabled: Incorrect configuration) @@ -2024,7 +2037,7 @@ The installer will quit and all changes will be lost. Неизвестная ошибка - + Password is empty Пустой пароль @@ -2070,6 +2083,19 @@ The installer will quit and all changes will be lost. + + PackageModel + + + Name + Имя + + + + Description + Описание + + Page_Keyboard @@ -2232,34 +2258,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space Доступное место - - + + New partition Новый раздел - + Name Имя - + File System Файловая система - + Mount Point Точка монтирования - + Size Размер @@ -2327,17 +2353,17 @@ The installer will quit and all changes will be lost. Уст&ановить загрузчик в: - + Are you sure you want to create a new partition table on %1? Вы уверены, что хотите создать новую таблицу разделов на %1? - + Can not create new partition Не удалось создать новый раздел - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. В таблице разделов на %1 уже %2 первичных разделов, больше добавить нельзя. Удалите один из первичных разделов и добавьте расширенный раздел. @@ -2511,14 +2537,14 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. Вывода из команды не последовало. - + Output: @@ -2527,52 +2553,52 @@ Output: - + External command crashed. Сбой внешней команды. - + Command <i>%1</i> crashed. Сбой команды <i>%1</i>. - + External command failed to start. Не удалось запустить внешнюю команду. - + Command <i>%1</i> failed to start. Не удалось запустить команду <i>%1</i>. - + Internal error when starting command. Внутренняя ошибка при запуске команды. - + Bad parameters for process job call. Неверные параметры для вызова процесса. - + External command failed to finish. Не удалось завершить внешнюю команду. - + Command <i>%1</i> failed to finish in %2 seconds. Команда <i>%1</i> не завершилась за %2 с. - + External command finished with errors. Внешняя команда завершилась с ошибками - + Command <i>%1</i> finished with exit code %2. Команда <i>%1</i> завершилась с кодом %2. @@ -2591,22 +2617,22 @@ Output: По умолчанию - + unknown неизвестный - + extended расширенный - + unformatted неформатированный - + swap swap @@ -2660,6 +2686,14 @@ Output: Не удалось создать новый случайный файл <pre>%1</pre>. + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2687,140 +2721,152 @@ Output: Форма - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Выберите, где установить %1.<br/><font color="red">Внимание: </font>это удалит все файлы на выбранном разделе. - + The selected item does not appear to be a valid partition. Выбранный элемент, видимо, не является действующим разделом. - + %1 cannot be installed on empty space. Please select an existing partition. %1 не может быть установлен вне раздела. Пожалуйста выберите существующий раздел. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 не может быть установлен прямо в расширенный раздел. Выберите существующий основной или логический раздел. - + %1 cannot be installed on this partition. %1 не может быть установлен в этот раздел. - + Data partition (%1) Раздел данных (%1) - + Unknown system partition (%1) Неизвестный системный раздел (%1) - + %1 system partition (%2) %1 системный раздел (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>Раздел %1 слишком мал для %2. Пожалуйста выберите раздел объемом не менее %3 Гиб. - + <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/>Не найден системный раздел EFI. Вернитесь назад и выполните ручную разметку для установки %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 будет установлен в %2.<br/><font color="red">Внимание: </font>все данные на разделе %2 будут потеряны. - + The EFI system partition at %1 will be used for starting %2. Системный раздел EFI на %1 будет использован для запуска %2. - + EFI system partition: Системный раздел EFI: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job Изменить размер файловой системы - + Invalid configuration Недействительная конфигурация - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed Не удалось изменить размер - + The filesystem %1 could not be found in this system, and cannot be resized. Файловая система %1 не обнаружена в этой системе, поэтому её размер невозможно изменить. - + The device %1 could not be found in this system, and cannot be resized. Устройство %1 не обнаружено в этой системе, поэтому его размер невозможно изменить. - - + + The filesystem %1 cannot be resized. Невозможно изменить размер файловой системы %1. - - + + The device %1 cannot be resized. Невозможно изменить размер устройства %1. - + The filesystem %1 must be resized, but cannot. Необходимо, но не удаётся изменить размер файловой системы %1 - + The device %1 must be resized, but cannot Необходимо, но не удаётся изменить размер устройства %1 @@ -2878,12 +2924,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: Для наилучших результатов, убедитесь, что этот компьютер: - + System requirements Системные требования @@ -2891,27 +2937,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> Этот компьютер не соответствует минимальным требованиям для установки %1.<br/>Невозможно продолжить установку. <a href="#details">Подробнее...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Этот компьютер не соответствует минимальным требованиям для установки %1.<br/>Невозможно продолжить установку. <a href="#details">Подробнее...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. Этот компьютер соответствует не всем рекомендуемым требованиям для установки %1.<br/>Можно продолжить установку, но некоторые возможности могут быть недоступны. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Этот компьютер соответствует не всем рекомендуемым требованиям для установки %1.<br/>Можно продолжить установку, но некоторые возможности могут быть недоступны. - + This program will ask you some questions and set up %2 on your computer. Эта программа задаст вам несколько вопросов и поможет установить %2 на ваш компьютер. @@ -2932,17 +2978,17 @@ Output: SetHostNameJob - + Set hostname %1 Задать имя компьютера в сети %1 - + Set hostname <strong>%1</strong>. Задать имя компьютера в сети <strong>%1</strong>. - + Setting hostname %1. Задаю имя компьютера в сети для %1. @@ -2992,82 +3038,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. Установить флаги на разделе %1. - + Set flags on %1MiB %2 partition. Установить флаги %1MiB раздела %2. - + Set flags on new partition. Установить флаги нового раздела. - + Clear flags on partition <strong>%1</strong>. Очистить флаги раздела <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. Снять флаги %1MiB раздела <strong>%2</strong>. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. Отметить %1MB раздел <strong>%2</strong> флагом как <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. Снятие флагов %1MiB раздела <strong>%2</strong>. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. Установка флагов <strong>%3</strong> %1MiB раздела <strong>%2</strong>. - + Clear flags on new partition. Сбросить флаги нового раздела. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Отметить раздел <strong>%1</strong> флагом как <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Отметить новый раздел флагом как <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Очистка флагов раздела <strong>%1</strong>. - + Clearing flags on new partition. Сброс флагов нового раздела. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Установка флагов <strong>%2</strong> на раздел <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Установка флагов <strong>%1</strong> нового раздела. - + The installer failed to set flags on partition %1. Установщик не смог установить флаги на раздел %1. @@ -3297,47 +3343,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>Если этот компьютер будет использоваться несколькими людьми, вы сможете создать учетные записи для них после установки.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>Если этот компьютер используется несколькими людьми, Вы сможете создать соответствующие учетные записи сразу после установки.</small> - + Your username is too long. Ваше имя пользователя слишком длинное. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. Допускаются только строчные буквы, числа, символы подчёркивания и дефисы. - + Only letters, numbers, underscore and hyphen are allowed. Допускаются только буквы, цифры, символы подчёркивания и дефисы. - + Your hostname is too short. Имя вашего компьютера слишком коротко. - + Your hostname is too long. Имя вашего компьютера слишком длинное. - + Your passwords do not match! Пароли не совпадают! @@ -3475,42 +3521,42 @@ Output: &О программе - + <h1>Welcome to the %1 installer.</h1> <h1>Добро пожаловать в программу установки %1 .</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Добро пожаловать в установщик Calamares для %1 .</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>Добро пожаловать в программу установки Calamares для %1 .</h1> - + <h1>Welcome to %1 setup.</h1> <h1>Добро пожаловать в программу установки %1 .</h1> - + About %1 setup О установке %1 - + About %1 installer О программе установки %1 - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 поддержка @@ -3518,7 +3564,7 @@ Output: WelcomeQmlViewStep - + Welcome Добро пожаловать @@ -3526,7 +3572,7 @@ Output: WelcomeViewStep - + Welcome Добро пожаловать @@ -3534,7 +3580,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_sk.ts b/lang/calamares_sk.ts index 46241516a..0ff6f42fb 100644 --- a/lang/calamares_sk.ts +++ b/lang/calamares_sk.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Hlavný zavádzací záznam (MBR) zariadenia %1 - + Boot Partition Zavádzací oddiel @@ -42,7 +42,7 @@ Neinštalovať zavádzač - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Hotovo @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Spúšťa sa operácia %1. - + Bad working directory path Nesprávna cesta k pracovnému adresáru - + Working directory %1 for python job %2 is not readable. Pracovný adresár %1 pre úlohu jazyka python %2 nie je možné čítať. - + Bad main script file Nesprávny súbor hlavného skriptu - + Main script file %1 for python job %2 is not readable. Súbor hlavného skriptu %1 pre úlohu jazyka python %2 nie je možné čítať. - + Boost.Python error in job "%1". Chyba knižnice Boost.Python v úlohe „%1“. @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... Načítava sa... - + QML Step <i>%1</i>. - + Loading failed. Načítavanie zlyhalo. @@ -257,175 +257,175 @@ Calamares::ViewManager - + &Back &Späť - + &Next Ď&alej - + &Cancel &Zrušiť - + Cancel setup without changing the system. Zrušenie inštalácie bez zmien v systéme. - + Cancel installation without changing the system. Zruší inštaláciu bez zmeny systému. - + Setup Failed Inštalácia zlyhala - + Would you like to paste the install log to the web? Chceli by ste vložiť záznam z inštalácie na web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed Zlyhala inicializácia inštalátora Calamares - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. Nie je možné nainštalovať %1. Calamares nemohol načítať všetky konfigurované moduly. Je problém s tým, ako sa Calamares používa pri distribúcii. - + <br/>The following modules could not be loaded: <br/>Nebolo možné načítať nasledujúce moduly - + Continue with installation? Pokračovať v inštalácii? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> Inštalačný program 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> - + &Set up now &Inštalovať teraz - + &Set up &Inštalovať - + &Install _Inštalovať - + Setup is complete. Close the setup program. Inštalácia je dokončená. Zavrite inštalačný program. - + Cancel setup? Zrušiť inštaláciu? - + Cancel installation? Zrušiť inštaláciu? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. Naozaj chcete zrušiť aktuálny priebeh inštalácie? Inštalačný program bude ukončený a zmeny budú stratené. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Skutočne chcete zrušiť aktuálny priebeh inštalácie? Inštalátor sa ukončí a všetky zmeny budú stratené. - - + + &Yes _Áno - - + + &No _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 @@ -433,22 +433,22 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. CalamaresPython::Helper - + Unknown exception type Neznámy typ výnimky - + unparseable Python error Neanalyzovateľná chyba jazyka Python - + unparseable Python traceback Neanalyzovateľný ladiaci výstup jazyka Python - + Unfetchable Python error. Nezískateľná chyba jazyka Python. @@ -466,17 +466,17 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. CalamaresWindow - + %1 Setup Program Inštalačný program distribúcie %1 - + %1 Installer Inštalátor distribúcie %1 - + Show debug information Zobraziť ladiace informácie @@ -484,7 +484,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. CheckerContainer - + Gathering system information... Zbierajú sa informácie o počítači... @@ -497,134 +497,134 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Forma - + After: Potom: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Ručné rozdelenie oddielov</strong><br/>Môžete vytvoriť alebo zmeniť veľkosť oddielov podľa seba. - + Boot loader location: Umiestnenie zavádzača: - + Select storage de&vice: Vyberte úložné &zariadenie: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. Oddiel %1 bude zmenšený na %2MiB a nový %3MiB oddiel bude vytvorený pre distribúciu %4. - + <strong>Select a partition to install on</strong> <strong>Vyberte oddiel, na ktorý sa má inštalovať</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Oddiel systému EFI sa nedá v tomto počítači nájsť. Prosím, prejdite späť a použite ručné rozdelenie oddielov na inštaláciu distribúcie %1. - + The EFI system partition at %1 will be used for starting %2. Oddie lsystému EFI na %1 bude použitý na spustenie distribúcie %2. - + EFI system partition: Oddiel systému EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Zdá sa, že toto úložné zariadenie neobsahuje operačný systém. Čo by ste chceli urobiť?<br/>Budete môcť skontrolovať a potvrdiť vaše voľby pred uplatnením akejkoľvek zmeny na úložnom zariadení. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Vymazanie disku</strong><br/>Týmto sa <font color="red">odstránia</font> všetky údaje momentálne sa nachádzajúce na vybranom úložnom zariadení. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Toto úložné zariadenie obsahuje operačný systém %1. Čo by ste chceli urobiť?<br/>Budete môcť skontrolovať a potvrdiť vaše voľby pred uplatnením akejkoľvek zmeny na úložnom zariadení. - + No Swap Bez odkladacieho priestoru - + Reuse Swap Znovu použiť odkladací priestor - + Swap (no Hibernate) Odkladací priestor (bez hibernácie) - + Swap (with Hibernate) Odkladací priestor (s hibernáciou) - + Swap to file Odkladací priestor v súbore - - - - + + + + <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í. @@ -632,17 +632,17 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. ClearMountsJob - + Clear mounts for partitioning operations on %1 Vymazať pripojenia pre operácie rozdelenia oddielov na zariadení %1 - + Clearing mounts for partitioning operations on %1. Vymazávajú sa pripojenia pre operácie rozdelenia oddielov na zariadení %1. - + Cleared all mounts for %1 Vymazané všetky pripojenia pre zariadenie %1 @@ -689,10 +689,33 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Príkaz musí poznať meno používateľa, ale žiadne nie je definované. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>Vitajte v inštalačnom programe Calamares pre distribúciu %1.</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>Vitajte pri inštalácii distribúcie %1.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Vitajte v aplikácii Calamares, inštalátore distribúcie %1.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Vitajte v inštalátore distribúcie %1.</h1> + + ContextualProcessJob - + Contextual Processes Job Úloha kontextových procesov @@ -750,27 +773,27 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Veľ&kosť: - + En&crypt Zaši&frovať - + Logical Logický - + Primary Primárny - + GPT GPT - + Mountpoint already in use. Please select another one. Bod pripojenia sa už používa. Prosím, vyberte iný. @@ -778,22 +801,22 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. Vytvorenie nového %2MiB oddielu na zariadení %4 (%3) so systémom súborov %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Vytvorenie nového <strong>%2MiB</strong> oddielu 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“. @@ -829,22 +852,22 @@ 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. @@ -996,13 +1019,13 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1115,7 +1138,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Potvrdenie hesla - + Please enter the same passphrase in both boxes. Prosím, zadajte rovnaké heslo do oboch polí. @@ -1123,37 +1146,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í. @@ -1237,22 +1260,22 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. Naformátovanie oddielu %1 (systém súborov: %2, veľkosť: %3 MiB) na %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. Naformátovanie <strong>%3MiB</strong> oddielu <strong>%1</strong> so systémom súborov <strong>%2</strong>. - + Formatting partition %1 with file system %2. Formátuje sa oddiel %1 so systémom súborov %2. - + The installer failed to format partition %1 on disk '%2'. Inštalátor zlyhal pri formátovaní oddielu %1 na disku „%2“. @@ -1659,16 +1682,6 @@ 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) @@ -1680,7 +1693,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Sieťová inštalácia. (Zakázaná: Boli prijaté neplatné údaje o skupinách) - + Network Installation. (Disabled: Incorrect configuration) Sieťová inštalácia. (Zakázaná: Nesprávna konfigurácia) @@ -2026,7 +2039,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Neznáma chyba - + Password is empty Heslo je prázdne @@ -2072,6 +2085,19 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Balíky + + PackageModel + + + Name + Názov + + + + Description + Popis + + Page_Keyboard @@ -2234,34 +2260,34 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. PartitionModel - - + + Free Space Voľné miesto - - + + New partition Nový oddiel - + Name Názov - + File System Systém súborov - + Mount Point Bod pripojenia - + Size Veľkosť @@ -2329,17 +2355,17 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Nai&nštalovať zavádzač na: - + Are you sure you want to create a new partition table on %1? Naozaj chcete vytvoriť novú tabuľku oddielov na zariadení %1? - + Can not create new partition Nedá sa vytvoriť nový oddiel - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Tabuľka oddielov na %1 už obsahuje primárne oddiely %2 a nie je možné pridávať žiadne ďalšie. Odstráňte jeden primárny oddiel a namiesto toho pridajte rozšírenú oblasť. @@ -2513,14 +2539,14 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. ProcessResult - + There was no output from the command. Žiadny výstup z príkazu. - + Output: @@ -2529,52 +2555,52 @@ Výstup: - + External command crashed. Externý príkaz nečakane skončil. - + Command <i>%1</i> crashed. Príkaz <i>%1</i> nečakane skončil. - + External command failed to start. Zlyhalo spustenie externého príkazu. - + Command <i>%1</i> failed to start. Zlyhalo spustenie príkazu <i>%1</i> . - + Internal error when starting command. Počas spúšťania príkazu sa vyskytla interná chyba. - + Bad parameters for process job call. Nesprávne parametre pre volanie úlohy procesu. - + External command failed to finish. Zlyhalo dokončenie externého príkazu. - + Command <i>%1</i> failed to finish in %2 seconds. Zlyhalo dokončenie príkazu <i>%1</i> počas doby %2 sekúnd. - + External command finished with errors. Externý príkaz bol dokončený s chybami. - + Command <i>%1</i> finished with exit code %2. Príkaz <i>%1</i> skončil s ukončovacím kódom %2. @@ -2593,22 +2619,22 @@ Výstup: Predvolený - + unknown neznámy - + extended rozšírený - + unformatted nenaformátovaný - + swap odkladací @@ -2662,6 +2688,14 @@ Výstup: Nepodarilo sa vytvoriť nový náhodný súbor <pre>%1</pre>. + + RemoveUserJob + + + Remove live user from target system + Odstránenie live používateľa z cieľového systému + + RemoveVolumeGroupJob @@ -2689,140 +2723,152 @@ Výstup: Forma - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Vyberte, kam sa má nainštalovať distribúcia %1.<br/><font color="red">Upozornenie: </font>týmto sa odstránia všetky súbory na vybranom oddieli. - + The selected item does not appear to be a valid partition. Zdá sa, že vybraná položka nie je platným oddielom. - + %1 cannot be installed on empty space. Please select an existing partition. Distribúcia %1 sa nedá nainštalovať na prázdne miesto. Prosím, vyberte existujúci oddiel. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. Distribúcia %1 sa nedá nainštalovať na rozšírený oddiel. Prosím, vyberte existujúci primárny alebo logický oddiel. - + %1 cannot be installed on this partition. Distribúcia %1 sa nedá nainštalovať na tento oddiel. - + Data partition (%1) Údajový oddiel (%1) - + Unknown system partition (%1) Neznámy systémový oddiel (%1) - + %1 system partition (%2) Systémový oddiel operačného systému %1 (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>Oddiel %1 je príliš malý pre distribúciu %2. Prosím, vyberte oddiel s kapacitou aspoň %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/>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. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>Distribúcia %1 bude nainštalovaná na oddiel %2.<br/><font color="red">Upozornenie: </font>všetky údaje na oddieli %2 budú stratené. - + The EFI system partition at %1 will be used for starting %2. Oddiel systému EFI na %1 bude použitý pre spustenie distribúcie %2. - + EFI system partition: Oddiel systému EFI: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job Úloha zmeny veľkosti systému súborov - + Invalid configuration Neplatná konfigurácia - + The file-system resize job has an invalid configuration and will not run. Úloha zmeny veľkosti systému súborov má neplatnú konfiguráciu a nebude spustená. - - + KPMCore not Available Jadro KPMCore nie je dostupné - - + Calamares cannot start KPMCore for the file-system resize job. Inštalátor Calamares nemôže spustiť jadro KPMCore pre úlohu zmeny veľkosti systému súborov. - - - - - + + + + + Resize Failed Zlyhala zmena veľkosti - + The filesystem %1 could not be found in this system, and cannot be resized. Systém súborov %1 sa nepodarilo nájsť v tomto systéme a nemôže sa zmeniť jeho veľkosť. - + The device %1 could not be found in this system, and cannot be resized. Zariadenie %1 sa nepodarilo nájsť v tomto systéme a nemôže sa zmeniť jeho veľkosť. - - + + The filesystem %1 cannot be resized. Nedá sa zmeniť veľkosť systému súborov %1. - - + + The device %1 cannot be resized. Nedá sa zmeniť veľkosť zariadenia %1. - + The filesystem %1 must be resized, but cannot. Musí sa zmeniť veľkosť systému súborov %1, ale nedá sa vykonať. - + The device %1 must be resized, but cannot Musí sa zmeniť veľkosť zariadenia %1, ale nedá sa vykonať. @@ -2880,12 +2926,12 @@ Výstup: ResultsListDialog - + For best results, please ensure that this computer: Pre čo najlepší výsledok, sa prosím, uistite, že tento počítač: - + System requirements Systémové požiadavky @@ -2893,27 +2939,27 @@ Výstup: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> Tento počítač nespĺňa minimálne požiadavky pre inštaláciu distribúcie %1.<br/>Inštalácia nemôže pokračovať. <a href="#details">Podrobnosti...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Tento počítač nespĺňa minimálne požiadavky pre inštaláciu distribúcie %1.<br/>Inštalácia nemôže pokračovať. <a href="#details">Podrobnosti...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. Tento počítač nespĺňa niektoré z odporúčaných požiadaviek pre inštaláciu distribúcie %1.<br/>Inštalácia môže pokračovať, ale niektoré funkcie môžu byť zakázané. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Tento počítač nespĺňa niektoré z odporúčaných požiadaviek pre inštaláciu distribúcie %1.<br/>Inštalácia môže pokračovať, ale niektoré funkcie môžu byť zakázané. - + This program will ask you some questions and set up %2 on your computer. Tento program vám položí niekoľko otázok a nainštaluje distribúciu %2 do vášho počítača. @@ -2934,17 +2980,17 @@ Výstup: SetHostNameJob - + Set hostname %1 Nastavenie názvu hostiteľa %1 - + Set hostname <strong>%1</strong>. Nastavenie názvu hostiteľa <strong>%1</strong>. - + Setting hostname %1. Nastavuje sa názov hostiteľa %1. @@ -2994,82 +3040,82 @@ Výstup: SetPartFlagsJob - + Set flags on partition %1. Nastavenie značiek na oddieli %1. - + Set flags on %1MiB %2 partition. Nastavenie značiek na %1MiB oddieli %2. - + Set flags on new partition. Nastavenie značiek na novom oddieli. - + Clear flags on partition <strong>%1</strong>. Vymazanie značiek na oddieli <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. Vymazanie značiek na %1MiB oddieli <strong>%2</strong>. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. Označenie %1MiB oddielu <strong>%2</strong> ako <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. Vymazávajú sa značky na %1MiB oddieli <strong>%2</strong>. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. Nastavujú sa značky <strong>%3</strong> na %1MiB oddieli <strong>%2</strong>. - + Clear flags on new partition. Vymazanie značiek na novom oddieli. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Označenie oddielu <strong>%1</strong> ako <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Označenie nového oddielu ako <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Vymazávajú sa značky na oddieli <strong>%1</strong>. - + Clearing flags on new partition. Vymazávajú sa značky na novom oddieli. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Nastavujú sa značky <strong>%2</strong> na oddieli <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Nastavujú sa značky <strong>%1</strong> na novom oddieli. - + The installer failed to set flags on partition %1. Inštalátor zlyhal pri nastavovaní značiek na oddieli %1. @@ -3299,47 +3345,47 @@ Výstup: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>Ak bude tento počítač používať viac ako jedna osoba, môžete nastaviť viacero účtov po inštalácii.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>Ak bude tento počítač používať viac ako jedna osoba, môžete nastaviť viacero účtov po inštalácii.</small> - + Your username is too long. Vaše používateľské meno je príliš dlhé. - + Your username must start with a lowercase letter or underscore. Vaše používateľské meno musí začínať malým písmenom alebo podčiarkovníkom. - + Only lowercase letters, numbers, underscore and hyphen are allowed. Sú povolené iba malé písmená, číslice, podtržníky a pomlčky. - + Only letters, numbers, underscore and hyphen are allowed. Sú povolené iba písmená, číslice, podtržníky 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 passwords do not match! Vaše heslá sa nezhodujú! @@ -3477,42 +3523,42 @@ Výstup: &O inštalátore - + <h1>Welcome to the %1 installer.</h1> <h1>Vitajte v inštalátore distribúcie %1.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Vitajte v aplikácii Calamares, inštalátore distribúcie %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>Vitajte v inštalačnom programe Calamares pre distribúciu %1.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>Vitajte pri inštalácii distribúcie %1.</h1> - + About %1 setup O inštalátore %1 - + About %1 installer O inštalátore %1 - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <h1>%1</h1><br/><strong>%2<br/>pre %3</strong><br/><br/>Autorské práva 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Autorské práva 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Poďakovanie patrí <a href="https://calamares.io/team/">tímu inštalátora Calamares</a> a <a href="https://www.transifex.com/calamares/calamares/">prekladateľskému tímu inštalátora Calamares</a>.<br/><br/>Vývoj inštalátora <a href="https://calamares.io/">Calamares</a> je sponzorovaný spoločnosťou <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - oslobodzujúci softvér. - + %1 support Podpora distribúcie %1 @@ -3520,7 +3566,7 @@ Výstup: WelcomeQmlViewStep - + Welcome Uvítanie @@ -3528,7 +3574,7 @@ Výstup: WelcomeViewStep - + Welcome Uvítanie @@ -3536,7 +3582,7 @@ Výstup: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> <h3>%1</h3> diff --git a/lang/calamares_sl.ts b/lang/calamares_sl.ts index f17ae2b0b..57cb78e07 100644 --- a/lang/calamares_sl.ts +++ b/lang/calamares_sl.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 - + Boot Partition Zagonski razdelek @@ -42,7 +42,7 @@ - + %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Končano @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. - + Bad working directory path Nepravilna pot delovne mape - + Working directory %1 for python job %2 is not readable. Ni mogoče brati delovne mape %1 za pythonovo opravilo %2. - + Bad main script file Nepravilna datoteka glavnega skripta - + Main script file %1 for python job %2 is not readable. Ni mogoče brati datoteke %1 glavnega skripta za pythonovo opravilo %2. - + Boost.Python error in job "%1". Napaka Boost.Python v opravilu "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -257,174 +257,174 @@ Calamares::ViewManager - + &Back &Nazaj - + &Next &Naprej - + &Cancel - + Cancel setup without changing the system. - + Cancel installation without changing the system. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? Preklic namestitve? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Ali res želite preklicati trenutni namestitveni proces? Namestilni program se bo končal in vse spremembe bodo izgubljene. - - + + &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 Napaka - + Installation Failed Namestitev je spodletela @@ -432,22 +432,22 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. CalamaresPython::Helper - + Unknown exception type Neznana vrsta izjeme - + unparseable Python error nerazčlenljiva napaka Python - + unparseable Python traceback - + Unfetchable Python error. @@ -464,17 +464,17 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. CalamaresWindow - + %1 Setup Program - + %1 Installer %1 Namestilnik - + Show debug information @@ -482,7 +482,7 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. CheckerContainer - + Gathering system information... Zbiranje informacij o sistemu ... @@ -495,134 +495,134 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. Oblika - + After: Potem: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + Select storage de&vice: - - - - + + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -630,17 +630,17 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. ClearMountsJob - + Clear mounts for partitioning operations on %1 - + Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 @@ -687,10 +687,33 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + + + ContextualProcessJob - + Contextual Processes Job @@ -748,27 +771,27 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. Ve&likost - + En&crypt - + Logical Logičen - + Primary Primaren - + GPT GPT - + Mountpoint already in use. Please select another one. @@ -776,22 +799,22 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. Namestilniku ni uspelo ustvariti razdelka na disku '%1'. @@ -827,22 +850,22 @@ 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. @@ -994,13 +1017,13 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) @@ -1113,7 +1136,7 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. - + Please enter the same passphrase in both boxes. @@ -1121,37 +1144,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. @@ -1235,22 +1258,22 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. - + The installer failed to format partition %1 on disk '%2'. Namestilniku ni uspelo formatirati razdelka %1 na disku '%2'. @@ -1657,16 +1680,6 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. NetInstallPage - - - Name - Ime - - - - Description - - Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1678,7 +1691,7 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. - + Network Installation. (Disabled: Incorrect configuration) @@ -2024,7 +2037,7 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. - + Password is empty @@ -2070,6 +2083,19 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. + + PackageModel + + + Name + Ime + + + + Description + + + Page_Keyboard @@ -2232,34 +2258,34 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. PartitionModel - - + + Free Space Razpoložljiv prostor - - + + New partition Nov razdelek - + Name Ime - + File System Datotečni sistem - + Mount Point Priklopna točka - + Size Velikost @@ -2327,17 +2353,17 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. - + Are you sure you want to create a new partition table on %1? Ali ste prepričani, da želite ustvariti novo razpredelnico razdelkov na %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2511,65 +2537,65 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. Nepravilni parametri za klic procesa opravila. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2588,22 +2614,22 @@ Output: Privzeto - + unknown - + extended - + unformatted - + swap @@ -2657,6 +2683,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2684,140 +2718,152 @@ Output: Oblika - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. - + %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. - + Data partition (%1) - + Unknown system partition (%1) - + %1 system partition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2875,12 +2921,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: Za najboljše rezultate se prepričajte, da vaš računalnik izpolnjuje naslednje zahteve: - + System requirements @@ -2888,27 +2934,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - + This program will ask you some questions and set up %2 on your computer. @@ -2929,17 +2975,17 @@ Output: SetHostNameJob - + Set hostname %1 - + Set hostname <strong>%1</strong>. - + Setting hostname %1. @@ -2989,82 +3035,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. @@ -3294,47 +3340,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your passwords do not match! @@ -3472,42 +3518,42 @@ Output: - + <h1>Welcome to the %1 installer.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer - + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support @@ -3515,7 +3561,7 @@ Output: WelcomeQmlViewStep - + Welcome Dobrodošli @@ -3523,7 +3569,7 @@ Output: WelcomeViewStep - + Welcome Dobrodošli @@ -3531,7 +3577,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_sq.ts b/lang/calamares_sq.ts index e1cbca6b5..124dd39ac 100644 --- a/lang/calamares_sq.ts +++ b/lang/calamares_sq.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Master Boot Record për %1 - + Boot Partition Pjesë Nisjesh @@ -42,7 +42,7 @@ Mos instalo ngarkues nisjesh - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done U bë @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Po xhirohet %1 veprim. - + Bad working directory path Shteg i gabuar drejtorie pune - + Working directory %1 for python job %2 is not readable. Drejtoria e punës %1 për aktin python %2 s’është e lexueshme. - + Bad main script file Kartelë kryesore programthi e dëmtuar - + Main script file %1 for python job %2 is not readable. Kartela kryesore e programthit file %1 për aktin python %2 s’është e lexueshme. - + Boost.Python error in job "%1". Gabim Boost.Python tek akti \"%1\". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... Po ngarkohet … - + QML Step <i>%1</i>. Hapi QML <i>%1</i>. - + Loading failed. Ngarkimi dështoi. @@ -253,175 +253,175 @@ Calamares::ViewManager - + &Back &Mbrapsht - + &Next Pas&uesi - + &Cancel &Anuloje - + Cancel setup without changing the system. Anuloje rregullimin pa ndryshuar sistemin. - + Cancel installation without changing the system. Anuloje instalimin pa ndryshuar sistemin. - + Setup Failed Rregullimi Dështoi - + Would you like to paste the install log to the web? Do të donit të hidhet në web regjistri i instalimit? - + Install Log Paste URL URL Ngjitjeje Regjistri Instalimi - + The upload was unsuccessful. No web-paste was done. Ngarkimi s’qe i suksesshëm. S’u bë hedhje në web. - + Calamares Initialization Failed Gatitja e Calamares-it Dështoi - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 s’mund të instalohet. Calamares s’qe në gjendje të ngarkonte krejt modulet e konfiguruar. Ky është një problem që lidhet me mënyrën se si përdoret Calamares nga shpërndarja. - + <br/>The following modules could not be loaded: <br/>S’u ngarkuan dot modulet vijues: - + Continue with installation? Të vazhdohet me instalimin? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> Programi i rregullimit %1 është një hap larg nga bërja e ndryshimeve në diskun tuaj, që të mund të rregullojë %2.<br/><strong>S’do të jeni në gjendje t’i zhbëni këto ndryshime.</strong> - + &Set up now &Rregulloje tani - + &Set up &Rregulloje - + &Install &Instaloje - + Setup is complete. Close the setup program. Rregullimi është i plotë. Mbylleni programin e rregullimit. - + Cancel setup? Të anulohet rregullimi? - + Cancel installation? Të anulohet instalimi? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. Doni vërtet të anulohet procesi i tanishëm i rregullimit? Programi i rregullimit do të mbyllet dhe krejt ndryshimet do të humbin. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Doni vërtet të anulohet procesi i tanishëm i instalimit? Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. - - + + &Yes &Po - - + + &No &Jo - + &Close &Mbylle - + Continue with setup? Të vazhdohet me rregullimin? - + 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> Instaluesi %1 është një hap larg nga bërja e ndryshimeve në diskun tuaj, që të mund të instalojë %2.<br/><strong>S’do të jeni në gjendje t’i zhbëni këto ndryshime.</strong> - + &Install now &Instaloje tani - + Go &back Kthehu &mbrapsht - + &Done &U bë - + The installation is complete. Close the installer. Instalimi u plotësua. Mbylle instaluesin. - + Error Gabim - + Installation Failed Instalimi Dështoi @@ -429,22 +429,22 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. CalamaresPython::Helper - + Unknown exception type Lloj i panjohur përjashtimi - + unparseable Python error Gabim kodi Python të papërtypshëm - + unparseable Python traceback <i>Traceback</i> Python i papërtypshëm - + Unfetchable Python error. Gabim Python mosprurjeje kodi. @@ -462,17 +462,17 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. CalamaresWindow - + %1 Setup Program Programi i Rregullimit të %1 - + %1 Installer Instalues %1 - + Show debug information Shfaq të dhëna diagnostikimi @@ -480,7 +480,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. CheckerContainer - + Gathering system information... Po grumbullohen të dhëna mbi sistemin… @@ -493,134 +493,134 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. Formular - + After: Pas: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Pjesëzim dorazi</strong><br/>Pjesët mund t’i krijoni dhe ripërmasoni ju vetë. - + Boot loader location: Vendndodhje ngarkuesi nisjesh: - + Select storage de&vice: Përzgjidhni &pajisje depozitimi: - - - - + + + + Current: E tanishmja: - + Reuse %1 as home partition for %2. Ripërdore %1 si pjesën shtëpi për %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>Përzgjidhni një pjesë që të zvogëlohet, mandej tërhiqni shtyllën e poshtme që ta ripërmasoni</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 do të zvogëlohet në %2MiB dhe për %4 do të krijohet një pjesë e re %3MiB. - + <strong>Select a partition to install on</strong> <strong>Përzgjidhni një pjesë ku të instalohet</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Në këtë sistem s’gjendet gjëkundi një pjesë EFI sistemi. Ju lutemi, kthehuni mbrapsht dhe përdorni pjesëzimin dorazi që të rregulloni %1. - + The EFI system partition at %1 will be used for starting %2. Për nisjen e %2 do të përdoret pjesa EFI e sistemit te %1. - + EFI system partition: Pjesë Sistemi EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Kjo pajisje depozitimi përmban %1 në të. Ç’do të donit të bënit?<br/>Do të jeni në gjendje të rishqyrtoni dhe ripohoni zgjedhjet tuaja, para se te pajisja e depozitimit të bëhet çfarëdo ndryshimi. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Fshije diskun</strong><br/>Kështu do të <font color=\"red\">fshihen</font> krejt të dhënat të pranishme tani në pajisjen e përzgjedhur. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Kjo pajisje depozitimi përmban %1 në të. Ç’do të donit të bënit?<br/>Do të jeni në gjendje të rishqyrtoni dhe ripohoni zgjedhjet tuaja, para se te pajisja e depozitimit të bëhet çfarëdo ndryshimi. - + No Swap Pa Swap - + Reuse Swap Ripërdor Swap-in - + Swap (no Hibernate) Swap (pa Letargji) - + Swap (with Hibernate) Swap (me Letargji) - + Swap to file Swap në kartelë - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Instaloje në krah të tij</strong><br/>Instaluesi do të zvogëlojë një pjesë për të bërë vend për %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Zëvendëso një pjesë</strong><br/>Zëvendëson një pjesë me %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Kjo pajisje depozitimi ka tashmë një sistem operativ në të. Ç’do të donit të bënit?<br/>Do të jeni në gjendje të rishqyrtoni dhe ripohoni zgjedhjet tuaja, para se te pajisja e depozitimit të bëhet çfarëdo ndryshimi. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Kjo pajisje depozitimi ka disa sisteme operativë në të. Ç’do të donit të bënit?<br/>Do të jeni në gjendje të rishqyrtoni dhe ripohoni zgjedhjet tuaja, para se te pajisja e depozitimit të bëhet çfarëdo ndryshimi. @@ -628,17 +628,17 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. ClearMountsJob - + Clear mounts for partitioning operations on %1 Hiqi montimet për veprime pjesëzimi te %1 - + Clearing mounts for partitioning operations on %1. Po hiqen montimet për veprime pjesëzimi te %1. - + Cleared all mounts for %1 U hoqën krejt montimet për %1 @@ -685,10 +685,33 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. Urdhri lypset të dijë emrin e përdoruesit, por s’ka të përcaktuar emër përdoruesi. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>Mirë se vini te programi i rregullimit Calamares për %1.</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>Mirë se vini te rregullimi i %1.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Mirë se vini te instaluesi Calamares për %1.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Mirë se vini te instaluesi i %1.</h1> + + ContextualProcessJob - + Contextual Processes Job Akt Procesesh Kontekstuale @@ -746,27 +769,27 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. &Madhësi: - + En&crypt &Fshehtëzoje - + Logical Logjik - + Primary Parësor - + GPT GPT - + Mountpoint already in use. Please select another one. Pikë montimi tashmë e përdorur. Ju lutemi, përzgjidhni një tjetër. @@ -774,22 +797,22 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. Krijo pjesë të re %2MiB te %4 (%3) me sistem kartelash %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Krijo pjesë të re <strong>%2MiB</strong> te <strong>%4</strong> (%3) me sistem kartelash <strong>%1</strong>. - + Creating new %1 partition on %2. Po krijohet pjesë e re %1 te %2. - + The installer failed to create partition on disk '%1'. Instaluesi s’arriti të krijojë pjesë në diskun '%1'. @@ -825,22 +848,22 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. CreatePartitionTableJob - + Create new %1 partition table on %2. Krijo tabelë të re pjesësh %1 te %2. - + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). Krijoni tabelë pjesësh të re <strong>%1</strong> te <strong>%2</strong> (%3). - + Creating new %1 partition table on %2. Po krijohet tabelë e re pjesësh %1 te %2. - + The installer failed to create a partition table on %1. Instaluesi s’arriti të krijojë tabelë pjesësh në diskun %1. @@ -992,13 +1015,13 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1111,7 +1134,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. Ripohoni frazëkalimin - + Please enter the same passphrase in both boxes. Ju lutemi, jepni të njëjtin frazëkalim në të dy kutizat. @@ -1119,37 +1142,37 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. FillGlobalStorageJob - + Set partition information Caktoni të dhëna pjese - + Install %1 on <strong>new</strong> %2 system partition. Instaloje %1 në pjesë sistemi <strong>të re</strong> %2. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Rregullo pjesë të <strong>re</strong> %2 me pikë montimi <strong>%1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Instaloje %2 te pjesa e sistemit %3 <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Rregullo pjesë %3 <strong>%1</strong> me pikë montimi <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Instalo ngarkues nisjesh në <strong>%1</strong>. - + Setting up mount points. Po rregullohen pika montimesh. @@ -1233,22 +1256,22 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. Formatoje pjesën %1 (sistem kartelash: %2, madhësi: %3 MiB) në %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. Formato pjesën <strong>%3MiB</strong> <strong>%1</strong> me sistem kartelash <strong>%2</strong>. - + Formatting partition %1 with file system %2. Po formatohet pjesa %1 me sistem kartelash %2. - + The installer failed to format partition %1 on disk '%2'. Instaluesi s’arriti të formatojë pjesën %1 në diskun '%2'. @@ -1655,16 +1678,6 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. NetInstallPage - - - Name - Emër - - - - Description - Përshkrim - Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1676,7 +1689,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. Instalim Nga Rrjeti. (U çaktivizua: U morën të dhëna të pavlefshme grupesh) - + Network Installation. (Disabled: Incorrect configuration) Instalim Nga Rrjeti. (E çaktivizuar: Formësim i pasaktë) @@ -2022,7 +2035,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. Gabim i panjohur - + Password is empty Fjalëkalimi është i zbrazët @@ -2068,6 +2081,19 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. Paketa + + PackageModel + + + Name + Emër + + + + Description + Përshkrim + + Page_Keyboard @@ -2230,34 +2256,34 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. PartitionModel - - + + Free Space Hapësirë e Lirë - - + + New partition Pjesë e re - + Name Emër - + File System Sistem Kartelash - + Mount Point Pikë Montimi - + Size Madhësi @@ -2325,17 +2351,17 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. &Instalo ngarkues nisjesh në: - + Are you sure you want to create a new partition table on %1? Jeni i sigurt se doni të krijoni një tabelë të re pjesësh në %1? - + Can not create new partition S’krijohet dot pjesë e re - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Tabela e pjesëzimit te %1 ka tashmë %2 pjesë parësore, dhe s’mund të shtohen të tjera. Ju lutemi, në vend të kësaj, hiqni një pjesë parësore dhe shtoni një pjesë të zgjeruar. @@ -2509,14 +2535,14 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. ProcessResult - + There was no output from the command. S’pati përfundim nga urdhri. - + Output: @@ -2525,52 +2551,52 @@ Përfundim: - + External command crashed. Urdhri i jashtëm u vithis. - + Command <i>%1</i> crashed. Urdhri <i>%1</i> u vithis. - + External command failed to start. Dështoi nisja e urdhrit të jashtëm. - + Command <i>%1</i> failed to start. Dështoi nisja e urdhrit <i>%1</i>. - + Internal error when starting command. Gabim i brendshëm kur niset urdhri. - + Bad parameters for process job call. Parametra të gabuar për thirrje akti procesi. - + External command failed to finish. S’u arrit të përfundohej urdhër i jashtëm. - + Command <i>%1</i> failed to finish in %2 seconds. Urdhri <i>%1</i> s’arriti të përfundohej në %2 sekonda. - + External command finished with errors. Urdhri i jashtë përfundoi me gabime. - + Command <i>%1</i> finished with exit code %2. Urdhri <i>%1</i> përfundoi me kod daljeje %2. @@ -2589,22 +2615,22 @@ Përfundim: Parazgjedhje - + unknown e panjohur - + extended extended - + unformatted e paformatuar - + swap swap @@ -2658,6 +2684,14 @@ Përfundim: S’u krijua dot kartelë e re kuturu <pre>%1</pre>. + + RemoveUserJob + + + Remove live user from target system + Hiq përdoruesin live nga sistemi i synuar + + RemoveVolumeGroupJob @@ -2685,140 +2719,153 @@ Përfundim: Formular - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Përzgjidhni ku të instalohet %1.<br/><font color=\"red\">Kujdes: </font>kjo do të sjellë fshirjen e krejt kartelave në pjesën e përzgjedhur. - + The selected item does not appear to be a valid partition. Objekti i përzgjedhur s’duket se është pjesë e vlefshme. - + %1 cannot be installed on empty space. Please select an existing partition. %1 s’mund të instalohet në hapësirë të zbrazët. Ju lutemi, përzgjidhni një pjesë ekzistuese. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 s’mund të instalohet në një pjesë të llojit extended. Ju lutemi, përzgjidhni një pjesë parësore ose logjike ekzistuese. - + %1 cannot be installed on this partition. %1 s’mund të instalohet në këtë pjesë. - + Data partition (%1) Pjesë të dhënash (%1) - + Unknown system partition (%1) Pjesë sistemi e panjohur (%1) - + %1 system partition (%2) Pjesë sistemi %1 (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>Ndarja %1 është shumë e vogël për %2. Ju lutemi, përzgjidhni një pjesë me kapacitet të paktën %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/>Në këtë sistem s’gjendet dot ndonjë pjesë sistemi EFI. Ju lutemi, që të rregulloni %1, kthehuni mbrapsht dhe përdorni procesin e pjesëzimit dorazi. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 do të instalohet në %2.<br/><font color=\"red\">Kujdes: </font>krejt të dhënat në pjesën %2 do të humbin. - + The EFI system partition at %1 will be used for starting %2. Për nisjen e %2 do të përdoret ndarja EFI e sistemit te %1. - + EFI system partition: Pjesë Sistemi EFI: + + RequirementsModel + + + This program will ask you some questions and set up your installation + Ky program do t’ju bëjë ca pyetje dhe do t’ju ndihmojë të ujdisni instalimin tuaj + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + Ky program nuk plotëson domosdoshmëritë minimum për instalimn. +Instalimi s’mund të vazhdojë + + ResizeFSJob - + Resize Filesystem Job Akt Ripërmasimi Sistemi Kartelash - + Invalid configuration Formësim i palvefshëm - + The file-system resize job has an invalid configuration and will not run. Akti i ripërmasimit të sistemit të kartela ka një formësim të pavlefshëm dhe nuk do të kryhet. - - + KPMCore not Available S’ka KPMCore - - + Calamares cannot start KPMCore for the file-system resize job. Calamares s’mund të nisë KPMCore për aktin e ripërmasimit të sistemit të kartelave. - - - - - + + + + + Resize Failed Ripërmasimi Dështoi - + The filesystem %1 could not be found in this system, and cannot be resized. Sistemi %1 i kartelave s’u gjet dot në këtë sistem, dhe s’mund të ripërmasohet. - + The device %1 could not be found in this system, and cannot be resized. Pajisja %1 s’u gjet dot në këtë sistem, dhe s’mund të ripërmasohet. - - + + The filesystem %1 cannot be resized. Sistemi %1 i kartelave s’mund të ripërmasohet. - - + + The device %1 cannot be resized. Pajisja %1 s’mund të ripërmasohet. - + The filesystem %1 must be resized, but cannot. Sistemi %1 i kartelave duhet ripërmasuar, por kjo s’bëhet dot. - + The device %1 must be resized, but cannot Pajisja %1 duhet ripërmasuar, por kjo s’bëhet dot. @@ -2876,12 +2923,12 @@ Përfundim: ResultsListDialog - + For best results, please ensure that this computer: Për përfundime më të mira, ju lutemi, garantoni që ky kompjuter: - + System requirements Sistem i domosdoshëm @@ -2889,27 +2936,27 @@ Përfundim: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> Ky kompjuter s’i plotëson kërkesat minimum për rregullimin e %1.<br/>Rregullimi s’mund të vazhdojë. <a href=\"#details\">Hollësi…</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Ky kompjuter s’i plotëson kërkesat minimum për instalimin e %1.<br/>Instalimi s’mund të vazhdojë. <a href=\"#details\">Hollësi…</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. Ky kompjuter s’i plotëson disa nga domosdoshmëritë e rekomanduara për rregullimin e %1.<br/>Rregullimi mund të vazhdojë, por disa veçori mund të përfundojnë të çaktivizuara. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Ky kompjuter s’i plotëson disa nga domosdoshmëritë e rekomanduara për instalimin e %1.<br/>Instalimi mund të vazhdojë, por disa veçori mund të përfundojnë të çaktivizuara. - + This program will ask you some questions and set up %2 on your computer. Ky program do t’ju bëjë disa pyetje dhe do të rregullojë %2 në kompjuterin tuaj. @@ -2930,17 +2977,17 @@ Përfundim: SetHostNameJob - + Set hostname %1 Cakto strehëemër %1 - + Set hostname <strong>%1</strong>. Cakto strehëemër <strong>%1</strong>. - + Setting hostname %1. Po caktohet strehëemri %1. @@ -2990,82 +3037,82 @@ Përfundim: SetPartFlagsJob - + Set flags on partition %1. Vendos flamurka në pjesën %1. - + Set flags on %1MiB %2 partition. Vendos flamurka në pjesën %1MiB %2.` - + Set flags on new partition. Vendos flamurka në pjesë të re. - + Clear flags on partition <strong>%1</strong>. Hiqi flamurkat te ndarja <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. Hiqi flamurkat te pjesa %1MiB <strong>%2</strong>. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. Vëri flamurkë pjesës %1MiB <strong>%2</strong> si <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. Po hiqen flamurkat në pjesën %1MiB <strong>%2</strong>. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. Po vihen flamurkat <strong>%3</strong> në pjesën %1MiB <strong>%2</strong>. - + Clear flags on new partition. Hiqi flamurkat te ndarja e re. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Vëri flamurkë pjesës <strong>%1</strong> si <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Vëri flamurkë pjesës së re si <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Po hiqen flamurkat në pjesën <strong>%1</strong>. - + Clearing flags on new partition. Po hiqen flamurkat në pjesën e re. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Po vihen flamurkat <strong>%2</strong> në pjesën <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Po vihen flamurkat <strong>%1</strong> në pjesën e re. - + The installer failed to set flags on partition %1. Instaluesi s’arriti të vërë flamurka në pjesën %1. @@ -3295,47 +3342,47 @@ Përfundim: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>Nëse këtë kompjuter do ta përdorë më shumë se një person, mund të krijoni disa llogari, pas rregullimit.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>Nëse këtë kompjuter do ta përdorë më shumë se një person, mund të krijoni disa llogari, pas instalimit.</small> - + Your username is too long. Emri juaj i përdoruesit është shumë i gjatë. - + Your username must start with a lowercase letter or underscore. Emri juaj i përdoruesit duhet të fillojë me një shkronjë të vogël ose nënvijë. - + Only lowercase letters, numbers, underscore and hyphen are allowed. Lejohen vetëm shkronja të vogla, numra, nënvijë dhe vijë ndarëse. - + Only letters, numbers, underscore and hyphen are allowed. Lejohen vetëm shkronja, numra, nënvijë dhe vijë ndarëse. - + Your hostname is too short. Strehëemri juaj është shumë i shkurtër. - + Your hostname is too long. Strehëemri juaj është shumë i gjatë. - + Your passwords do not match! Fjalëkalimet tuaj s’përputhen! @@ -3473,42 +3520,42 @@ Përfundim: &Mbi - + <h1>Welcome to the %1 installer.</h1> <h1>Mirë se vini te instaluesi i %1.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Mirë se vini te instaluesi Calamares për %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>Mirë se vini te programi i rregullimit Calamares për %1.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>Mirë se vini te rregullimi i %1.</h1> - + About %1 setup Mbi rregullimin e %1 - + About %1 installer Rreth instaluesit %1 - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <h1>%1</h1><br/><strong>%2<br/>për %3</strong><br/><br/>Të drejta Kopjimi 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Të drejta Kopjimi 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Falënderime për <a href="https://calamares.io/team/">ekipin e Calamares</a> dhe <a href="https://www.transifex.com/calamares/calamares/">ekipin e përkthyesve të Calamares</a>.<br/><br/>Zhvillimi i <a href="https://calamares.io/">Calamares</a> sponsorizohet nga <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support Asistencë %1 @@ -3516,7 +3563,7 @@ Përfundim: WelcomeQmlViewStep - + Welcome Mirë se vini @@ -3524,7 +3571,7 @@ Përfundim: WelcomeViewStep - + Welcome Mirë se vini @@ -3532,7 +3579,7 @@ Përfundim: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> <h3>%1</h3> diff --git a/lang/calamares_sr.ts b/lang/calamares_sr.ts index b96ae6055..b74e3b2f6 100644 --- a/lang/calamares_sr.ts +++ b/lang/calamares_sr.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 - + Boot Partition Подизна партиција @@ -42,7 +42,7 @@ Не инсталирај подизни учитавач - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Завршено @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Извршавам %1 операцију. - + Bad working directory path Лоша путања радног директоријума - + Working directory %1 for python job %2 is not readable. Радни директоријум %1 за питонов посао %2 није читљив. - + Bad main script file Лош фајл главне скрипте - + Main script file %1 for python job %2 is not readable. Фајл главне скрипте %1 за питонов посао %2 није читљив. - + Boost.Python error in job "%1". Boost.Python грешка у послу „%1“. @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -255,174 +255,174 @@ Calamares::ViewManager - + &Back &Назад - + &Next &Следеће - + &Cancel &Откажи - + Cancel setup without changing the system. - + Cancel installation without changing the system. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? Отказати инсталацију? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Да ли стварно желите да прекинете текући процес инсталације? Инсталер ће бити затворен и све промене ће бити изгубљене. - - + + &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 Инсталација није успела @@ -430,22 +430,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type Непознат тип изузетка - + unparseable Python error - + unparseable Python traceback - + Unfetchable Python error. @@ -462,17 +462,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program - + %1 Installer %1 инсталер - + Show debug information @@ -480,7 +480,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... @@ -493,134 +493,134 @@ The installer will quit and all changes will be lost. Форма - + After: После: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Ручно партиционисање</strong><br/>Сами можете креирати или мењати партције. - + Boot loader location: Подизни учитавач на: - + Select storage de&vice: Изаберите у&ређај за смештање: - - - - + + + + Current: Тренутно: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -628,17 +628,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 Уклони тачке припајања за операције партиције на %1 - + Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 Уклоњене све тачке припајања за %1 @@ -685,10 +685,33 @@ The installer will quit and all changes will be lost. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + + + ContextualProcessJob - + Contextual Processes Job @@ -746,27 +769,27 @@ The installer will quit and all changes will be lost. Вели&чина - + En&crypt - + Logical Логичка - + Primary Примарна - + GPT GPT - + Mountpoint already in use. Please select another one. @@ -774,22 +797,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. Инсталација није успела да направи партицију на диску '%1'. @@ -825,22 +848,22 @@ 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. @@ -992,13 +1015,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) - + %1 - (%2) device[name] - (device-node[name]) @@ -1111,7 +1134,7 @@ The installer will quit and all changes will be lost. - + Please enter the same passphrase in both boxes. @@ -1119,37 +1142,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. @@ -1233,22 +1256,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. - + The installer failed to format partition %1 on disk '%2'. @@ -1655,16 +1678,6 @@ 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) @@ -1676,7 +1689,7 @@ The installer will quit and all changes will be lost. - + Network Installation. (Disabled: Incorrect configuration) @@ -2022,7 +2035,7 @@ The installer will quit and all changes will be lost. - + Password is empty @@ -2068,6 +2081,19 @@ The installer will quit and all changes will be lost. + + PackageModel + + + Name + Назив + + + + Description + Опис + + Page_Keyboard @@ -2230,34 +2256,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space - - + + New partition - + Name Назив - + File System Фајл систем - + Mount Point - + Size @@ -2325,17 +2351,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2509,65 +2535,65 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. Лоши параметри при позиву посла процеса. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2586,22 +2612,22 @@ Output: подразумевано - + unknown непознато - + extended проширена - + unformatted неформатирана - + swap @@ -2655,6 +2681,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2682,140 +2716,152 @@ Output: Форма - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. - + %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. - + Data partition (%1) - + Unknown system partition (%1) - + %1 system partition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2873,12 +2919,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: За најбоље резултате обезбедите да овај рачунар: - + System requirements Системски захтеви @@ -2886,27 +2932,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - + This program will ask you some questions and set up %2 on your computer. @@ -2927,17 +2973,17 @@ Output: SetHostNameJob - + Set hostname %1 - + Set hostname <strong>%1</strong>. - + Setting hostname %1. @@ -2987,82 +3033,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. @@ -3292,47 +3338,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. Ваше корисничко име је предугачко. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. Име вашег "домаћина" - hostname је прекратко. - + Your hostname is too long. Ваше име домаћина је предуго - hostname - + Your passwords do not match! Лозинке се не поклапају! @@ -3470,42 +3516,42 @@ Output: &О програму - + <h1>Welcome to the %1 installer.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer О %1 инсталатеру - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 подршка @@ -3513,7 +3559,7 @@ Output: WelcomeQmlViewStep - + Welcome Добродошли @@ -3521,7 +3567,7 @@ Output: WelcomeViewStep - + Welcome Добродошли @@ -3529,7 +3575,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_sr@latin.ts b/lang/calamares_sr@latin.ts index f09df46f3..3742dca93 100644 --- a/lang/calamares_sr@latin.ts +++ b/lang/calamares_sr@latin.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Master Boot Record na %1 - + Boot Partition Particija za pokretanje sistema @@ -42,7 +42,7 @@ - + %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Gotovo @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. - + Bad working directory path Neispravna putanja do radne datoteke - + Working directory %1 for python job %2 is not readable. Nemoguće pročitati radnu datoteku %1 za funkciju %2 u Python-u. - + Bad main script file Neispravan glavna datoteka za skriptu - + Main script file %1 for python job %2 is not readable. Glavna datoteka za skriptu %1 za Python funkciju %2 se ne može pročitati. - + Boost.Python error in job "%1". Boost.Python greška u funkciji %1 @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -255,174 +255,174 @@ Calamares::ViewManager - + &Back &Nazad - + &Next &Dalje - + &Cancel &Prekini - + Cancel setup without changing the system. - + Cancel installation without changing the system. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? Prekini instalaciju? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Da li stvarno želite prekinuti trenutni proces instalacije? Instaler će se zatvoriti i sve promjene će biti izgubljene. - - + + &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 Greška - + Installation Failed Neuspješna instalacija @@ -430,22 +430,22 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. CalamaresPython::Helper - + Unknown exception type Nepoznat tip izuzetka - + unparseable Python error unparseable Python error - + unparseable Python traceback unparseable Python traceback - + Unfetchable Python error. Unfetchable Python error. @@ -462,17 +462,17 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. CalamaresWindow - + %1 Setup Program - + %1 Installer %1 Instaler - + Show debug information @@ -480,7 +480,7 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. CheckerContainer - + Gathering system information... @@ -493,134 +493,134 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. - + After: Poslije: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + Select storage de&vice: - - - - + + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -628,17 +628,17 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. ClearMountsJob - + Clear mounts for partitioning operations on %1 Skini tačke montiranja za operacije nad particijama na %1 - + Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 Sve tačke montiranja na %1 skinute @@ -685,10 +685,33 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + + + ContextualProcessJob - + Contextual Processes Job @@ -746,27 +769,27 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. Veli&čina - + En&crypt - + Logical Logička - + Primary Primarna - + GPT GPT - + Mountpoint already in use. Please select another one. @@ -774,22 +797,22 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. Instaler nije uspeo napraviti particiju na disku '%1'. @@ -825,22 +848,22 @@ 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. @@ -992,13 +1015,13 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) @@ -1111,7 +1134,7 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. - + Please enter the same passphrase in both boxes. @@ -1119,37 +1142,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. @@ -1233,22 +1256,22 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. - + The installer failed to format partition %1 on disk '%2'. Instaler nije uspeo formatirati particiju %1 na disku '%2'. @@ -1655,16 +1678,6 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. NetInstallPage - - - Name - Naziv - - - - Description - - Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1676,7 +1689,7 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. - + Network Installation. (Disabled: Incorrect configuration) @@ -2022,7 +2035,7 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. - + Password is empty @@ -2068,6 +2081,19 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. + + PackageModel + + + Name + Naziv + + + + Description + + + Page_Keyboard @@ -2230,34 +2256,34 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. PartitionModel - - + + Free Space Slobodan prostor - - + + New partition Nova particija - + Name Naziv - + File System Fajl sistem - + Mount Point - + Size Veličina @@ -2325,17 +2351,17 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2509,65 +2535,65 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. Pogrešni parametri kod poziva funkcije u procesu. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2586,22 +2612,22 @@ Output: - + unknown - + extended - + unformatted - + swap @@ -2655,6 +2681,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2682,140 +2716,152 @@ Output: - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. - + %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. - + Data partition (%1) - + Unknown system partition (%1) - + %1 system partition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2873,12 +2919,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: Za najbolje rezultate, uvjetite se da li ovaj računar: - + System requirements @@ -2886,27 +2932,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - + This program will ask you some questions and set up %2 on your computer. @@ -2927,17 +2973,17 @@ Output: SetHostNameJob - + Set hostname %1 Postavi ime računara %1 - + Set hostname <strong>%1</strong>. - + Setting hostname %1. @@ -2987,82 +3033,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. @@ -3292,47 +3338,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your passwords do not match! Vaše lozinke se ne poklapaju @@ -3470,42 +3516,42 @@ Output: - + <h1>Welcome to the %1 installer.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer - + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support @@ -3513,7 +3559,7 @@ Output: WelcomeQmlViewStep - + Welcome Dobrodošli @@ -3521,7 +3567,7 @@ Output: WelcomeViewStep - + Welcome Dobrodošli @@ -3529,7 +3575,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_sv.ts b/lang/calamares_sv.ts index f5257f027..ec03064e6 100644 --- a/lang/calamares_sv.ts +++ b/lang/calamares_sv.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Master Boot Record på %1 - + Boot Partition Startpartition @@ -42,7 +42,7 @@ Installera inte någon starthanterare - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Klar @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. Kör %1-operation - + Bad working directory path Arbetskatalogens sökväg är ogiltig - + Working directory %1 for python job %2 is not readable. Arbetskatalog %1 för pythonuppgift %2 är inte läsbar. - + Bad main script file Ogiltig huvudskriptfil - + Main script file %1 for python job %2 is not readable. Huvudskriptfil %1 för pythonuppgift %2 är inte läsbar. - + Boost.Python error in job "%1". Boost.Python-fel i uppgift "%'1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... Laddar ... - + QML Step <i>%1</i>. QML steg <i>%1</i>. - + Loading failed. @@ -253,174 +253,174 @@ Calamares::ViewManager - + &Back &Bakåt - + &Next &Nästa - + &Cancel Avbryt - + Cancel setup without changing the system. Avbryt inställningarna utan att förändra systemet. - + Cancel installation without changing the system. Avbryt installationen utan att förändra systemet. - + Setup Failed Inställningarna misslyckades - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. Sändningen misslyckades. Ingenting sparades på webbplatsen. - + Calamares Initialization Failed Initieringen av Calamares misslyckades - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: <br/>Följande moduler kunde inte hämtas: - + Continue with installation? Vill du fortsätta med installationen? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now &Installera nu - + &Set up &Installera - + &Install &Installera - + Setup is complete. Close the setup program. Installationen är klar. Du kan avsluta installationsprogrammet. - + Cancel setup? Avbryt inställningarna? - + Cancel installation? Avbryt installation? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Är du säker på att du vill avsluta installationen i förtid? Alla ändringar kommer att gå förlorade. - - + + &Yes &Ja - - + + &No &Nej - + &Close &Stäng - + 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 &Klar - + The installation is complete. Close the installer. Installationen är klar. Du kan avsluta installationshanteraren. - + Error Fel - + Installation Failed Installationen misslyckades @@ -428,22 +428,22 @@ Alla ändringar kommer att gå förlorade. CalamaresPython::Helper - + Unknown exception type Okänd undantagstyp - + unparseable Python error Otolkbart Pythonfel - + unparseable Python traceback Otolkbar Python-traceback - + Unfetchable Python error. Ohämtbart Pythonfel @@ -460,17 +460,17 @@ Alla ändringar kommer att gå förlorade. CalamaresWindow - + %1 Setup Program %1 Installationsprogram - + %1 Installer %1-installationsprogram - + Show debug information Visa avlusningsinformation @@ -478,7 +478,7 @@ Alla ändringar kommer att gå förlorade. CheckerContainer - + Gathering system information... Samlar systeminformation... @@ -491,134 +491,134 @@ Alla ändringar kommer att gå förlorade. Formulär - + After: Efter: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Manuell partitionering</strong><br/>Du kan själv skapa och ändra storlek på partitionerna. - + Boot loader location: Sökväg till starthanterare: - + Select storage de&vice: Välj lagringsenhet: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <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-partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Denna lagringsenhet ser inte ut att ha ett operativsystem installerat. Vad vill du göra?<br/>Du kommer kunna granska och bekräfta dina val innan någon ändring görs på lagringseneheten. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Rensa lagringsenhet</strong><br/>Detta kommer <font color="red">radera</font> all existerande data på den valda lagringsenheten. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Denna lagringsenhet har %1 på sig. Vad vill du göra?<br/>Du kommer kunna granska och bekräfta dina val innan någon ändring görs på lagringsenheten. - + No Swap Ingen Swap - + Reuse Swap Återanvänd Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file Använd en fil som växlingsenhet - - - - + + + + <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. @@ -626,17 +626,17 @@ Alla ändringar kommer att gå förlorade. ClearMountsJob - + Clear mounts for partitioning operations on %1 Rensa monteringspunkter för partitionering på %1 - + Clearing mounts for partitioning operations on %1. Rensar monteringspunkter för partitionering på %1. - + Cleared all mounts for %1 Rensade alla monteringspunkter för %1 @@ -683,10 +683,33 @@ Alla ändringar kommer att gå förlorade. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>Välkommen till Calamares installationsprogrammet för %1.</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>Välkommen till %1 installation.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Välkommen till installationsprogrammet Calamares för %1.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Välkommen till %1-installeraren.</h1> + + ContextualProcessJob - + Contextual Processes Job @@ -744,27 +767,27 @@ Alla ändringar kommer att gå förlorade. Storlek: - + En&crypt Kr%yptera - + Logical Logisk - + Primary Primär - + GPT GPT - + Mountpoint already in use. Please select another one. Monteringspunkt används redan. Välj en annan. @@ -772,22 +795,22 @@ Alla ändringar kommer att gå förlorade. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. Skapa ny %2MiB partition på %4 (%3) med filsystem %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. Skapa ny <strong>%2MiB</strong>partition på <strong>%4</strong> (%3) 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'. @@ -823,22 +846,22 @@ 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. @@ -990,13 +1013,13 @@ Alla ändringar kommer att gå förlorade. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1109,7 +1132,7 @@ Alla ändringar kommer att gå förlorade. Bekräfta lösenord - + Please enter the same passphrase in both boxes. Vänligen skriv samma lösenord i båda fälten. @@ -1117,37 +1140,37 @@ Alla ändringar kommer att gå förlorade. FillGlobalStorageJob - + Set partition information Ange partitionsinformation - + Install %1 on <strong>new</strong> %2 system partition. Installera %1 på <strong>ny</strong> %2 system partition. - + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. Skapa <strong> ny </strong> %2 partition med monteringspunkt <strong> %1</strong>. - + Install %2 on %3 system partition <strong>%1</strong>. Installera %2 på %3 system partition <strong>%1</strong>. - + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. Skapa %3 partition <strong>%1</strong> med monteringspunkt <strong>%2</strong>. - + Install boot loader on <strong>%1</strong>. Installera uppstartshanterare på <strong>%1</strong>. - + Setting up mount points. Ställer in monteringspunkter. @@ -1231,22 +1254,22 @@ Alla ändringar kommer att gå förlorade. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. Formatera partition %1 (filsystem: %2, storlek: %3 MiB) på %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. Formatera <strong>%3MiB</strong> partition <strong>%1</strong> med filsystem <strong>%2</strong>. - + Formatting partition %1 with file system %2. Formatera partition %1 med filsystem %2. - + The installer failed to format partition %1 on disk '%2'. Installationsprogrammet misslyckades att formatera partition %1 på disk '%2'. @@ -1301,7 +1324,7 @@ Alla ändringar kommer att gå förlorade. The setup program is not running with administrator rights. - + Installationsprogammet körs inte med administratörsrättigheter. @@ -1311,12 +1334,12 @@ Alla ändringar kommer att gå förlorade. has a screen large enough to show the whole installer - + har en tillräckligt stor skärm för att visa hela installationsprogrammet The screen is too small to display the setup program. - + Skärmen är för liten för att visa installationsprogrammet. @@ -1653,16 +1676,6 @@ Alla ändringar kommer att gå förlorade. NetInstallPage - - - Name - Namn - - - - Description - Beskrivning - Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1674,7 +1687,7 @@ Alla ändringar kommer att gå förlorade. - + Network Installation. (Disabled: Incorrect configuration) Nätverksinstallation. (Inaktiverad: inkorrekt konfiguration) @@ -1842,7 +1855,7 @@ Alla ändringar kommer att gå förlorade. The password contains less than %1 digits - + Lösenordet innehåller mindre än %1 siffror @@ -1852,7 +1865,7 @@ Alla ändringar kommer att gå förlorade. The password contains less than %1 uppercase letters - + Lösenordet innehåller mindre än %1 stora bokstäver @@ -1862,7 +1875,7 @@ Alla ändringar kommer att gå förlorade. The password contains less than %1 lowercase letters - + Lösenordet innehåller mindre än %1 små bokstäver @@ -2020,7 +2033,7 @@ Alla ändringar kommer att gå förlorade. Okänt fel - + Password is empty Lösenordet är blankt @@ -2066,6 +2079,19 @@ Alla ändringar kommer att gå förlorade. Paket + + PackageModel + + + Name + Namn + + + + Description + Beskrivning + + Page_Keyboard @@ -2228,34 +2254,34 @@ Alla ändringar kommer att gå förlorade. PartitionModel - - + + Free Space Ledigt utrymme - - + + New partition Ny partition - + Name Namn - + File System Filsystem - + Mount Point Monteringspunkt - + Size Storlek @@ -2323,17 +2349,17 @@ Alla ändringar kommer att gå förlorade. Installera uppstartshanterare på: - + Are you sure you want to create a new partition table on %1? Är du säker på att du vill skapa en ny partitionstabell på %1? - + Can not create new partition Kan inte skapa ny partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2443,7 +2469,7 @@ Alla ändringar kommer att gå förlorade. There are no partitions to install on. - + Det finns inga partitioner att installera på. @@ -2507,13 +2533,13 @@ Alla ändringar kommer att gå förlorade. ProcessResult - + There was no output from the command. - + Output: @@ -2522,52 +2548,52 @@ Utdata: - + External command crashed. Externt kommando kraschade. - + Command <i>%1</i> crashed. Kommando <i>%1</i> kraschade. - + External command failed to start. Externt kommando misslyckades med att starta - + Command <i>%1</i> failed to start. Kommando <i>%1</i> misslyckades med att starta.  - + Internal error when starting command. - + Bad parameters for process job call. Ogiltiga parametrar för processens uppgiftsanrop. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. Kommando <i>%1</i> misslyckades att slutföras på %2 sekunder. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2586,22 +2612,22 @@ Utdata: Standard - + unknown okänd - + extended utökad - + unformatted oformaterad - + swap swap @@ -2655,18 +2681,26 @@ Utdata: Kunde inte skapa ny slumpmässig fil <pre>%1</pre>. + + RemoveUserJob + + + Remove live user from target system + Tar bort live användare från målsystemet + + RemoveVolumeGroupJob Remove Volume Group named %1. - + Ta bort volymgrupp med namnet %1. Remove Volume Group named <strong>%1</strong>. - + Ta bort volymgrupp med namnet <strong>%1</strong>. @@ -2682,140 +2716,152 @@ Utdata: Formulär - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Välj var du vill installera %1.<br/><font color="red">Varning: </font>detta kommer att radera alla filer på den valda partitionen. - + The selected item does not appear to be a valid partition. Det valda alternativet verkar inte vara en giltig partition. - + %1 cannot be installed on empty space. Please select an existing partition. %1 kan inte installeras i tomt utrymme. Välj en existerande partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 kan inte installeras på en utökad partition. Välj en existerande primär eller logisk partition. - + %1 cannot be installed on this partition. %1 kan inte installeras på den här partitionen. - + Data partition (%1) Datapartition (%1) - + Unknown system partition (%1) Okänd systempartition (%1) - + %1 system partition (%2) Systempartition för %1 (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>Partitionen %1 är för liten för %2. Välj en partition med minst storleken %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 kommer att installeras på %2.<br/><font color="red">Varning: </font>all data på partition %2 kommer att gå förlorad. - + The EFI system partition at %1 will be used for starting %2. EFI-systempartitionen %1 kommer att användas för att starta %2. - + EFI system partition: EFI-systempartition: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration Ogiltig konfiguration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available KPMCore inte tillgänglig - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed Storleksändringen misslyckades - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2873,12 +2919,12 @@ Utdata: ResultsListDialog - + For best results, please ensure that this computer: För bästa resultat, vänligen se till att datorn: - + System requirements Systemkrav @@ -2886,27 +2932,27 @@ Utdata: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> Datorn uppfyller inte minimikraven för inställning av %1.<br/>Inga inställningar kan inte göras. <a href="#details">Detaljer...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Denna dator uppfyller inte minimikraven för att installera %1.<br/>Installationen kan inte fortsätta. <a href="#details">Detaljer...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. Några av kraven för inställning av %1 uppfylls inte av datorn.<br/>Inställningarna kan ändå göras men vissa funktioner kommer kanske inte att kunna användas. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Denna dator uppfyller inte alla rekommenderade krav för att installera %1.<br/>Installationen kan fortsätta, men alla alternativ och funktioner kanske inte kan användas. - + This program will ask you some questions and set up %2 on your computer. Detta program kommer att ställa dig några frågor och installera %2 på din dator. @@ -2927,17 +2973,17 @@ Utdata: SetHostNameJob - + Set hostname %1 Ange värdnamn %1 - + Set hostname <strong>%1</strong>. Ange värdnamn <strong>%1</strong>. - + Setting hostname %1. Anger värdnamn %1. @@ -2987,84 +3033,84 @@ Utdata: SetPartFlagsJob - + Set flags on partition %1. Sätt flaggor på partition %1. - + Set flags on %1MiB %2 partition. Sätt flaggor på %1MiB %2 partition. - + Set flags on new partition. Sätt flaggor på ny partition. - + Clear flags on partition <strong>%1</strong>. Rensa flaggor på partition <strong>%1</strong>, - + Clear flags on %1MiB <strong>%2</strong> partition. Rensa flaggor på %1MiB <strong>%2</strong>partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. Flagga %1MiB <strong>%2</strong>partition som <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. Rensa flaggor på %1MiB <strong>%2</strong>partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. Sätter flaggor <strong>%3</strong> på %11MiB <strong>%2</strong>partition. - + Clear flags on new partition. Rensa flaggor på ny partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Flagga partition <strong>%1</strong> som <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Flagga ny partition som <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. Rensar flaggor på partition <strong>%1</strong>. - + Clearing flags on new partition. Rensar flaggor på ny partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Sätter flaggor <strong>%2</strong> på partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Sätter flaggor <strong>%1</strong> på ny partition - + The installer failed to set flags on partition %1. - + Installationsprogrammet misslyckades med att sätta flaggor på partition %1. @@ -3292,47 +3338,47 @@ Utdata: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>Om mer än en person skall använda datorn så kan du skapa flera användarkonton när inställningarna är klara.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>Om mer än en person skall använda datorn så kan du skapa flera användarkonton när installationen är klar.</small> - + Your username is too long. Ditt användarnamn är för långt. - + Your username must start with a lowercase letter or underscore. Ditt användarnamn måste börja med en liten bokstav eller ett understreck. - + Only lowercase letters, numbers, underscore and hyphen are allowed. Endast små bokstäver, nummer, understreck och bindestreck är tillåtet. - + Only letters, numbers, underscore and hyphen are allowed. Endast bokstäver, nummer, understreck och bindestreck är tillåtet. - + 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 passwords do not match! Lösenorden överensstämmer inte! @@ -3470,42 +3516,42 @@ Utdata: Om, &A - + <h1>Welcome to the %1 installer.</h1> <h1>Välkommen till %1-installeraren.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Välkommen till installationsprogrammet Calamares för %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>Välkommen till Calamares installationsprogrammet för %1.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>Välkommen till %1 installation.</h1> - + About %1 setup Om inställningarna för %1 - + About %1 installer Om %1-installationsprogrammet - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1-support @@ -3513,7 +3559,7 @@ Utdata: WelcomeQmlViewStep - + Welcome Välkommen @@ -3521,7 +3567,7 @@ Utdata: WelcomeViewStep - + Welcome Välkommen @@ -3529,7 +3575,7 @@ Utdata: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> <h3>%1</h3> diff --git a/lang/calamares_th.ts b/lang/calamares_th.ts index b4230ffb1..4c77ff785 100644 --- a/lang/calamares_th.ts +++ b/lang/calamares_th.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Master Boot Record ของ %1 - + Boot Partition พาร์ทิชัน Boot @@ -42,7 +42,7 @@ ไม่ต้องติดตั้งบูตโหลดเดอร์ - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done เสร็จสิ้น @@ -177,32 +177,32 @@ Calamares::PythonJob - + 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". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... กำลังโหลด ... - + QML Step <i>%1</i>. - + Loading failed. @@ -251,174 +251,174 @@ Calamares::ViewManager - + &Back &B ย้อนกลับ - + &Next &N ถัดไป - + &Cancel &C ยกเลิก - + Cancel setup without changing the system. - + Cancel installation without changing the system. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? ยกเลิกการติดตั้ง? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. คุณต้องการยกเลิกกระบวนการติดตั้งที่กำลังดำเนินการอยู่หรือไม่? ตัวติดตั้งจะสิ้นสุดการทำงานและไม่บันทึกการเปลี่ยนแปลงที่ได้ดำเนินการก่อนหน้านี้ - - + + &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> ตัวติดตั้ง %1 กำลังพยายามที่จะทำการเปลี่ยนแปลงในดิสก์ของคุณเพื่อติดตั้ง %2<br/><strong>คุณจะไม่สามารถยกเลิกการเปลี่ยนแปลงเหล่านี้ได้</strong> - + &Install now &ติดตั้งตอนนี้ - + Go &back กลั&บไป - + &Done - + The installation is complete. Close the installer. - + Error ข้อผิดพลาด - + Installation Failed การติดตั้งล้มเหลว @@ -426,22 +426,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type ข้อผิดพลาดไม่ทราบประเภท - + unparseable Python error ข้อผิดพลาด unparseable Python - + unparseable Python traceback ประวัติย้อนหลัง unparseable Python - + Unfetchable Python error. ข้อผิดพลาด Unfetchable Python @@ -458,17 +458,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program - + %1 Installer ตัวติดตั้ง %1 - + Show debug information แสดงข้อมูลการดีบั๊ก @@ -476,7 +476,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... กำลังรวบรวมข้อมูลของระบบ... @@ -489,134 +489,134 @@ The installer will quit and all changes will be lost. ฟอร์ม - + After: หลัง: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>กำหนดพาร์ทิชันด้วยตนเอง</strong><br/>คุณสามารถสร้างหรือเปลี่ยนขนาดของพาร์ทิชันได้ด้วยตนเอง - + Boot loader location: ที่อยู่บูตโหลดเดอร์: - + Select storage de&vice: - - - - + + + + Current: ปัจจุบัน: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. ไม่พบพาร์ทิชันสำหรับระบบ EFI อยู่ที่ไหนเลยในระบบนี้ กรุณากลับไปเลือกใช้การแบ่งพาร์ทิชันด้วยตนเอง เพื่อติดตั้ง %1 - + The EFI system partition at %1 will be used for starting %2. พาร์ทิชันสำหรับระบบ EFI ที่ %1 จะถูกใช้เพื่อเริ่มต้น %2 - + EFI system partition: พาร์ทิชันสำหรับระบบ EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. อุปกรณ์จัดเก็บนี้มีระบบปฏิบัติการ %1 อยู่ คุณต้องการทำอย่างไร?<br/> คุณจะสามารถทบทวนและยืนยันตัวเลือกของคุณก่อนที่จะกระทำการเปลี่ยนแปลงไปยังอุปกรณ์จัดเก็บของคุณ - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>ติดตั้งควบคู่กับระบบปฏิบัติการเดิม</strong><br/>ตัวติดตั้งจะลดเนื้อที่พาร์ทิชันเพื่อให้มีเนื้อที่สำหรับ %1 - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>แทนที่พาร์ทิชัน</strong><br/>แทนที่พาร์ทิชันด้วย %1 - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. อุปกรณ์จัดเก็บนี้มีระบบปฏิบัติการอยู่แล้ว คุณต้องการทำอย่างไร?<br/> คุณจะสามารถทบทวนและยืนยันตัวเลือกของคุณก่อนที่จะกระทำการเปลี่ยนแปลงไปยังอุปกรณ์จัดเก็บของคุณ - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -624,17 +624,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 ล้างจุดเชื่อมต่อสำหรับการแบ่งพาร์ทิชันบน %1 - + Clearing mounts for partitioning operations on %1. กำลังล้างจุดเชื่อมต่อสำหรับการดำเนินงานเกี่ยวกับพาร์ทิชันบน %1 - + Cleared all mounts for %1 ล้างจุดเชื่อมต่อทั้งหมดแล้วสำหรับ %1 @@ -681,10 +681,33 @@ The installer will quit and all changes will be lost. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>ยินดีต้อนรับสู่ตัวติดตั้ง Calamares สำหรับ %1</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>ยินดีต้อนรับสู่ตัวติดตั้ง %1</h1> + + ContextualProcessJob - + Contextual Processes Job @@ -742,27 +765,27 @@ The installer will quit and all changes will be lost. &Z ขนาด: - + En&crypt - + Logical โลจิคอล - + Primary หลัก - + GPT GPT - + Mountpoint already in use. Please select another one. @@ -770,22 +793,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. ตัวติดตั้งไม่สามารถสร้างพาร์ทิชันบนดิสก์ '%1' @@ -821,22 +844,22 @@ 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 @@ -988,13 +1011,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) @@ -1107,7 +1130,7 @@ The installer will quit and all changes will be lost. - + Please enter the same passphrase in both boxes. @@ -1115,37 +1138,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. @@ -1229,22 +1252,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. - + The installer failed to format partition %1 on disk '%2'. ตัวติดตั้งไม่สามารถฟอร์แมทพาร์ทิชัน %1 บนดิสก์ '%2' @@ -1651,16 +1674,6 @@ 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) @@ -1672,7 +1685,7 @@ The installer will quit and all changes will be lost. - + Network Installation. (Disabled: Incorrect configuration) @@ -2018,7 +2031,7 @@ The installer will quit and all changes will be lost. ข้อผิดพลาดที่ไม่รู้จัก - + Password is empty รหัสผ่านว่าง @@ -2064,6 +2077,19 @@ The installer will quit and all changes will be lost. + + PackageModel + + + Name + ชื่อ + + + + Description + คำอธิบาย + + Page_Keyboard @@ -2226,34 +2252,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space พื้นที่ว่าง - - + + New partition พาร์ทิชันใหม่ - + Name ชื่อ - + File System ระบบไฟล์ - + Mount Point จุดเชื่อมต่อ - + Size ขนาด @@ -2321,17 +2347,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? คุณแน่ใจว่าจะสร้างตารางพาร์ทิชันใหม่บน %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2505,65 +2531,65 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. พารามิเตอร์ไม่ถูกต้องสำหรับการเรียกการทำงาน - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2582,22 +2608,22 @@ Output: ค่าเริ่มต้น - + unknown - + extended - + unformatted - + swap @@ -2651,6 +2677,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2678,140 +2712,152 @@ Output: ฟอร์ม - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. เลือกที่ที่จะติดตั้ง %1<br/><font color="red">คำเตือน: </font>ตัวเลือกนี้จะลบไฟล์ทั้งหมดบนพาร์ทิชันที่เลือก - + The selected item does not appear to be a valid partition. ไอเทมที่เลือกไม่ใช่พาร์ทิชันที่ถูกต้อง - + %1 cannot be installed on empty space. Please select an existing partition. ไม่สามารถติดตั้ง %1 บนพื้นที่ว่าง กรุณาเลือกพาร์ทิชันที่มี - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. ไม่สามารถติดตั้ง %1 บนพาร์ทิชัน extended กรุณาเลือกพาร์ทิชันหลักหรือพาร์ทิชันโลจิคัลที่มีอยู่ - + %1 cannot be installed on this partition. ไม่สามารถติดตั้ง %1 บนพาร์ทิชันนี้ - + Data partition (%1) พาร์ทิชันข้อมูล (%1) - + Unknown system partition (%1) พาร์ทิชันระบบที่ไม่รู้จัก (%1) - + %1 system partition (%2) %1 พาร์ทิชันระบบ (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. พาร์ทิชันสำหรับระบบ EFI ที่ %1 จะถูกใช้เพื่อเริ่มต้น %2 - + EFI system partition: พาร์ทิชันสำหรับระบบ EFI: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2869,12 +2915,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: สำหรับผลลัพธ์ที่ดีขึ้น โปรดตรวจสอบให้แน่ใจว่าคอมพิวเตอร์เครื่องนี้: - + System requirements ความต้องการของระบบ @@ -2882,27 +2928,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> ขณะที่กำลังติดตั้ง ตัวติดตั้งฟ้องว่า คอมพิวเตอร์นี้มีความต้องการไม่เพียงพอที่จะติดตั้ง %1.<br/>ไม่สามารถทำการติดตั้งต่อไปได้ <a href="#details">รายละเอียด...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. คอมพิวเตอร์มีความต้องการไม่เพียงพอที่จะติดตั้ง %1<br/>สามารถทำการติดตั้งต่อไปได้ แต่ฟีเจอร์บางอย่างจะถูกปิดไว้ - + This program will ask you some questions and set up %2 on your computer. โปรแกรมนี้จะถามคุณบางอย่าง เพื่อติดตั้ง %2 ไว้ในคอมพิวเตอร์ของคุณ @@ -2923,17 +2969,17 @@ Output: SetHostNameJob - + Set hostname %1 ตั้งค่าชื่อโฮสต์ %1 - + Set hostname <strong>%1</strong>. - + Setting hostname %1. @@ -2983,82 +3029,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. @@ -3288,47 +3334,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. ชื่อผู้ใช้ของคุณยาวเกินไป - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. ชื่อโฮสต์ของคุณสั้นเกินไป - + Your hostname is too long. ชื่อโฮสต์ของคุณยาวเกินไป - + Your passwords do not match! รหัสผ่านของคุณไม่ตรงกัน! @@ -3466,42 +3512,42 @@ Output: &A เกี่ยวกับ - + <h1>Welcome to the %1 installer.</h1> <h1>ยินดีต้อนรับสู่ตัวติดตั้ง %1</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>ยินดีต้อนรับสู่ตัวติดตั้ง Calamares สำหรับ %1</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer เกี่ยวกับตัวติดตั้ง %1 - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support @@ -3509,7 +3555,7 @@ Output: WelcomeQmlViewStep - + Welcome ยินดีต้อนรับ @@ -3517,7 +3563,7 @@ Output: WelcomeViewStep - + Welcome ยินดีต้อนรับ @@ -3525,7 +3571,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_tr_TR.ts b/lang/calamares_tr_TR.ts index 20f696932..c3193ada0 100644 --- a/lang/calamares_tr_TR.ts +++ b/lang/calamares_tr_TR.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 %1 Üzerine Önyükleyici Kur - + Boot Partition Önyükleyici Disk Bölümü @@ -42,7 +42,7 @@ Bir önyükleyici kurmayın - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Sistem kurulumu tamamlandı, kurulum aracından çıkabilirsiniz. @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. %1 işlemleri yapılıyor. - + Bad working directory path Dizin yolu kötü çalışıyor - + Working directory %1 for python job %2 is not readable. %2 python işleri için %1 dizinleme çalışırken okunamadı. - + Bad main script file Sorunlu betik dosyası - + Main script file %1 for python job %2 is not readable. %2 python işleri için %1 sorunlu betik okunamadı. - + Boost.Python error in job "%1". Boost.Python iş hatası "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... Yükleniyor ... - + QML Step <i>%1</i>. QML Adımı <i>%1</i>. - + Loading failed. Yükleme başarısız. @@ -253,175 +253,175 @@ Calamares::ViewManager - + &Back &Geri - + &Next &Sonraki - + &Cancel &Vazgeç - + Cancel setup without changing the system. Sistemi değiştirmeden kurulumu iptal edin. - + Cancel installation without changing the system. Sistemi değiştirmeden kurulumu iptal edin. - + Setup Failed Kurulum Başarısız - + Would you like to paste the install log to the web? Yükleme günlüğünü web'e yapıştırmak ister misiniz? - + Install Log Paste URL Günlük Yapıştırma URL'sini Yükle - + The upload was unsuccessful. No web-paste was done. Yükleme başarısız oldu. Web yapıştırması yapılmadı. - + Calamares Initialization Failed Calamares Başlatılamadı - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 yüklenemedi. Calamares yapılandırılmış modüllerin bazılarını yükleyemedi. Bu, Calamares'in kullandığınız dağıtıma uyarlamasından kaynaklanan bir sorundur. - + <br/>The following modules could not be loaded: <br/>Aşağıdaki modüller yüklenemedi: - + Continue with installation? Kuruluma devam edilsin mi? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> %1 sistem kurulum uygulaması,%2 ayarlamak için diskinizde değişiklik yapmak üzere. <br/><strong>Bu değişiklikleri geri alamayacaksınız.</strong> - + &Set up now &Şimdi kur - + &Set up &Kur - + &Install &Yükle - + Setup is complete. Close the setup program. Kurulum tamamlandı. Kurulum programını kapatın. - + Cancel setup? Kurulum iptal edilsin mi? - + Cancel installation? Yüklemeyi iptal et? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. Mevcut kurulum işlemini gerçekten iptal etmek istiyor musunuz? Kurulum uygulaması sonlandırılacak ve tüm değişiklikler kaybedilecek. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Yükleme işlemini gerçekten iptal etmek istiyor musunuz? Yükleyiciden çıkınca tüm değişiklikler kaybedilecek. - - + + &Yes &Evet - - + + &No &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 @@ -429,22 +429,22 @@ Yükleyiciden çıkınca tüm değişiklikler kaybedilecek. CalamaresPython::Helper - + Unknown exception type Bilinmeyen Özel Durum Tipi - + unparseable Python error Python hata ayıklaması - + unparseable Python traceback Python geri çekme ayıklaması - + Unfetchable Python error. Okunamayan Python hatası. @@ -462,17 +462,17 @@ Yükleyiciden çıkınca tüm değişiklikler kaybedilecek. CalamaresWindow - + %1 Setup Program %1 Kurulum Uygulaması - + %1 Installer %1 Yükleniyor - + Show debug information Hata ayıklama bilgisini göster @@ -480,7 +480,7 @@ Yükleyiciden çıkınca tüm değişiklikler kaybedilecek. CheckerContainer - + Gathering system information... Sistem bilgileri toplanıyor... @@ -493,135 +493,135 @@ Yükleyiciden çıkınca tüm değişiklikler kaybedilecek. Biçim - + After: Sonra: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Elle bölümleme</strong><br/>Bölümler oluşturabilir ve boyutlandırabilirsiniz. - + Boot loader location: Önyükleyici konumu: - + Select storage de&vice: Depolama ay&gıtı seç: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1, %2MB'a küçülecek ve %4 için yeni bir %3MB disk bölümü oluşturulacak. - + <strong>Select a partition to install on</strong> <strong>Yükleyeceğin disk bölümünü seç</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. Bu sistemde EFI disk bölümü bulunamadı. Lütfen geri dönün ve %1 kurmak için gelişmiş kurulum seçeneğini kullanın. - + The EFI system partition at %1 will be used for starting %2. %1 EFI sistem bölümü %2 başlatmak için kullanılacaktır. - + EFI system partition: EFI sistem bölümü: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Bu depolama aygıtı üzerinde yüklü herhangi bir işletim sistemi tespit etmedik. Ne yapmak istersiniz?<br/>Yaptığınız değişiklikler disk bölümü üzerine uygulanmadan önce gözden geçirme fırsatınız olacak. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Diski sil</strong><br/>Seçili depolama bölümündeki mevcut veriler şu anda <font color="red">silinecektir.</font> - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Bu depolama aygıtı üzerinde %1 vardır. Ne yapmak istersiniz?<br/>Yaptığınız değişiklikler disk bölümü üzerine uygulanmadan önce gözden geçirme fırsatınız olacak. - + No Swap Takas alanı yok - + Reuse Swap Yeniden takas alanı - + Swap (no Hibernate) Takas Alanı (uyku modu yok) - + Swap (with Hibernate) Takas Alanı (uyku moduyla) - + Swap to file Takas alanı dosyası - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Yanına yükleyin</strong><br/>Sistem yükleyici disk bölümünü küçülterek %1 için yer açacak. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Varolan bir disk bölümüne kur</strong><br/>Varolan bir disk bölümü üzerine %1 kur. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Bu depolama aygıtı üzerinde bir işletim sistemi yüklü. Ne yapmak istersiniz? <br/>Yaptığınız değişiklikler disk bölümü üzerine uygulanmadan önce gözden geçirme fırsatınız olacak. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Bu depolama aygıtı üzerinde birden fazla işletim sistemi var. Ne yapmak istersiniz? <br/>Yaptığınız değişiklikler disk bölümü üzerine uygulanmadan önce gözden geçirme fırsatınız olacak. @@ -629,17 +629,17 @@ Yükleyiciden çıkınca tüm değişiklikler kaybedilecek. ClearMountsJob - + Clear mounts for partitioning operations on %1 %1 bölümleme işlemleri için sorunsuz bağla - + Clearing mounts for partitioning operations on %1. %1 bölümleme işlemleri için bağlama noktaları temizleniyor. - + Cleared all mounts for %1 %1 için tüm bağlı bölümler ayrıldı @@ -686,10 +686,33 @@ Yükleyiciden çıkınca tüm değişiklikler kaybedilecek. Komutun kullanıcının adını bilmesi gerekir, ancak kullanıcı adı tanımlanmamıştır. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>%1 için Calamares sistem kurulum uygulamasına hoş geldiniz.</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>%1 Kurulumuna Hoşgeldiniz.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>%1 Calamares Sistem Yükleyici .</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>%1 Sistem Yükleyiciye Hoşgeldiniz.</h1> + + ContextualProcessJob - + Contextual Processes Job Bağlamsal Süreç İşleri @@ -747,27 +770,27 @@ Yükleyiciden çıkınca tüm değişiklikler kaybedilecek. Bo&yut: - + En&crypt Şif&rele - + Logical Mantıksal - + Primary Birincil - + GPT GPT - + Mountpoint already in use. Please select another one. Bağlama noktası zaten kullanımda. Lütfen diğerini seçiniz. @@ -775,22 +798,22 @@ Yükleyiciden çıkınca tüm değişiklikler kaybedilecek. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. %4 üzerinde (%3) ile %1 dosya sisteminde %2MB disk bölümü oluştur. - + Create new <strong>%2MiB</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> disk 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ı. @@ -826,22 +849,22 @@ Yükleyiciden çıkınca tüm değişiklikler kaybedilecek. 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ı. @@ -993,13 +1016,13 @@ Yükleyiciden çıkınca tüm değişiklikler kaybedilecek. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1112,7 +1135,7 @@ Yükleyiciden çıkınca tüm değişiklikler kaybedilecek. Parolayı doğrula - + Please enter the same passphrase in both boxes. Her iki kutuya da aynı parolayı giriniz. @@ -1120,37 +1143,37 @@ Yükleyiciden çıkınca tüm değişiklikler kaybedilecek. 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. @@ -1234,22 +1257,22 @@ Yükleyiciden çıkınca tüm değişiklikler kaybedilecek. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. %1 disk bölümü biçimle (dosya sistemi: %2 boyut: %3) %4 üzerinde. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. <strong>%1</strong> diskine <strong>%2</strong> dosya sistemi ile <strong>%3MB</strong> disk bölümü oluştur. - + Formatting partition %1 with file system %2. %1 disk bölümü %2 dosya sistemi ile biçimlendiriliyor. - + The installer failed to format partition %1 on disk '%2'. Yükleyici %1 bölümünü '%2' diski üzerinde biçimlendiremedi. @@ -1657,16 +1680,6 @@ Sistem güç kaynağına bağlı değil. NetInstallPage - - - Name - İsim - - - - Description - Açıklama - Network Installation. (Disabled: Unable to fetch package lists, check your network connection) @@ -1678,7 +1691,7 @@ Sistem güç kaynağına bağlı değil. Ağ Kurulum. (Devre dışı: Geçersiz grup verileri alındı) - + Network Installation. (Disabled: Incorrect configuration) Ağ Kurulumu. (Devre dışı: Yanlış yapılandırma) @@ -2024,7 +2037,7 @@ Sistem güç kaynağına bağlı değil. Bilinmeyen hata - + Password is empty Şifre boş @@ -2070,6 +2083,19 @@ Sistem güç kaynağına bağlı değil. Paketler + + PackageModel + + + Name + İsim + + + + Description + Açıklama + + Page_Keyboard @@ -2232,34 +2258,34 @@ Sistem güç kaynağına bağlı değil. PartitionModel - - + + Free Space Boş Alan - - + + New partition Yeni bölüm - + Name İsim - + File System Dosya Sistemi - + Mount Point Bağlama Noktası - + Size Boyut @@ -2327,17 +2353,17 @@ Sistem güç kaynağına bağlı değil. Ö&nyükleyiciyi şuraya kurun: - + Are you sure you want to create a new partition table on %1? %1 tablosunda yeni bölüm oluşturmaya devam etmek istiyor musunuz? - + Can not create new partition Yeni disk bölümü oluşturulamıyor - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. %1 üzerindeki disk bölümü tablosu zaten %2 birincil disk bölümüne sahip ve artık eklenemiyor. Lütfen bir birincil disk bölümü kaldırın ve bunun yerine uzatılmış bir disk bölümü ekleyin. @@ -2512,14 +2538,14 @@ Sistem güç kaynağına bağlı değil. ProcessResult - + There was no output from the command. Komut çıktısı yok. - + Output: @@ -2528,52 +2554,52 @@ Output: - + External command crashed. Harici komut çöktü. - + Command <i>%1</i> crashed. Komut <i>%1</i> çöktü. - + External command failed to start. Harici komut başlatılamadı. - + Command <i>%1</i> failed to start. Komut <i>%1</i> başlatılamadı. - + Internal error when starting command. Komut başlatılırken dahili hata. - + Bad parameters for process job call. Çalışma adımları başarısız oldu. - + External command failed to finish. Harici komut başarısız oldu. - + Command <i>%1</i> failed to finish in %2 seconds. Komut <i>%1</i> %2 saniyede başarısız oldu. - + External command finished with errors. Harici komut hatalarla bitti. - + Command <i>%1</i> finished with exit code %2. Komut <i>%1</i> %2 çıkış kodu ile tamamlandı @@ -2592,22 +2618,22 @@ Output: Varsayılan - + unknown bilinmeyen - + extended uzatılmış - + unformatted biçimlenmemiş - + swap Swap-Takas @@ -2661,6 +2687,14 @@ Output: <pre>%1</pre>yeni rasgele dosya oluşturulamadı. + + RemoveUserJob + + + Remove live user from target system + Liveuser kullanıcısını hedef sistemden kaldırın + + RemoveVolumeGroupJob @@ -2688,140 +2722,153 @@ Output: Biçim - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. %1 kurulacak diski seçin.<br/><font color="red">Uyarı: </font>Bu işlem seçili disk üzerindeki tüm dosyaları silecek. - + The selected item does not appear to be a valid partition. Seçili nesne, geçerli bir disk bölümü olarak görünmüyor. - + %1 cannot be installed on empty space. Please select an existing partition. %1 tanımlanmamış boş bir alana kurulamaz. Lütfen geçerli bir disk bölümü seçin. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 uzatılmış bir disk bölümüne kurulamaz. Geçerli bir, birincil disk ya da mantıksal disk bölümü seçiniz. - + %1 cannot be installed on this partition. %1 bu disk bölümüne yüklenemedi. - + Data partition (%1) Veri diski (%1) - + Unknown system partition (%1) Bilinmeyen sistem bölümü (%1) - + %1 system partition (%2) %1 sistem bölümü (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>disk bölümü %2 için %1 daha küçük. Lütfen, en az %3 GB kapasiteli bir disk bölümü seçiniz. - + <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/>Bu sistemde EFI disk bölümü bulamadı. Lütfen geri dönün ve %1 kurmak için gelişmiş kurulum seçeneğini kullanın. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%2 üzerine %1 kuracak.<br/><font color="red">Uyarı: </font>%2 diskindeki tüm veriler kaybedilecek. - + 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ü: + + RequirementsModel + + + This program will ask you some questions and set up your installation + Bu program size bazı sorular soracak ve kurulumunuzu ayarlayacaktır. + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + Kurulum için minimum gereksinimler karşılanamamaktadır. +Kurulum devam edemiyor + + ResizeFSJob - + Resize Filesystem Job Dosya Sistemini Yeniden Boyutlandır - + Invalid configuration Geçersiz yapılandırma - + The file-system resize job has an invalid configuration and will not run. Dosya sistemi yeniden boyutlandırma işi sorunlu yapılandırıldı ve çalışmayacak. - - + KPMCore not Available KPMCore Hazır değil - - + Calamares cannot start KPMCore for the file-system resize job. Calamares dosya sistemi yeniden boyutlandırma işi için KPMCore başlatılamıyor. - - - - - + + + + + Resize Failed Yeniden Boyutlandırılamadı - + The filesystem %1 could not be found in this system, and cannot be resized. %1 dosya sistemi bu sistemde bulunamadı ve yeniden boyutlandırılamıyor. - + The device %1 could not be found in this system, and cannot be resized. %1 aygıtı bu sistemde bulunamadı ve yeniden boyutlandırılamıyor. - - + + The filesystem %1 cannot be resized. %1 dosya sistemi yeniden boyutlandırılamıyor. - - + + The device %1 cannot be resized. %1 aygıtı yeniden boyutlandırılamıyor. - + The filesystem %1 must be resized, but cannot. %1 dosya sistemi yeniden boyutlandırılmalıdır, fakat yapılamaz. - + The device %1 must be resized, but cannot %1 dosya sistemi yeniden boyutlandırılmalıdır, ancak yapılamaz. @@ -2879,12 +2926,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: En iyi sonucu elde etmek için bilgisayarınızın aşağıdaki gereksinimleri karşıladığından emin olunuz: - + System requirements Sistem gereksinimleri @@ -2892,29 +2939,29 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> Bu bilgisayar %1 kurulumu için minimum gereksinimleri karşılamıyor.<br/>Kurulum devam etmeyecek. <a href="#details">Detaylar...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Bu bilgisayara %1 yüklemek için minimum gereksinimler karşılanamadı. Kurulum devam edemiyor. <a href="#detaylar">Detaylar...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. Bu bilgisayar %1 kurulumu için önerilen gereksinimlerin bazılarına uymuyor. Kurulum devam edebilirsiniz ancak bazı özellikler devre dışı bırakılabilir. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Bu bilgisayara %1 yüklemek için önerilen gereksinimlerin bazıları karşılanamadı.<br/> Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir. - + This program will ask you some questions and set up %2 on your computer. Bu program size bazı sorular soracak ve bilgisayarınıza %2 kuracak. @@ -2935,17 +2982,17 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir. SetHostNameJob - + Set hostname %1 %1 sunucu-adı ayarla - + Set hostname <strong>%1</strong>. <strong>%1</strong> sunucu-adı ayarla. - + Setting hostname %1. %1 sunucu-adı ayarlanıyor. @@ -2995,82 +3042,82 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir. SetPartFlagsJob - + Set flags on partition %1. %1 bölüm bayrağını ayarla. - + Set flags on %1MiB %2 partition. %1MB %2 disk bölümüne bayrak ayarla. - + Set flags on new partition. Yeni disk bölümüne bayrak ayarla. - + Clear flags on partition <strong>%1</strong>. <strong>%1</strong> bölüm bayrağını kaldır. - + Clear flags on %1MiB <strong>%2</strong> partition. %1MB <strong>%2</strong> disk bölümünden bayrakları temizle. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. %1MB <strong>%2</strong> disk bölüm bayrağı <strong>%3</strong> olarak belirlendi. - + Clearing flags on %1MiB <strong>%2</strong> partition. %1MB <strong>%2</strong> disk bölümünden bayraklar temizleniyor. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. <strong>%3</strong> bayrağı %1MB <strong>%2</strong> disk bölümüne ayarlanıyor. - + Clear flags on new partition. Yeni disk bölümünden bayrakları temizle. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Bayrak bölüm <strong>%1</strong> olarak <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. Yeni disk bölümü <strong>%1</strong> olarak belirlendi. - + Clearing flags on partition <strong>%1</strong>. <strong>%1</strong> bölümünden bayraklar kaldırılıyor. - + Clearing flags on new partition. Yeni disk bölümünden bayraklar temizleniyor. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. <strong>%2</strong> bayrakları <strong>%1</strong> bölümüne ayarlandı. - + Setting flags <strong>%1</strong> on new partition. Yeni disk bölümüne <strong>%1</strong> bayrağı ayarlanıyor. - + The installer failed to set flags on partition %1. Yükleyici %1 bölüm bayraklarını ayarlamakta başarısız oldu. @@ -3300,47 +3347,47 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir. UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>Bu bilgisayarı birden fazla kişi kullanacaksa, kurulumdan sonra birden fazla kullanıcı hesabı oluşturabilirsiniz.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>Bu bilgisayarı birden fazla kişi kullanacaksa, yükleme bittikten sonra birden fazla kullanıcı hesabı oluşturabilirsiniz.</small> - + Your username is too long. Kullanıcı adınız çok uzun. - + Your username must start with a lowercase letter or underscore. Kullanıcı adınız küçük harf veya alt çizgi ile başlamalıdır. - + Only lowercase letters, numbers, underscore and hyphen are allowed. Sadece küçük harflere, sayılara, alt çizgi ve kısa çizgilere izin verilir. - + Only letters, numbers, underscore and hyphen are allowed. Sadece harfler, rakamlar, alt çizgi ve kısa çizgi izin verilir. - + Your hostname is too short. Makine adınız çok kısa. - + Your hostname is too long. Makine adınız çok uzun. - + Your passwords do not match! Parolanız eşleşmiyor! @@ -3478,42 +3525,42 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.&Hakkında - + <h1>Welcome to the %1 installer.</h1> <h1>%1 Sistem Yükleyiciye Hoşgeldiniz.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>%1 Calamares Sistem Yükleyici .</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>%1 için Calamares sistem kurulum uygulamasına hoş geldiniz.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>%1 Kurulumuna Hoşgeldiniz.</h1> - + About %1 setup %1 kurulum hakkında - + About %1 installer %1 sistem yükleyici hakkında - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <h1>%1</h1><br/><strong>%2<br/>için %3</strong><br/><br/>Telif Hakkı 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Telif Hakkı 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Teşekkürler <a href="https://calamares.io/team/">Calamares takımı</a> ve <a href="https://www.transifex.com/calamares/calamares/">Calamares çeviri takımı</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> gelişim destekçisi <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Özgür Yazılım. - + %1 support %1 destek @@ -3521,7 +3568,7 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir. WelcomeQmlViewStep - + Welcome Hoşgeldiniz @@ -3529,7 +3576,7 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir. WelcomeViewStep - + Welcome Hoşgeldiniz @@ -3537,7 +3584,7 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir. notesqml - + <h3>%1</h3> <p>These are example release notes.</p> <h3>%1</h3> diff --git a/lang/calamares_uk.ts b/lang/calamares_uk.ts index b6b7ae80b..d8ba5fee2 100644 --- a/lang/calamares_uk.ts +++ b/lang/calamares_uk.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 Головний Завантажувальний Запис (Master Boot Record) %1 - + Boot Partition Завантажувальний розділ @@ -42,7 +42,7 @@ Не встановлювати завантажувач - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done Готово @@ -177,32 +177,32 @@ Calamares::PythonJob - + 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". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... Завантаження… - + QML Step <i>%1</i>. Крок QML <i>%1</i>. - + Loading failed. Не вдалося завантажити. @@ -257,175 +257,175 @@ Calamares::ViewManager - + &Back &Назад - + &Next &Вперед - + &Cancel &Скасувати - + Cancel setup without changing the system. Скасувати налаштування без зміни системи. - + Cancel installation without changing the system. Скасувати встановлення без зміни системи. - + Setup Failed Помилка встановлення - + Would you like to paste the install log to the web? Хочете викласти журнал встановлення у мережі? - + Install Log Paste URL Адреса для вставлення журналу встановлення - + The upload was unsuccessful. No web-paste was done. Не вдалося вивантажити дані. - + Calamares Initialization Failed Помилка ініціалізації Calamares - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 неможливо встановити. Calamares не зміг завантажити всі налаштовані модулі. Ця проблема зв'язана з тим, як Calamares використовується дистрибутивом. - + <br/>The following modules could not be loaded: <br/>Не вдалося завантажити наступні модулі: - + Continue with installation? Продовжити встановлення? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> Програма налаштування %1 збирається внести зміни до вашого диска, щоб налаштувати %2. <br/><strong> Ви не зможете скасувати ці зміни.</strong> - + &Set up now &Налаштувати зараз - + &Set up &Налаштувати - + &Install &Встановити - + Setup is complete. Close the setup program. Встановлення виконано. Закрити програму встановлення. - + Cancel setup? Скасувати налаштування? - + Cancel installation? Скасувати встановлення? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. Ви насправді бажаєте скасувати поточну процедуру налаштовування? Роботу програми для налаштовування буде завершено, а усі зміни буде втрачено. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. Чи ви насправді бажаєте скасувати процес встановлення? Роботу засобу встановлення буде завершено, і всі зміни буде втрачено. - - + + &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> Засіб встановлення %1 має намір внести зміни до розподілу вашого диска, щоб встановити %2.<br/><strong>Ці зміни неможливо буде скасувати.</strong> - + &Install now &Встановити зараз - + Go &back Перейти &назад - + &Done &Закінчити - + The installation is complete. Close the installer. Встановлення виконано. Завершити роботу засобу встановлення. - + Error Помилка - + Installation Failed Помилка під час встановлення @@ -433,22 +433,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type Невідомий тип виключної ситуації - + unparseable Python error нерозбірлива помилка Python - + unparseable Python traceback нерозбірливе відстеження помилки Python - + Unfetchable Python error. Помилка Python, інформацію про яку неможливо отримати. @@ -466,17 +466,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program Програма для налаштовування %1 - + %1 Installer Засіб встановлення %1 - + Show debug information Показати діагностичну інформацію @@ -484,7 +484,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... Збираємо інформацію про систему... @@ -497,134 +497,134 @@ The installer will quit and all changes will be lost. Форма - + After: Після: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>Розподілення вручну</strong><br/>Ви можете створити або змінити розмір розділів власноруч. - + Boot loader location: Розташування завантажувача: - + Select storage de&vice: Обрати &пристрій зберігання: - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 буде стиснуто до %2 МіБ. Натомість буде створено розділ розміром %3 МіБ для %4. - + <strong>Select a partition to install on</strong> <strong>Оберіть розділ, на який встановити</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. В цій системі не знайдено жодного системного розділу EFI. Щоб встановити %1, будь ласка, поверніться та оберіть розподілення вручну. - + The EFI system partition at %1 will be used for starting %2. Системний розділ EFI %1 буде використано для встановлення %2. - + EFI system partition: Системний розділ EFI: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. Цей пристрій зберігання, схоже, не має жодної операційної системи. Що ви бажаєте зробити?<br/>У вас буде можливість переглянути та підтвердити все, що ви обрали перед тим, як будуть зроблені будь-які зміни на пристрої зберігання. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>Очистити диск</strong><br/>Це <font color="red">знищить</font> всі данні, присутні на обраному пристрої зберігання. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. На цьому пристрої зберігання є %1. Що ви бажаєте зробити?<br/>У вас буде можливість переглянути та підтвердити все, що ви обрали перед тим, як будуть зроблені будь-які зміни на пристрої зберігання. - + No Swap Без резервної пам'яті - + Reuse Swap Повторно використати резервну пам'ять - + Swap (no Hibernate) Резервна пам'ять (без присипляння) - + Swap (with Hibernate) Резервна пам'ять (із присиплянням) - + Swap to file Резервна пам'ять у файлі - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>Встановити поруч</strong><br/>Засіб встановлення зменшить розмір розділу, щоб вивільнити простір для %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>Замінити розділ</strong><br/>Замінити розділу на %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. На цьому пристрої зберігання вже є операційна система. Що ви бажаєте зробити?<br/>У вас буде можливість переглянути та підтвердити все, що ви обрали перед тим, як будуть зроблені будь-які зміни на пристрої зберігання. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. На цьому пристрої зберігання вже є декілька операційних систем. Що ви бажаєте зробити?<br/>У вас буде можливість переглянути та підтвердити все, що ви обрали перед тим, як будуть зроблені будь-які зміни на пристрої зберігання. @@ -632,17 +632,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 Очистити точки підключення для операцій над розділами на %1 - + Clearing mounts for partitioning operations on %1. Очищення точок підключення для операцій над розділами на %1. - + Cleared all mounts for %1 Очищено всі точки підключення для %1 @@ -689,10 +689,33 @@ The installer will quit and all changes will be lost. Команді потрібні дані щодо імені користувача, але ім'я користувача не визначено. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>Вітаємо у програмі налаштовування Calamares для %1.</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>Вітаємо у програмі для налаштовування %1.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>Ласкаво просимо до засобу встановлення Calamares для %1.</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>Ласкаво просимо до засобу встановлення %1.</h1> + + ContextualProcessJob - + Contextual Processes Job Завдання контекстових процесів @@ -750,27 +773,27 @@ The installer will quit and all changes will be lost. Ро&змір: - + En&crypt За&шифрувати - + Logical Логічний - + Primary Основний - + GPT GPT - + Mountpoint already in use. Please select another one. Точка підключення наразі використовується. Оберіть, будь ласка, іншу. @@ -778,22 +801,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. Створити розділ у %2 МіБ на %4 (%3) із файловою системою %1. - + Create new <strong>%2MiB</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». @@ -829,22 +852,22 @@ 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. @@ -996,13 +1019,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 – (%2) @@ -1115,7 +1138,7 @@ The installer will quit and all changes will be lost. Підтвердження ключової фрази - + Please enter the same passphrase in both boxes. Будь ласка, введіть однакову ключову фразу у обидва текстові вікна. @@ -1123,37 +1146,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. Налаштування точок підключення. @@ -1237,22 +1260,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. Форматувати розділ %1 (файлова система: %2, розмір: %3 МіБ) на %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. Форматувати розділ у <strong>%3 МіБ</strong> <strong>%1</strong> з використанням файлової системи <strong>%2</strong>. - + Formatting partition %1 with file system %2. Форматування розділу %1 з файловою системою %2. - + The installer failed to format partition %1 on disk '%2'. Засобу встановлення не вдалося виконати форматування розділу %1 на диску «%2». @@ -1659,16 +1682,6 @@ 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) @@ -1680,7 +1693,7 @@ The installer will quit and all changes will be lost. Встановлення через мережу. (Вимкнено: Отримано неправильні дані про групи) - + Network Installation. (Disabled: Incorrect configuration) Встановлення за допомогою мережі. (Вимкнено: помилкові налаштування) @@ -2027,7 +2040,7 @@ The installer will quit and all changes will be lost. Невідома помилка - + Password is empty Пароль є порожнім @@ -2073,6 +2086,19 @@ The installer will quit and all changes will be lost. Пакунки + + PackageModel + + + Name + Назва + + + + Description + Опис + + Page_Keyboard @@ -2235,34 +2261,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space Вільний простір - - + + New partition Новий розділ - + Name Назва - + File System Файлова система - + Mount Point Точка підключення - + Size Розмір @@ -2330,17 +2356,17 @@ The installer will quit and all changes will be lost. Місце вст&ановлення завантажувача: - + Are you sure you want to create a new partition table on %1? Ви впевнені, що бажаєте створити нову таблицю розділів на %1? - + Can not create new partition Не вдалося створити новий розділ - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. Таблиця розділів на %1 вже містить %2 основних розділи. Додавання основних розділів неможливе. Будь ласка, вилучіть один основний розділ або додайте замість нього розширений розділ. @@ -2514,14 +2540,14 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. У результаті виконання команди не отримано виведених даних. - + Output: @@ -2530,52 +2556,52 @@ Output: - + External command crashed. Виконання зовнішньої команди завершилося помилкою. - + Command <i>%1</i> crashed. Аварійне завершення виконання команди <i>%1</i>. - + External command failed to start. Не вдалося виконати зовнішню команду. - + Command <i>%1</i> failed to start. Не вдалося виконати команду <i>%1</i>. - + Internal error when starting command. Внутрішня помилка під час спроби виконати команду. - + Bad parameters for process job call. Неправильні параметри виклику завдання обробки. - + External command failed to finish. Не вдалося завершити виконання зовнішньої команди. - + Command <i>%1</i> failed to finish in %2 seconds. Не вдалося завершити виконання команди <i>%1</i> за %2 секунд. - + External command finished with errors. Виконання зовнішньої команди завершено із помилками. - + Command <i>%1</i> finished with exit code %2. Виконання команди <i>%1</i> завершено повідомленням із кодом виходу %2. @@ -2594,22 +2620,22 @@ Output: Типовий - + unknown невідома - + extended розширений - + unformatted не форматовано - + swap резервна пам'ять @@ -2663,6 +2689,14 @@ Output: Не вдалося створити випадковий файл <pre>%1</pre>. + + RemoveUserJob + + + Remove live user from target system + Вилучити користувача портативної системи із системи призначення + + RemoveVolumeGroupJob @@ -2690,140 +2724,153 @@ Output: Форма - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. Виберіть місце встановлення %1.<br/><font color="red">Увага:</font> у результаті виконання цієї дії усі файли на вибраному розділі буде витерто. - + The selected item does not appear to be a valid partition. Вибраний елемент не є дійсним розділом. - + %1 cannot be installed on empty space. Please select an existing partition. %1 не можна встановити на порожній простір. Будь ласка, оберіть дійсний розділ. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 не можна встановити на розширений розділ. Будь ласка, оберіть дійсний первинний або логічний розділ. - + %1 cannot be installed on this partition. %1 не можна встановити на цей розділ. - + Data partition (%1) Розділ з даними (%1) - + Unknown system partition (%1) Невідомий системний розділ (%1) - + %1 system partition (%2) Системний розділ %1 (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>Розділ %1 замалий для %2. Будь ласка оберіть розділ розміром хоча б %3 Гб. - + <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/>Системний розділ EFI у цій системі не знайдено. Для встановлення %1, будь ласка, поверніться назад і скористайтеся розподіленням вручну. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 буде встановлено на %2.<br/><font color="red">Увага: </font>всі дані на розділі %2 буде загублено. - + The EFI system partition at %1 will be used for starting %2. Системний розділ EFI на %1 буде використано для запуску %2. - + EFI system partition: Системний розділ EFI: + + RequirementsModel + + + This program will ask you some questions and set up your installation + Ця програма поставить вам кілька питань та налаштує засоби встановлення + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + Ця програма не задовольняє мінімальні вимоги до встановлення. +Неможливо продовжувати процес встановлення. + + ResizeFSJob - + Resize Filesystem Job Завдання зі зміни розмірів файлової системи - + Invalid configuration Некоректні налаштування - + The file-system resize job has an invalid configuration and will not run. Завдання зі зміни розмірів файлової системи налаштовано некоректно. Його не буде виконано. - - + KPMCore not Available Немає доступу до KPMCore - - + Calamares cannot start KPMCore for the file-system resize job. Calamares не вдалося запустити KPMCore для виконання завдання зі зміни розмірів файлової системи. - - - - - + + + + + Resize Failed Помилка під час зміни розмірів - + The filesystem %1 could not be found in this system, and cannot be resized. Не вдалося знайти файлову систему %1 у цій системі. Зміна розмірів цієї файлової системи неможлива. - + The device %1 could not be found in this system, and cannot be resized. Не вдалося знайти пристрій %1 у цій системі. Зміна розмірів файлової системи на пристрої неможлива. - - + + The filesystem %1 cannot be resized. Не вдалося виконати зміну розмірів файлової системи %1. - - + + The device %1 cannot be resized. Не вдалося змінити розміри пристрою %1. - + The filesystem %1 must be resized, but cannot. Розміри файлової системи %1 має бути змінено, але виконати зміну не вдалося. - + The device %1 must be resized, but cannot Розміри пристрою %1 має бути змінено, але виконати зміну не вдалося @@ -2881,12 +2928,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: Щоб отримати найкращий результат, будь ласка, переконайтеся, що цей комп'ютер: - + System requirements Вимоги до системи @@ -2894,27 +2941,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> Цей комп'ютер не задовольняє мінімальні вимоги для налаштовування %1.<br/>Налаштовування неможливо продовжити. <a href="#details">Докладніше...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> Цей комп'ютер не задовольняє мінімальні вимоги для встановлення %1.<br/>Встановлення неможливо продовжити. <a href="#details">Докладніше...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. Цей комп'ютер не задовольняє рекомендовані вимоги щодо налаштовування %1. Встановлення можна продовжити, але деякі можливості можуть виявитися недоступними. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. Цей комп'ютер не задовольняє рекомендовані вимоги для встановлення %1.<br/>Встановлення можна продовжити, але деякі можливості можуть виявитися недоступними. - + This program will ask you some questions and set up %2 on your computer. Ця програма поставить кілька питань та встановить %2 на ваш комп'ютер. @@ -2935,17 +2982,17 @@ Output: SetHostNameJob - + Set hostname %1 Встановити назву вузла %1 - + Set hostname <strong>%1</strong>. Встановити назву вузла <strong>%1</strong>. - + Setting hostname %1. Встановлення назви вузла %1. @@ -2995,82 +3042,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. Встановити прапорці на розділі %1. - + Set flags on %1MiB %2 partition. Встановити прапорці для розділу у %1 МіБ %2. - + Set flags on new partition. Встановити прапорці на новому розділі. - + Clear flags on partition <strong>%1</strong>. Очистити прапорці на розділі <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. Зняти прапорці на розділі у %1 МіБ <strong>%2</strong>. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. Встановлення прапорця на розділі у %1 МіБ <strong>%2</strong> як <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. Знімаємо прапорці на розділі у %1 МіБ <strong>%2</strong>. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. Встановлюємо прапорці <strong>%3</strong> на розділі у %1 МіБ <strong>%2</strong>. - + Clear flags on new partition. Очистити прапорці на новому розділі. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. Встановити прапорці <strong>%2</strong> для розділу <strong>%1</strong>. - + Flag new partition as <strong>%1</strong>. Встановити прапорці <strong>%1</strong> для нового розділу. - + Clearing flags on partition <strong>%1</strong>. Очищуємо прапорці для розділу <strong>%1</strong>. - + Clearing flags on new partition. Очищуємо прапорці для нового розділу. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. Встановлюємо прапорці <strong>%2</strong> для розділу <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. Встановлюємо прапорці <strong>%1</strong> для нового розділу. - + The installer failed to set flags on partition %1. Засобу встановлення не вдалося встановити прапорці для розділу %1. @@ -3300,47 +3347,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>Якщо за цим комп'ютером працюватимуть декілька користувачів, ви можете створити декілька облікових записів після налаштовування.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>Якщо за цим комп'ютером працюватимуть декілька користувачів, ви можете створити декілька облікових записів після встановлення.</small> - + Your username is too long. Ваше ім'я задовге. - + Your username must start with a lowercase letter or underscore. Ваше ім'я користувача має починатися із малої літери або символу підкреслювання. - + Only lowercase letters, numbers, underscore and hyphen are allowed. Можна використовувати лише латинські літери нижнього регістру, цифри, символи підкреслювання та дефіси. - + Only letters, numbers, underscore and hyphen are allowed. Можна використовувати лише латинські літери, цифри, символи підкреслювання та дефіси. - + Your hostname is too short. Назва вузла є надто короткою. - + Your hostname is too long. Назва вузла є надто довгою. - + Your passwords do not match! Паролі не збігаються! @@ -3478,42 +3525,42 @@ Output: &Про програму - + <h1>Welcome to the %1 installer.</h1> <h1>Ласкаво просимо до засобу встановлення %1.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>Ласкаво просимо до засобу встановлення Calamares для %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>Вітаємо у програмі налаштовування Calamares для %1.</h1> - + <h1>Welcome to %1 setup.</h1> <h1>Вітаємо у програмі для налаштовування %1.</h1> - + About %1 setup Про засіб налаштовування %1 - + About %1 installer Про засіб встановлення %1 - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <h1>%1</h1><br/><strong>%2<br/>для %3</strong><br/><br/>© Teo Mrnjavac &lt;teo@kde.org&gt;, 2014–2017<br/>© Adriaan de Groot &lt;groot@kde.org&gt;, 2017–2019<br/>Дякуємо <a href="https://calamares.io/team/">команді розробників Calamares</a> та <a href="https://www.transifex.com/calamares/calamares/">команді перекладачів Calamares</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> розроблено за фінансової підтримки <br/><a href="http://www.blue-systems.com/">Blue Systems</a> — Liberating Software. - + %1 support Підтримка %1 @@ -3521,7 +3568,7 @@ Output: WelcomeQmlViewStep - + Welcome Вітаємо @@ -3529,7 +3576,7 @@ Output: WelcomeViewStep - + Welcome Вітаємо @@ -3537,7 +3584,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> <h3>%1</h3> diff --git a/lang/calamares_ur.ts b/lang/calamares_ur.ts index da19560e4..bdc667388 100644 --- a/lang/calamares_ur.ts +++ b/lang/calamares_ur.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 - + Boot Partition @@ -42,7 +42,7 @@ - + %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -253,173 +253,173 @@ Calamares::ViewManager - + &Back - + &Next - + &Cancel - + Cancel setup without changing the system. - + Cancel installation without changing the system. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. - - + + &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 @@ -427,22 +427,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type - + unparseable Python error - + unparseable Python traceback - + Unfetchable Python error. @@ -459,17 +459,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program - + %1 Installer - + Show debug information @@ -477,7 +477,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... @@ -490,134 +490,134 @@ The installer will quit and all changes will be lost. - + After: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + Select storage de&vice: - - - - + + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -625,17 +625,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 - + Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 @@ -682,10 +682,33 @@ The installer will quit and all changes will be lost. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + + + ContextualProcessJob - + Contextual Processes Job @@ -743,27 +766,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical - + Primary - + GPT - + Mountpoint already in use. Please select another one. @@ -771,22 +794,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. @@ -822,22 +845,22 @@ 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. @@ -989,13 +1012,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) - + %1 - (%2) device[name] - (device-node[name]) @@ -1108,7 +1131,7 @@ The installer will quit and all changes will be lost. - + Please enter the same passphrase in both boxes. @@ -1116,37 +1139,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. @@ -1230,22 +1253,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. - + The installer failed to format partition %1 on disk '%2'. @@ -1652,16 +1675,6 @@ 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) @@ -1673,7 +1686,7 @@ The installer will quit and all changes will be lost. - + Network Installation. (Disabled: Incorrect configuration) @@ -2019,7 +2032,7 @@ The installer will quit and all changes will be lost. - + Password is empty @@ -2065,6 +2078,19 @@ The installer will quit and all changes will be lost. + + PackageModel + + + Name + + + + + Description + + + Page_Keyboard @@ -2227,34 +2253,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space - - + + New partition - + Name - + File System - + Mount Point - + Size @@ -2322,17 +2348,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2506,65 +2532,65 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2583,22 +2609,22 @@ Output: - + unknown - + extended - + unformatted - + swap @@ -2652,6 +2678,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2679,140 +2713,152 @@ Output: - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. - + %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. - + Data partition (%1) - + Unknown system partition (%1) - + %1 system partition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2870,12 +2916,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: - + System requirements @@ -2883,27 +2929,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - + This program will ask you some questions and set up %2 on your computer. @@ -2924,17 +2970,17 @@ Output: SetHostNameJob - + Set hostname %1 - + Set hostname <strong>%1</strong>. - + Setting hostname %1. @@ -2984,82 +3030,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. @@ -3289,47 +3335,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your passwords do not match! @@ -3467,42 +3513,42 @@ Output: - + <h1>Welcome to the %1 installer.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer - + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support @@ -3510,7 +3556,7 @@ Output: WelcomeQmlViewStep - + Welcome @@ -3518,7 +3564,7 @@ Output: WelcomeViewStep - + Welcome @@ -3526,7 +3572,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_uz.ts b/lang/calamares_uz.ts index 714b91159..ea9f13a20 100644 --- a/lang/calamares_uz.ts +++ b/lang/calamares_uz.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 - + Boot Partition @@ -42,7 +42,7 @@ - + %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... - + QML Step <i>%1</i>. - + Loading failed. @@ -251,173 +251,173 @@ Calamares::ViewManager - + &Back - + &Next - + &Cancel - + Cancel setup without changing the system. - + Cancel installation without changing the system. - + Setup Failed - + Would you like to paste the install log to the web? - + Install Log Paste URL - + The upload was unsuccessful. No web-paste was done. - + Calamares Initialization Failed - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. - + <br/>The following modules could not be loaded: - + Continue with installation? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Set up now - + &Set up - + &Install - + Setup is complete. Close the setup program. - + Cancel setup? - + Cancel installation? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. - - + + &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 @@ -425,22 +425,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type - + unparseable Python error - + unparseable Python traceback - + Unfetchable Python error. @@ -457,17 +457,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program - + %1 Installer - + Show debug information @@ -475,7 +475,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... @@ -488,134 +488,134 @@ The installer will quit and all changes will be lost. - + After: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + Boot loader location: - + Select storage de&vice: - - - - + + + + Current: - + Reuse %1 as home partition for %2. - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. - + <strong>Select a partition to install on</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + No Swap - + Reuse Swap - + Swap (no Hibernate) - + Swap (with Hibernate) - + Swap to file - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. @@ -623,17 +623,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 - + Clearing mounts for partitioning operations on %1. - + Cleared all mounts for %1 @@ -680,10 +680,33 @@ The installer will quit and all changes will be lost. + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + + + + + <h1>Welcome to %1 setup.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + <h1>Welcome to the %1 installer.</h1> + + + ContextualProcessJob - + Contextual Processes Job @@ -741,27 +764,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical - + Primary - + GPT - + Mountpoint already in use. Please select another one. @@ -769,22 +792,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Creating new %1 partition on %2. - + The installer failed to create partition on disk '%1'. @@ -820,22 +843,22 @@ 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. @@ -987,13 +1010,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) - + %1 - (%2) device[name] - (device-node[name]) @@ -1106,7 +1129,7 @@ The installer will quit and all changes will be lost. - + Please enter the same passphrase in both boxes. @@ -1114,37 +1137,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. @@ -1228,22 +1251,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Formatting partition %1 with file system %2. - + The installer failed to format partition %1 on disk '%2'. @@ -1650,16 +1673,6 @@ 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) @@ -1671,7 +1684,7 @@ The installer will quit and all changes will be lost. - + Network Installation. (Disabled: Incorrect configuration) @@ -2017,7 +2030,7 @@ The installer will quit and all changes will be lost. - + Password is empty @@ -2063,6 +2076,19 @@ The installer will quit and all changes will be lost. + + PackageModel + + + Name + + + + + Description + + + Page_Keyboard @@ -2225,34 +2251,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space - - + + New partition - + Name - + File System - + Mount Point - + Size @@ -2320,17 +2346,17 @@ The installer will quit and all changes will be lost. - + Are you sure you want to create a new partition table on %1? - + Can not create new partition - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. @@ -2504,65 +2530,65 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. - + Output: - + External command crashed. - + Command <i>%1</i> crashed. - + External command failed to start. - + Command <i>%1</i> failed to start. - + Internal error when starting command. - + Bad parameters for process job call. - + External command failed to finish. - + Command <i>%1</i> failed to finish in %2 seconds. - + External command finished with errors. - + Command <i>%1</i> finished with exit code %2. @@ -2581,22 +2607,22 @@ Output: - + unknown - + extended - + unformatted - + swap @@ -2650,6 +2676,14 @@ Output: + + RemoveUserJob + + + Remove live user from target system + + + RemoveVolumeGroupJob @@ -2677,140 +2711,152 @@ Output: - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + The selected item does not appear to be a valid partition. - + %1 cannot be installed on empty space. Please select an existing partition. - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 cannot be installed on this partition. - + Data partition (%1) - + Unknown system partition (%1) - + %1 system partition (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + The EFI system partition at %1 will be used for starting %2. - + EFI system partition: + + RequirementsModel + + + This program will ask you some questions and set up your installation + + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + + + ResizeFSJob - + Resize Filesystem Job - + Invalid configuration - + The file-system resize job has an invalid configuration and will not run. - - + KPMCore not Available - - + Calamares cannot start KPMCore for the file-system resize job. - - - - - + + + + + Resize Failed - + The filesystem %1 could not be found in this system, and cannot be resized. - + The device %1 could not be found in this system, and cannot be resized. - - + + The filesystem %1 cannot be resized. - - + + The device %1 cannot be resized. - + The filesystem %1 must be resized, but cannot. - + The device %1 must be resized, but cannot @@ -2868,12 +2914,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: - + System requirements @@ -2881,27 +2927,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - + This program will ask you some questions and set up %2 on your computer. @@ -2922,17 +2968,17 @@ Output: SetHostNameJob - + Set hostname %1 - + Set hostname <strong>%1</strong>. - + Setting hostname %1. @@ -2982,82 +3028,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. - + Set flags on %1MiB %2 partition. - + Set flags on new partition. - + Clear flags on partition <strong>%1</strong>. - + Clear flags on %1MiB <strong>%2</strong> partition. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. - + Clear flags on new partition. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Flag new partition as <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. - + Clearing flags on new partition. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Setting flags <strong>%1</strong> on new partition. - + The installer failed to set flags on partition %1. @@ -3287,47 +3333,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> - + Your username is too long. - + Your username must start with a lowercase letter or underscore. - + Only lowercase letters, numbers, underscore and hyphen are allowed. - + Only letters, numbers, underscore and hyphen are allowed. - + Your hostname is too short. - + Your hostname is too long. - + Your passwords do not match! @@ -3465,42 +3511,42 @@ Output: - + <h1>Welcome to the %1 installer.</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> - + <h1>Welcome to %1 setup.</h1> - + About %1 setup - + About %1 installer - + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support @@ -3508,7 +3554,7 @@ Output: WelcomeQmlViewStep - + Welcome @@ -3516,7 +3562,7 @@ Output: WelcomeViewStep - + Welcome @@ -3524,7 +3570,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> diff --git a/lang/calamares_zh_CN.ts b/lang/calamares_zh_CN.ts index e778ad5b2..d720c0bb4 100644 --- a/lang/calamares_zh_CN.ts +++ b/lang/calamares_zh_CN.ts @@ -11,7 +11,7 @@ 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,并同时对硬盘使用 GPT 分区表分区。<br>您如果要从 EFI 环境引导这个系统的话,本安装程序必须安装一个引导程序(如 <strong>GRUB</strong> 或 <strong>systemd-boot</strong>)到 <strong>EFI 分区</strong>。这个步骤将会由本安装程序自动执行,除非您选择自己创建分区——此时您必须选择让本安装程序自动创建EFI分区或您自己手动创建EFI分区。 + 此系统从 <strong>EFI</strong> 引导环境启动。<br><br>若要配置EFI环境的启动项,本安装器必须在<strong>EFI系统分区</strong>中安装一个引导程序, 例如 <strong>GRUB</strong>或 <strong>systemd-boot</strong> 。这个过程是自动的,但若你选择手动分区,那你将必须手动选择或者创建。 @@ -23,12 +23,12 @@ BootLoaderModel - + Master Boot Record of %1 主引导记录 %1 - + Boot Partition 引导分区 @@ -43,7 +43,7 @@ 不要安装引导程序 - + %1 (%2) %1 (%2) @@ -144,7 +144,7 @@ Calamares::JobThread - + Done 完成 @@ -178,32 +178,32 @@ Calamares::PythonJob - + Running %1 operation. 正在运行 %1 个操作。 - + Bad working directory path 错误的工作目录路径 - + Working directory %1 for python job %2 is not readable. 用于 python 任务 %2 的工作目录 %1 不可读。 - + Bad main script file 错误的主脚本文件 - + Main script file %1 for python job %2 is not readable. 用于 python 任务 %2 的主脚本文件 %1 不可读。 - + Boost.Python error in job "%1". 任务“%1”出现 Boost.Python 错误。 @@ -211,17 +211,17 @@ Calamares::QmlViewStep - + Loading ... 正在加载... - + QML Step <i>%1</i>. QML 步骤 <i>%1</i>. - + Loading failed. 加载失败。 @@ -252,175 +252,175 @@ Calamares::ViewManager - + &Back 后退(&B) - + &Next 下一步(&N) - + &Cancel 取消(&C) - + Cancel setup without changing the system. 取消安装,保持系统不变。 - + Cancel installation without changing the system. 取消安装,并不做任何更改。 - + Setup Failed 安装失败 - + Would you like to paste the install log to the web? 需要将安装日志粘贴到网页吗? - + Install Log Paste URL 安装日志粘贴 URL - + The upload was unsuccessful. No web-paste was done. 上传失败,未完成网页粘贴。 - + Calamares Initialization Failed Calamares初始化失败 - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1无法安装。 Calamares无法加载所有已配置的模块。这个问题是发行版配置Calamares不当导致的。 - + <br/>The following modules could not be loaded: <br/>无法加载以下模块: - + Continue with installation? 继续安装? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> 为了安装%2, %1 安装程序即将对磁盘进行更改。<br/><strong>这些更改无法撤销。</strong> - + &Set up now 现在安装(&S) - + &Set up 安装(&S) - + &Install 安装(&I) - + Setup is complete. Close the setup program. 安装完成。关闭安装程序。 - + Cancel setup? 取消安装? - + Cancel installation? 取消安装? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. 确定要取消当前安装吗? 安装程序将会退出,所有修改都会丢失。 - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. 确定要取消当前的安装吗? 安装程序将退出,所有修改都会丢失。 - - + + &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> %1 安装程序将在您的磁盘上做出变更以安装 %2。<br/><strong>您将无法复原这些变更。</strong> - + &Install now 现在安装 (&I) - + Go &back 返回 (&B) - + &Done &完成 - + The installation is complete. Close the installer. 安装已完成。请关闭安装程序。 - + Error 错误 - + Installation Failed 安装失败 @@ -428,22 +428,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type 未知异常类型 - + unparseable Python error 无法解析的 Python 错误 - + unparseable Python traceback 无法解析的 Python 回溯 - + Unfetchable Python error. 无法获取的 Python 错误。 @@ -461,17 +461,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program %1 安装程序 - + %1 Installer %1 安装程序 - + Show debug information 显示调试信息 @@ -479,7 +479,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... 正在收集系统信息 ... @@ -492,134 +492,134 @@ The installer will quit and all changes will be lost. 表单 - + After: 之后: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>手动分区</strong><br/>您可以自行创建或重新调整分区大小。 - + Boot loader location: 引导程序位置: - + Select storage de&vice: 选择存储器(&V): - - - - + + + + Current: 当前: - + Reuse %1 as home partition for %2. 重复使用 %1 作为 %2 的 home 分区。 - + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> <strong>选择要缩小的分区,然后拖动底栏改变大小</strong> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 将会缩减未 %2MiB,然后为 %4 创建一个 %3MiB 分区。 - + <strong>Select a partition to install on</strong> <strong>选择要安装到的分区</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. 在此系统上找不到任何 EFI 系统分区。请后退到上一步并使用手动分区配置 %1。 - + The EFI system partition at %1 will be used for starting %2. %1 处的 EFI 系统分区将被用来启动 %2。 - + EFI system partition: EFI 系统分区: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. 这个存储器上似乎还没有操作系统。您想要怎么做?<br/>在任何变更应用到存储器上前,您都可以重新查看并确认您的选择。 - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>抹除磁盘</strong><br/>这将会<font color="red">删除</font>目前选定的存储器上所有的数据。 - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. 这个存储器上已经有 %1 了。您想要怎么做?<br/>在任何变更应用到存储器上前,您都可以重新查看并确认您的选择。 - + No Swap 无交换分区 - + Reuse Swap 重用交换分区 - + Swap (no Hibernate) 交换分区(无休眠) - + Swap (with Hibernate) 交换分区(带休眠) - + Swap to file 交换到文件 - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>并存安装</strong><br/>安装程序将会缩小一个分区,为 %1 腾出空间。 - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>取代一个分区</strong><br/>以 %1 <strong>替代</strong>一个分区。 - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. 这个存储器上已经有一个操作系统了。您想要怎么做?<br/>在任何变更应用到存储器上前,您都可以重新查看并确认您的选择。 - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. 这个存储器上已经有多个操作系统了。您想要怎么做?<br/>在任何变更应用到存储器上前,您都可以重新查看并确认您的选择。 @@ -627,17 +627,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 清理挂载了的分区以在 %1 进行分区操作 - + Clearing mounts for partitioning operations on %1. 正在清理挂载了的分区以在 %1 进行分区操作。 - + Cleared all mounts for %1 已清除 %1 的所有挂载点 @@ -684,10 +684,33 @@ The installer will quit and all changes will be lost. 命令行需要知道用户的名字,但用户名没有被设置 + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>欢迎使用 %1 的 Calamares 安装程序。</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>欢迎使用 %1 安装程序。</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>欢迎使用 Calamares 安装程序 - %1。</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>欢迎使用 %1 安装程序。</h1> + + ContextualProcessJob - + Contextual Processes Job 后台任务 @@ -745,27 +768,27 @@ The installer will quit and all changes will be lost. 大小(&Z): - + En&crypt 加密(&C) - + Logical 逻辑分区 - + Primary 主分区 - + GPT GPT - + Mountpoint already in use. Please select another one. 挂载点已被占用。请选择另一个。 @@ -773,22 +796,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. 在 %4 (%3) 上创建新的 %2MiB 分区,文件系统为 %1. - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. 在<strong>%4</strong>(%3)上创建一个<strong>%2MiB</strong>的%1分区。 - + Creating new %1 partition on %2. 正在 %2 上创建新的 %1 分区。 - + The installer failed to create partition on disk '%1'. 安装程序在磁盘“%1”创建分区失败。 @@ -824,22 +847,22 @@ 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 创建分区表失败。 @@ -992,13 +1015,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1111,7 +1134,7 @@ The installer will quit and all changes will be lost. 确认密码 - + Please enter the same passphrase in both boxes. 请在两个输入框中输入同样的密码。 @@ -1119,37 +1142,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. 正在设置挂载点。 @@ -1233,22 +1256,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. 格式化在 %4 的分区 %1 (文件系统:%2,大小:%3 MB)。 - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. 以文件系统 <strong>%2</strong> 格式化 <strong>%3MB</strong> 的分区 <strong>%1</strong>。 - + Formatting partition %1 with file system %2. 正在使用 %2 文件系统格式化分区 %1。 - + The installer failed to format partition %1 on disk '%2'. 安装程序格式化磁盘“%2”上的分区 %1 失败。 @@ -1655,16 +1678,6 @@ 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) @@ -1676,7 +1689,7 @@ The installer will quit and all changes will be lost. 联网安装。(已禁用:收到无效组数据) - + Network Installation. (Disabled: Incorrect configuration) 网络安装。(禁用:错误的设置) @@ -2022,7 +2035,7 @@ The installer will quit and all changes will be lost. 未知错误 - + Password is empty 密码是空 @@ -2068,6 +2081,19 @@ The installer will quit and all changes will be lost. 软件包 + + PackageModel + + + Name + 名称 + + + + Description + 描述 + + Page_Keyboard @@ -2230,34 +2256,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space 空闲空间 - - + + New partition 新建分区 - + Name 名称 - + File System 文件系统 - + Mount Point 挂载点 - + Size 大小 @@ -2325,17 +2351,17 @@ The installer will quit and all changes will be lost. 安装引导程序至: - + Are you sure you want to create a new partition table on %1? 您是否确定要在 %1 上创建新分区表? - + Can not create new partition 无法创建新分区 - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. %1上的分区表已经有%2个主分区,并且不能再添加。请删除一个主分区并添加扩展分区。 @@ -2509,14 +2535,14 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. 命令没有输出。 - + Output: @@ -2525,52 +2551,52 @@ Output: - + External command crashed. 外部命令已崩溃。 - + Command <i>%1</i> crashed. 命令 <i>%1</i> 已崩溃。 - + External command failed to start. 无法启动外部命令。 - + Command <i>%1</i> failed to start. 无法启动命令 <i>%1</i>。 - + Internal error when starting command. 启动命令时出现内部错误。 - + Bad parameters for process job call. 呼叫进程任务出现错误参数 - + External command failed to finish. 外部命令未成功完成。 - + Command <i>%1</i> failed to finish in %2 seconds. 命令 <i>%1</i> 未能在 %2 秒内完成。 - + External command finished with errors. 外部命令已完成,但出现了错误。 - + Command <i>%1</i> finished with exit code %2. 命令 <i>%1</i> 以退出代码 %2 完成。 @@ -2589,22 +2615,22 @@ Output: 默认 - + unknown 未知 - + extended 扩展分区 - + unformatted 未格式化 - + swap 临时存储空间 @@ -2658,6 +2684,14 @@ Output: 无法创建新的随机文件 <pre>%1</pre>. + + RemoveUserJob + + + Remove live user from target system + 从目标系统删除 live 用户 + + RemoveVolumeGroupJob @@ -2685,140 +2719,153 @@ Output: 表单 - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. <b>选择要安装 %1 的地方。</b><br/><font color="red">警告:</font>这将会删除所有已选取的分区上的文件。 - + The selected item does not appear to be a valid partition. 选中项似乎不是有效分区。 - + %1 cannot be installed on empty space. Please select an existing partition. 无法在空白空间中安装 %1。请选取一个存在的分区。 - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. 无法在拓展分区上安装 %1。请选取一个存在的主要或逻辑分区。 - + %1 cannot be installed on this partition. 无法安装 %1 到此分区。 - + Data partition (%1) 数据分区 (%1) - + Unknown system partition (%1) 未知系统分区 (%1) - + %1 system partition (%2) %1 系统分区 (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>分区 %1 对 %2 来说太小了。请选取一个容量至少有 %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/>在此系统上找不到任何 EFI 系统分区。请后退到上一步并使用手动分区配置 %1。 - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>即将安装 %1 到 %2 上。<br/><font color="red">警告: </font>分区 %2 上的所有数据都将丢失。 - + The EFI system partition at %1 will be used for starting %2. 将使用 %1 处的 EFI 系统分区启动 %2。 - + EFI system partition: EFI 系统分区: + + RequirementsModel + + + This program will ask you some questions and set up your installation + 本程序将会问您一些问题并配置好您的安装过程 + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + 此程序并不满足安装所需的最低要求。 +安装无法继续。 + + ResizeFSJob - + Resize Filesystem Job 调整文件系统大小的任务 - + Invalid configuration 无效配置 - + The file-system resize job has an invalid configuration and will not run. 调整文件系统大小的任务 因为配置文件无效不会被执行。 - - + KPMCore not Available KPMCore不可用 - - + Calamares cannot start KPMCore for the file-system resize job. Calamares 无法启动 KPMCore来完成调整文件系统大小的任务。 - - - - - + + + + + Resize Failed 调整大小失败 - + The filesystem %1 could not be found in this system, and cannot be resized. 文件系统 %1 未能在此系统上找到,因此无法调整大小。 - + The device %1 could not be found in this system, and cannot be resized. 设备 %1 未能在此系统上找到,因此无法调整大小。 - - + + The filesystem %1 cannot be resized. 文件系统 %1 无法被调整大小。 - - + + The device %1 cannot be resized. 设备 %1 无法被调整大小。 - + The filesystem %1 must be resized, but cannot. 文件系统 %1 必须调整大小,但无法做到。 - + The device %1 must be resized, but cannot 设备 %1 必须调整大小,但无法做到。 @@ -2876,12 +2923,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: 为了更好的体验,请确保这台电脑: - + System requirements 系统需求 @@ -2889,29 +2936,29 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> 此计算机不满足安装 %1 的某些推荐配置。 安装可以继续,但是一些特性可能被禁用。 - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> 此电脑未满足安装 %1 的最低需求。<br/>安装无法继续。<a href="#details">详细信息...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. 此计算机不满足安装 %1 的某些推荐配置。 安装可以继续,但是一些特性可能被禁用。 - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. 此电脑未满足一些安装 %1 的推荐需求。<br/>可以继续安装,但一些功能可能会被停用。 - + This program will ask you some questions and set up %2 on your computer. 本程序将会问您一些问题并在您的电脑上安装及设置 %2 。 @@ -2932,17 +2979,17 @@ Output: SetHostNameJob - + Set hostname %1 设置主机名 %1 - + Set hostname <strong>%1</strong>. 设置主机名 <strong>%1</strong>。 - + Setting hostname %1. 正在设置主机名 %1。 @@ -2992,82 +3039,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. 设置分区 %1 的标记. - + Set flags on %1MiB %2 partition. 设置 %1MB %2 分区的标记. - + Set flags on new partition. 设置新分区的标记. - + Clear flags on partition <strong>%1</strong>. 清空分区 <strong>%1</strong> 上的标记. - + Clear flags on %1MiB <strong>%2</strong> partition. 删除 %1MB <strong>%2</strong> 分区的标记. - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. 将 %1MB <strong>%2</strong> 分区标记为 <strong>%3</strong>. - + Clearing flags on %1MiB <strong>%2</strong> partition. 正在删除 %1MB <strong>%2</strong> 分区的标记. - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. 正在将 %1MB <strong>%2</strong> 分区标记为 <strong>%3</strong>. - + Clear flags on new partition. 删除新分区的标记. - + Flag partition <strong>%1</strong> as <strong>%2</strong>. 将分区 <strong>%2</strong> 标记为 <strong>%1</strong>。 - + Flag new partition as <strong>%1</strong>. 将新分区标记为 <strong>%1</strong>. - + Clearing flags on partition <strong>%1</strong>. 正在清理分区 <strong>%1</strong> 上的标记。 - + Clearing flags on new partition. 正在删除新分区的标记. - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. 正在为分区 <strong>%1</strong> 设置标记 <strong>%2</strong>。 - + Setting flags <strong>%1</strong> on new partition. 正在将新分区标记为 <strong>%1</strong>. - + The installer failed to set flags on partition %1. 安装程序没有成功设置分区 %1 的标记. @@ -3297,47 +3344,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>如果有多人要使用此计算机,您可以在安装后创建多个账户。</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>如果有多人要使用此计算机,您可以在安装后创建多个账户。</small> - + Your username is too long. 用户名太长。 - + Your username must start with a lowercase letter or underscore. 用户名必须以小写字母或下划线"_"开头 - + Only lowercase letters, numbers, underscore and hyphen are allowed. 只允许小写字母、数组、下划线"_" 和 连字符"-" - + Only letters, numbers, underscore and hyphen are allowed. 只允许字母、数组、下划线"_" 和 连字符"-" - + Your hostname is too short. 主机名太短。 - + Your hostname is too long. 主机名太长。 - + Your passwords do not match! 密码不匹配! @@ -3475,42 +3522,42 @@ Output: 关于(&A) - + <h1>Welcome to the %1 installer.</h1> <h1>欢迎使用 %1 安装程序。</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>欢迎使用 Calamares 安装程序 - %1。</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>欢迎使用 %1 的 Calamares 安装程序。</h1> - + <h1>Welcome to %1 setup.</h1> <h1>欢迎使用 %1 安装程序。</h1> - + About %1 setup 关于 %1 安装程序 - + About %1 installer 关于 %1 安装程序 - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>致谢 <a href="https://calamares.io/team/">Calamares开发团队和<a href="https://www.transifex.com/calamares/calamares/">Calamares 翻译团队</a>。<br/><br/><a href="https://calamares.io/">Calamares</a> 开发赞助来自 <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %1 的支持信息 @@ -3518,7 +3565,7 @@ Output: WelcomeQmlViewStep - + Welcome 欢迎 @@ -3526,7 +3573,7 @@ Output: WelcomeViewStep - + Welcome 欢迎 @@ -3534,7 +3581,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> <h3>%1</h3> diff --git a/lang/calamares_zh_TW.ts b/lang/calamares_zh_TW.ts index 729347a45..3af325e0e 100644 --- a/lang/calamares_zh_TW.ts +++ b/lang/calamares_zh_TW.ts @@ -22,12 +22,12 @@ BootLoaderModel - + Master Boot Record of %1 %1 的主要開機紀錄 (MBR) - + Boot Partition 開機分割區 @@ -42,7 +42,7 @@ 無法安裝開機載入器 - + %1 (%2) %1 (%2) @@ -143,7 +143,7 @@ Calamares::JobThread - + Done 完成 @@ -177,32 +177,32 @@ Calamares::PythonJob - + Running %1 operation. 正在執行 %1 操作。 - + Bad working directory path 不良的工作目錄路徑 - + Working directory %1 for python job %2 is not readable. Python 行程 %2 作用中的目錄 %1 不具讀取權限。 - + Bad main script file 錯誤的主要腳本檔 - + Main script file %1 for python job %2 is not readable. Python 行程 %2 的主要腳本檔 %1 無法讀取。 - + Boost.Python error in job "%1". 行程 %1 中 Boost.Python 錯誤。 @@ -210,17 +210,17 @@ Calamares::QmlViewStep - + Loading ... 正在載入 ... - + QML Step <i>%1</i>. QML 第 <i>%1</i> 步 - + Loading failed. 載入失敗。 @@ -251,175 +251,175 @@ Calamares::ViewManager - + &Back 返回 (&B) - + &Next 下一步 (&N) - + &Cancel 取消(&C) - + Cancel setup without changing the system. 取消安裝,不更改系統。 - + Cancel installation without changing the system. 不變更系統並取消安裝。 - + Setup Failed 設定失敗 - + Would you like to paste the install log to the web? 想要將安裝紀錄檔貼到網路上嗎? - + Install Log Paste URL 安裝紀錄檔張貼 URL - + The upload was unsuccessful. No web-paste was done. 上傳不成功。並未完成網路張貼。 - + Calamares Initialization Failed Calamares 初始化失敗 - + %1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution. %1 無法安裝。Calamares 無法載入所有已設定的模組。散佈版使用 Calamares 的方式有問題。 - + <br/>The following modules could not be loaded: <br/>以下的模組無法載入: - + Continue with installation? 繼續安裝? - + The %1 setup program is about to make changes to your disk in order to set up %2.<br/><strong>You will not be able to undo these changes.</strong> %1 設定程式將在您的磁碟上做出變更以設定 %2。<br/><strong>您將無法復原這些變更。</strong> - + &Set up now 馬上進行設定 (&S) - + &Set up 設定 (&S) - + &Install 安裝(&I) - + Setup is complete. Close the setup program. 設定完成。關閉設定程式。 - + Cancel setup? 取消設定? - + Cancel installation? 取消安裝? - + Do you really want to cancel the current setup process? The setup program will quit and all changes will be lost. 真的想要取消目前的設定程序嗎? 設定程式將會結束,所有變更都將會遺失。 - + Do you really want to cancel the current install process? The installer will quit and all changes will be lost. 您真的想要取消目前的安裝程序嗎? 安裝程式將會退出且所有變動將會遺失。 - - + + &Yes 是(&Y) - - + + &No 否(&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 安裝失敗 @@ -427,22 +427,22 @@ The installer will quit and all changes will be lost. CalamaresPython::Helper - + Unknown exception type 未知的例外型別 - + unparseable Python error 無法解析的 Python 錯誤 - + unparseable Python traceback 無法解析的 Python 回溯紀錄 - + Unfetchable Python error. 無法讀取的 Python 錯誤。 @@ -460,17 +460,17 @@ The installer will quit and all changes will be lost. CalamaresWindow - + %1 Setup Program %1 設定程式 - + %1 Installer %1 安裝程式 - + Show debug information 顯示除錯資訊 @@ -478,7 +478,7 @@ The installer will quit and all changes will be lost. CheckerContainer - + Gathering system information... 收集系統資訊中... @@ -491,134 +491,134 @@ The installer will quit and all changes will be lost. 表單 - + After: 之後: - + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. <strong>手動分割</strong><br/>可以自行建立或重新調整分割區大小。 - + Boot loader location: 開機載入器位置: - + Select storage de&vice: 選取儲存裝置(&V): - - - - + + + + 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> - + %1 will be shrunk to %2MiB and a new %3MiB partition will be created for %4. %1 會縮減到 %2MiB,並且會為 %4 建立新的 %3MiB 分割區。 - + <strong>Select a partition to install on</strong> <strong>選取分割區以安裝在其上</strong> - + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. 在這個系統找不到 EFI 系統分割區。請回到上一步並使用手動分割以設定 %1。 - + The EFI system partition at %1 will be used for starting %2. 在 %1 的 EFI 系統分割區將會在開始 %2 時使用。 - + EFI system partition: EFI 系統分割區: - + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. 這個儲存裝置上似乎還沒有作業系統。您想要怎麼做?<br/>在任何變更套用到儲存裝置上前,您都可以重新檢視並確認您的選擇。 - - - - + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. <strong>抹除磁碟</strong><br/>這將會<font color="red">刪除</font>目前選取的儲存裝置所有的資料。 - + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. 這個儲存裝置上已經有 %1 了。您想要怎麼做?<br/>在任何變更套用到儲存裝置上前,您都可以重新檢視並確認您的選擇。 - + No Swap 沒有 Swap - + Reuse Swap 重用 Swap - + Swap (no Hibernate) Swap(沒有冬眠) - + Swap (with Hibernate) Swap(有冬眠) - + Swap to file Swap 到檔案 - - - - + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. <strong>並存安裝</strong><br/>安裝程式會縮小一個分割區,以讓出空間給 %1。 - - - - + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. <strong>取代一個分割區</strong><br/>用 %1 取代一個分割區。 - + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. 這個儲存裝置上已經有一個作業系統了。您想要怎麼做?<br/>在任何變更套用到儲存裝置上前,您都可以重新檢視並確認您的選擇。 - + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. 這個儲存裝置上已經有多個作業系統了。您想要怎麼做?<br/>在任何變更套用到儲存裝置上前,您都可以重新檢視並確認您的選擇。 @@ -626,17 +626,17 @@ The installer will quit and all changes will be lost. ClearMountsJob - + Clear mounts for partitioning operations on %1 為了準備分割區操作而完全卸載 %1 - + Clearing mounts for partitioning operations on %1. 正在為了準備分割區操作而完全卸載 %1 - + Cleared all mounts for %1 已清除所有與 %1 相關的掛載 @@ -683,10 +683,33 @@ The installer will quit and all changes will be lost. 指令需要知道使用者名稱,但是使用者名稱未定義。 + + Config + + + <h1>Welcome to the Calamares setup program for %1.</h1> + <h1>歡迎使用 %1 的 Calamares 安裝程式。</h1> + + + + <h1>Welcome to %1 setup.</h1> + <h1>歡迎使用 %1 安裝程式。</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>歡迎使用 %1 的 Calamares 安裝程式。</h1> + + + + <h1>Welcome to the %1 installer.</h1> + <h1>歡迎使用 %1 安裝程式。</h1> + + ContextualProcessJob - + Contextual Processes Job 情境處理程序工作 @@ -744,27 +767,27 @@ The installer will quit and all changes will be lost. 容量大小 (&z) : - + En&crypt 加密(&C) - + Logical 邏輯磁區 - + Primary 主要磁區 - + GPT GPT - + Mountpoint already in use. Please select another one. 掛載點使用中。請選擇其他的。 @@ -772,22 +795,22 @@ The installer will quit and all changes will be lost. CreatePartitionJob - + Create new %2MiB partition on %4 (%3) with file system %1. 使用檔案系統 %1 在 %4 (%3) 建立新的 %2MiB 分割區。 - + Create new <strong>%2MiB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. 使用檔案系統 <strong>%1</strong> 在 <strong>%4</strong> (%3) 建立新的 <strong>%2MiB</strong> 分割區。 - + Creating new %1 partition on %2. 正在於 %2 建立新的 %1 分割區。 - + The installer failed to create partition on disk '%1'. 安裝程式在磁碟 '%1' 上建立分割區失敗。 @@ -823,22 +846,22 @@ 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 上建立分割區表格失敗。 @@ -990,13 +1013,13 @@ The installer will quit and all changes will be lost. DeviceModel - + %1 - %2 (%3) device[name] - size[number] (device-node[name]) %1 - %2 (%3) - + %1 - (%2) device[name] - (device-node[name]) %1 - (%2) @@ -1109,7 +1132,7 @@ The installer will quit and all changes will be lost. 確認通關密語 - + Please enter the same passphrase in both boxes. 請在兩個框框中輸入相同的通關密語。 @@ -1117,37 +1140,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. 正在設定掛載點。 @@ -1231,22 +1254,22 @@ The installer will quit and all changes will be lost. FormatPartitionJob - + Format partition %1 (file system: %2, size: %3 MiB) on %4. 格式化分割區 %1(檔案系統:%2,大小:%3 MiB)在 %4。 - + Format <strong>%3MiB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. 格式化 <strong>%3MiB</strong> 分割區 <strong>%1</strong>,使用檔案系統 <strong>%2</strong>。 - + Formatting partition %1 with file system %2. 正在以 %2 檔案系統格式化分割區 %1。 - + The installer failed to format partition %1 on disk '%2'. 安裝程式格式化在磁碟 '%2' 上的分割區 %1 失敗。 @@ -1653,16 +1676,6 @@ 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) @@ -1674,7 +1687,7 @@ The installer will quit and all changes will be lost. 網路安裝。(已停用:收到無效的群組資料) - + Network Installation. (Disabled: Incorrect configuration) 網路安裝。(已停用:設定不正確) @@ -2020,7 +2033,7 @@ The installer will quit and all changes will be lost. 未知的錯誤 - + Password is empty 密碼為空 @@ -2066,6 +2079,19 @@ The installer will quit and all changes will be lost. 軟體包 + + PackageModel + + + Name + 名稱 + + + + Description + 描述 + + Page_Keyboard @@ -2228,34 +2254,34 @@ The installer will quit and all changes will be lost. PartitionModel - - + + Free Space 剩餘空間 - - + + New partition 新分割區 - + Name 名稱 - + File System 檔案系統 - + Mount Point 掛載點 - + Size 大小 @@ -2323,17 +2349,17 @@ The installer will quit and all changes will be lost. 安裝開機管理程式於: - + Are you sure you want to create a new partition table on %1? 您是否確定要在 %1 上建立一個新的分割區表格? - + Can not create new partition 無法建立新分割區 - + The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead. 在 %1 上的分割表已有 %2 個主要分割區,無法再新增。請移除一個主要分割區並新增一個延伸分割區。 @@ -2507,14 +2533,14 @@ The installer will quit and all changes will be lost. ProcessResult - + There was no output from the command. 指令沒有輸出。 - + Output: @@ -2523,52 +2549,52 @@ Output: - + External command crashed. 外部指令當機。 - + Command <i>%1</i> crashed. 指令 <i>%1</i> 已當機。 - + External command failed to start. 外部指令啟動失敗。 - + Command <i>%1</i> failed to start. 指令 <i>%1</i> 啟動失敗。 - + Internal error when starting command. 當啟動指令時發生內部錯誤。 - + Bad parameters for process job call. 呼叫程序的參數無效。 - + External command failed to finish. 外部指令結束失敗。 - + Command <i>%1</i> failed to finish in %2 seconds. 指令 <i>%1</i> 在結束 %2 秒內失敗。 - + External command finished with errors. 外部指令結束時發生錯誤。 - + Command <i>%1</i> finished with exit code %2. 指令 <i>%1</i> 結束時有錯誤碼 %2。 @@ -2587,22 +2613,22 @@ Output: 預設值 - + unknown 未知 - + extended 延伸分割區 - + unformatted 未格式化 - + swap swap @@ -2656,6 +2682,14 @@ Output: 無法建立新的隨機檔案 <pre>%1</pre>。 + + RemoveUserJob + + + Remove live user from target system + 從目標系統移除 live 使用者 + + RemoveVolumeGroupJob @@ -2683,140 +2717,153 @@ Output: 表單 - + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. 選取要在哪裡安裝 %1。<br/><font color="red">警告:</font>這將會刪除所有在選定分割區中的檔案。 - + The selected item does not appear to be a valid partition. 選定的項目似乎不是一個有效的分割區。 - + %1 cannot be installed on empty space. Please select an existing partition. %1 無法在空白的空間中安裝。請選取一個存在的分割區。 - + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. %1 無法在延伸分割區上安裝。請選取一個存在的主要或邏輯分割區。 - + %1 cannot be installed on this partition. %1 無法在此分割區上安裝。 - + Data partition (%1) 資料分割區 (%1) - + Unknown system partition (%1) 不明的系統分割區 (%1) - + %1 system partition (%2) %1 系統分割區 (%2) - + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. <strong>%4</strong><br/><br/>分割區 %1 對 %2 來說太小了。請選取一個容量至少有 %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/>在這個系統找不到 EFI 系統分割區。請回到上一步並使用手動分割以設定 %1。 - - - + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. <strong>%3</strong><br/><br/>%1 將會安裝在 %2。<br/><font color="red">警告:</font>所有在分割區 %2 的資料都會消失。 - + The EFI system partition at %1 will be used for starting %2. 在 %1 的 EFI 系統分割區將會在開始 %2 時使用。 - + EFI system partition: EFI 系統分割區: + + RequirementsModel + + + This program will ask you some questions and set up your installation + 本程式會詢問您一些問題並為您安裝 + + + + This program does not satisfy the minimum requirements for installing. +Installation can not continue + 本程式未能達到安裝的最低需求。 +無法繼續安裝 + + ResizeFSJob - + Resize Filesystem Job 調整檔案系統大小工作 - + Invalid configuration 無效的設定 - + The file-system resize job has an invalid configuration and will not run. 檔案系統調整大小工作有無效的設定且將不會執行。 - - + KPMCore not Available KPMCore 未提供 - - + Calamares cannot start KPMCore for the file-system resize job. Calamares 無法啟動 KPMCore 來進行調整檔案系統大小的工作。 - - - - - + + + + + Resize Failed 調整大小失敗 - + The filesystem %1 could not be found in this system, and cannot be resized. 檔案系統 %1 在此系統中找不到,且無法調整大小。 - + The device %1 could not be found in this system, and cannot be resized. 裝置 %1 在此系統中找不到,且無法調整大小。 - - + + The filesystem %1 cannot be resized. 檔案系統 %1 無法調整大小。 - - + + The device %1 cannot be resized. 裝置 %1 無法調整大小。 - + The filesystem %1 must be resized, but cannot. 檔案系統 %1 必須調整大小,但是無法調整。 - + The device %1 must be resized, but cannot 裝置 %1 必須調整大小,但是無法調整。 @@ -2874,12 +2921,12 @@ Output: ResultsListDialog - + For best results, please ensure that this computer: 為了得到最佳的結果,請確保此電腦: - + System requirements 系統需求 @@ -2887,27 +2934,27 @@ Output: ResultsListWidget - + This computer does not satisfy the minimum requirements for setting up %1.<br/>Setup cannot continue. <a href="#details">Details...</a> 此電腦未滿足安裝 %1 的最低配備。<br/>設定無法繼續。<a href="#details">詳細資訊...</a> - + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> 此電腦未滿足安裝 %1 的最低配備。<br/>安裝無法繼續。<a href="#details">詳細資訊...</a> - + This computer does not satisfy some of the recommended requirements for setting up %1.<br/>Setup can continue, but some features might be disabled. 此電腦未滿足一些安裝 %1 的推薦需求。<br/>設定可以繼續,但部份功能可能會被停用。 - + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. 此電腦未滿足一些安裝 %1 的推薦需求。<br/>安裝可以繼續,但部份功能可能會被停用。 - + This program will ask you some questions and set up %2 on your computer. 本程式會問您一些問題,然後在您的電腦安裝及設定 %2。 @@ -2928,17 +2975,17 @@ Output: SetHostNameJob - + Set hostname %1 設定主機名 %1 - + Set hostname <strong>%1</strong>. 設定主機名稱 <strong>%1</strong>。 - + Setting hostname %1. 正在設定主機名稱 %1。 @@ -2988,82 +3035,82 @@ Output: SetPartFlagsJob - + Set flags on partition %1. 設定分割區 %1 的旗標。 - + Set flags on %1MiB %2 partition. 設定 %1MiB %2 分割區的旗標。 - + Set flags on new partition. 設定新分割區的旗標。 - + Clear flags on partition <strong>%1</strong>. 清除分割區 <strong>%1</strong> 的旗標。 - + Clear flags on %1MiB <strong>%2</strong> partition. 清除 %1MiB <strong>%2</strong> 分割區的旗標。 - + Flag %1MiB <strong>%2</strong> partition as <strong>%3</strong>. 將 %1MiB <strong>%2</strong> 分割區標記為 <strong>%3</strong>。 - + Clearing flags on %1MiB <strong>%2</strong> partition. 正在清除 %1MiB <strong>%2</strong> 分割區的旗標。 - + Setting flags <strong>%3</strong> on %1MiB <strong>%2</strong> partition. 正在設定 %1MiB <strong>%2</strong> 分割區的 <strong>%3</strong> 旗標。 - + Clear flags on new partition. 清除新分割區的旗標。 - + Flag partition <strong>%1</strong> as <strong>%2</strong>. 設定分割區 <strong>%1</strong> 的旗標為 <strong>%2</strong>。 - + Flag new partition as <strong>%1</strong>. 設定新分割區的旗標為 <strong>%1</strong>。 - + Clearing flags on partition <strong>%1</strong>. 正在清除分割區 <strong>%1</strong> 的旗標。 - + Clearing flags on new partition. 清除新分割區的旗標。 - + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. 正在設定 <strong>%1</strong> 分割區的 <strong>%2</strong> 旗標。 - + Setting flags <strong>%1</strong> on new partition. 正在設定新分割區的 <strong>%1</strong> 旗標。 - + The installer failed to set flags on partition %1. 安裝程式未能在分割區 %1 設定旗標。 @@ -3293,47 +3340,47 @@ Output: UsersPage - + <small>If more than one person will use this computer, you can create multiple accounts after setup.</small> <small>如果將會有多於一人使用這臺電腦,您可以在安裝後設定多個帳號。</small> - + <small>If more than one person will use this computer, you can create multiple accounts after installation.</small> <small>如果將會有多於一人使用這臺電腦,您可以在安裝後設定多個帳號。</small> - + Your username is too long. 您的使用者名稱太長了。 - + Your username must start with a lowercase letter or underscore. 您的使用者名稱必須以小寫字母或底線開頭。 - + Only lowercase letters, numbers, underscore and hyphen are allowed. 僅允許小寫字母、數字、底線與連接號。 - + Only letters, numbers, underscore and hyphen are allowed. 僅允許字母、數字、底線與連接號。 - + Your hostname is too short. 您的主機名稱太短了。 - + Your hostname is too long. 您的主機名稱太長了。 - + Your passwords do not match! 密碼不符! @@ -3471,42 +3518,42 @@ Output: 關於(&A) - + <h1>Welcome to the %1 installer.</h1> <h1>歡迎使用 %1 安裝程式。</h1> - + <h1>Welcome to the Calamares installer for %1.</h1> <h1>歡迎使用 %1 的 Calamares 安裝程式。</h1> - + <h1>Welcome to the Calamares setup program for %1.</h1> <h1>歡迎使用 %1 的 Calamares 安裝程式。</h1> - + <h1>Welcome to %1 setup.</h1> <h1>歡迎使用 %1 安裝程式。</h1> - + About %1 setup 關於 %1 安裝程式 - + About %1 installer 關於 %1 安裝程式 - + <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-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to <a href="https://calamares.io/team/">the Calamares team</a> and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. <h1>%1</h1><br/><strong>%2<br/>為 %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017-2019 Adriaan de Groot &lt;groot@kde.org&gt;<br/>感謝 <a href="https://calamares.io/team/">Calamares 團隊</a>與 <a href="https://www.transifex.com/calamares/calamares/">Calamares 翻譯團隊</a>。<br/><br/><a href="https://calamares.io/">Calamares</a> 開發由 <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software 贊助。 - + %1 support %1 支援 @@ -3514,7 +3561,7 @@ Output: WelcomeQmlViewStep - + Welcome 歡迎 @@ -3522,7 +3569,7 @@ Output: WelcomeViewStep - + Welcome 歡迎 @@ -3530,7 +3577,7 @@ Output: notesqml - + <h3>%1</h3> <p>These are example release notes.</p> <h3>%1</h3> From 2b6eb8473e36c7d96e14c91eef214867c8c2d0f7 Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Fri, 27 Mar 2020 23:43:50 +0100 Subject: [PATCH 34/35] i18n: [dummypythonqt] Automatic merge of Transifex translations --- .../lang/sv/LC_MESSAGES/dummypythonqt.mo | Bin 864 -> 925 bytes .../lang/sv/LC_MESSAGES/dummypythonqt.po | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo index 3ecefaf469e4b418f8d0bc91e1b38506aa77192f..eb7d7d69dc51c6ef786554a4753061efb95822b7 100644 GIT binary patch delta 187 zcmaFBHkZBro)F7a1|VPuVi_O~0b*_-?g3&D*a5`6K)e%(HGudy5OV_Y2Ot&);$J{4 z2E;;)3=C#KS`$du0dWElgY?~JVqh=;(r, 2020\n" "Language-Team: Swedish (https://www.transifex.com/calamares/teams/20061/sv/)\n" @@ -35,7 +35,7 @@ msgstr "Exempel PythonQt ViewStep" #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" -msgstr "" +msgstr "Exempel PythonQt jobb" #: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" From 3c762d3e2b44ae1b4e3696faa6ba669a5de3889f Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Fri, 27 Mar 2020 23:43:50 +0100 Subject: [PATCH 35/35] i18n: [python] Automatic merge of Transifex translations --- lang/python.pot | 60 ++++++++------- lang/python/ar/LC_MESSAGES/python.mo | Bin 3122 -> 2998 bytes lang/python/ar/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/as/LC_MESSAGES/python.mo | Bin 10843 -> 10507 bytes lang/python/as/LC_MESSAGES/python.po | 60 ++++++++------- lang/python/ast/LC_MESSAGES/python.mo | Bin 5360 -> 5220 bytes lang/python/ast/LC_MESSAGES/python.po | 66 ++++++++--------- lang/python/be/LC_MESSAGES/python.mo | Bin 9677 -> 9384 bytes lang/python/be/LC_MESSAGES/python.po | 60 ++++++++------- lang/python/bg/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/ca/LC_MESSAGES/python.mo | Bin 8282 -> 8201 bytes lang/python/ca/LC_MESSAGES/python.po | 60 ++++++++------- lang/python/ca@valencia/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/cs_CZ/LC_MESSAGES/python.mo | Bin 8415 -> 8378 bytes lang/python/cs_CZ/LC_MESSAGES/python.po | 66 ++++++++--------- lang/python/da/LC_MESSAGES/python.mo | Bin 7714 -> 7675 bytes lang/python/da/LC_MESSAGES/python.po | 64 ++++++++-------- lang/python/de/LC_MESSAGES/python.mo | Bin 8094 -> 7883 bytes lang/python/de/LC_MESSAGES/python.po | 60 ++++++++------- lang/python/el/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/en_GB/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/eo/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/es/LC_MESSAGES/python.mo | Bin 8748 -> 8529 bytes lang/python/es/LC_MESSAGES/python.po | 60 ++++++++------- lang/python/es_MX/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/es_PR/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/et/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/eu/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/fa/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/fi_FI/LC_MESSAGES/python.mo | Bin 7815 -> 7762 bytes lang/python/fi_FI/LC_MESSAGES/python.po | 64 ++++++++-------- lang/python/fr/LC_MESSAGES/python.mo | Bin 8224 -> 8004 bytes lang/python/fr/LC_MESSAGES/python.po | 60 ++++++++------- lang/python/fr_CH/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/gl/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/gu/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/he/LC_MESSAGES/python.mo | Bin 9058 -> 9028 bytes lang/python/he/LC_MESSAGES/python.po | 64 ++++++++-------- lang/python/hi/LC_MESSAGES/python.mo | Bin 11246 -> 10929 bytes lang/python/hi/LC_MESSAGES/python.po | 60 ++++++++------- lang/python/hr/LC_MESSAGES/python.mo | Bin 7967 -> 7923 bytes lang/python/hr/LC_MESSAGES/python.po | 64 ++++++++-------- lang/python/hu/LC_MESSAGES/python.mo | Bin 8114 -> 7880 bytes lang/python/hu/LC_MESSAGES/python.po | 60 ++++++++------- lang/python/id/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/is/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/it_IT/LC_MESSAGES/python.mo | Bin 5522 -> 5288 bytes lang/python/it_IT/LC_MESSAGES/python.po | 60 ++++++++------- lang/python/ja/LC_MESSAGES/python.mo | Bin 9023 -> 8967 bytes lang/python/ja/LC_MESSAGES/python.po | 64 ++++++++-------- lang/python/kk/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/kn/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/ko/LC_MESSAGES/python.mo | Bin 8328 -> 8279 bytes lang/python/ko/LC_MESSAGES/python.po | 64 ++++++++-------- lang/python/lo/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/lt/LC_MESSAGES/python.mo | Bin 8324 -> 8216 bytes lang/python/lt/LC_MESSAGES/python.po | 64 ++++++++-------- lang/python/mk/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/ml/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/mr/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/nb/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/ne_NP/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/nl/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/pl/LC_MESSAGES/python.mo | Bin 5351 -> 5473 bytes lang/python/pl/LC_MESSAGES/python.po | 70 +++++++++--------- lang/python/pt_BR/LC_MESSAGES/python.mo | Bin 8260 -> 8047 bytes lang/python/pt_BR/LC_MESSAGES/python.po | 60 ++++++++------- lang/python/pt_PT/LC_MESSAGES/python.mo | Bin 8224 -> 8012 bytes lang/python/pt_PT/LC_MESSAGES/python.po | 60 ++++++++------- lang/python/ro/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/ru/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/sk/LC_MESSAGES/python.mo | Bin 5147 -> 5039 bytes lang/python/sk/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/sl/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/sq/LC_MESSAGES/python.mo | Bin 7963 -> 7920 bytes lang/python/sq/LC_MESSAGES/python.po | 65 ++++++++-------- lang/python/sr/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/sr@latin/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/sv/LC_MESSAGES/python.mo | Bin 5354 -> 5155 bytes lang/python/sv/LC_MESSAGES/python.po | 60 ++++++++------- lang/python/th/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/tr_TR/LC_MESSAGES/python.mo | Bin 8019 -> 7970 bytes lang/python/tr_TR/LC_MESSAGES/python.po | 64 ++++++++-------- lang/python/uk/LC_MESSAGES/python.mo | Bin 10594 -> 10483 bytes lang/python/uk/LC_MESSAGES/python.po | 61 ++++++++------- lang/python/ur/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/uz/LC_MESSAGES/python.po | 58 +++++++-------- lang/python/zh_CN/LC_MESSAGES/python.mo | Bin 7289 -> 7109 bytes lang/python/zh_CN/LC_MESSAGES/python.po | 60 ++++++++------- lang/python/zh_TW/LC_MESSAGES/python.mo | Bin 7425 -> 7382 bytes lang/python/zh_TW/LC_MESSAGES/python.po | 64 ++++++++-------- 91 files changed, 1798 insertions(+), 1918 deletions(-) diff --git a/lang/python.pot b/lang/python.pot index 3d6e5a614..0fa708790 100644 --- a/lang/python.pot +++ b/lang/python.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -26,22 +26,22 @@ msgstr "Configure GRUB." msgid "Mounting partitions." msgstr "Mounting partitions." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "Configuration Error" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "No partitions are defined for
{!s}
to use." @@ -89,19 +89,19 @@ msgstr "" msgid "Unmount file systems." msgstr "Unmount file systems." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "Filling up filesystems." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "rsync failed with error code {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "Failed to unpack image \"{}\"" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" @@ -109,19 +109,19 @@ msgstr "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "No mount point for root partition" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Bad mount point for root partition" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "rootMountPoint is \"{}\", which does not exist, doing nothing" @@ -131,8 +131,8 @@ msgid "Bad unsquash configuration" msgstr "Bad unsquash configuration" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "The filesystem for \"{}\" ({}) is not supported by your current kernel" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -202,10 +202,10 @@ msgstr "Display manager configuration was incomplete" msgid "Configuring mkinitcpio." msgstr "Configuring mkinitcpio." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "No root mount point is given for
{!s}
to use." @@ -272,23 +272,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "Configure Plymouth theme" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Install packages." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Processing packages (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Install packages." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "Installing one package." msgstr[1] "Installing %(num)d packages." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -299,10 +300,6 @@ msgstr[1] "Removing %(num)d packages." msgid "Install bootloader." msgstr "Install bootloader." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "Remove live user from target system" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "Setting hardware clock." @@ -335,7 +332,8 @@ msgstr "Writing fstab." msgid "Dummy python job." msgstr "Dummy python job." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Dummy python step {}" diff --git a/lang/python/ar/LC_MESSAGES/python.mo b/lang/python/ar/LC_MESSAGES/python.mo index 121865ac8e7286e5fe2362e1ffa1746f34eea365..53869a8e71fa125ce158a02f7d6fe59f231a4dac 100644 GIT binary patch delta 597 zcmXZaJ4*vW6o%oGHH#*u(0JK3(GWCV5^o6ULYfr$3Dydxv9k6;Dp4Cz)FzP5DrEvT zK@hYN!QRG75JD`hZG6A%4h+xC?wLJjX147=c=gX@^v-B=^jUf|VwT4~s$Dr|K3?M# zwr~NTFo$2bjIp6$zJ(Law=sqLxQ3@Vj%}R87xc{P_Q604e!~Da8YJ*g2}-C0JE(={ zsA8MAie1d%clbQv4nAxJ%<#N|ir+=8ucJ0{i&^qpi$Ry&zJ)K&hRqfUXyOt+qYCI@ z0h1%ayo}S#Yp4XrxPcAK;w!FW4|Sq`%xoSjr~+!ZLVi19kjHz}QN5!A|4>(wiJKL% zgo-;ry>H+qKBCtBpiU$;8WdDT#qXguaEalq4z85_+D*bKmQ}s(O1se!jnUOqWqL5; azX+WPO`?kPIw#Jd(@DD*Zl@owM*aa@t29{v delta 723 zcmXxh%S&596u{w=n4qRvs5KgE8!kQ?F>dsX`5Cs==H{w=sskmv;-|?mcbH90IPp>7p~$P+`$e!MU8*J7HkZ9^Pi9nWCZnc`OdPv|~SNe;Vs>4fSAq_zus|!hhI>u}UwqgV;nrj}i8l zH5zTWTM96!Df5TCz;4v18N&CN#w2cF0&h`&SocDt8+%aKPoie%E9${cP~)#r4;~7O zRO&P9WW&n6@54t;R3lXrr%9@!YSEY1BWNMd&qZHXOAS@;A9YgxIe&b}PNnmo4pwxzfQBme*a diff --git a/lang/python/ar/LC_MESSAGES/python.po b/lang/python/ar/LC_MESSAGES/python.po index 2b13914fb..6f4efd279 100644 --- a/lang/python/ar/LC_MESSAGES/python.po +++ b/lang/python/ar/LC_MESSAGES/python.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: aboodilankaboot, 2019\n" "Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n" @@ -30,22 +30,22 @@ msgstr "" msgid "Mounting partitions." msgstr "جاري تركيب الأقسام" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "خطأ في الضبط" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -90,37 +90,37 @@ msgstr "" msgid "Unmount file systems." msgstr "الغاء تحميل ملف النظام" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "جاري ملئ أنظمة الملفات" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "فشل rsync مع رمز الخطأ {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -130,7 +130,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -199,10 +199,10 @@ msgstr "إعداد مدير العرض لم يكتمل" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -262,16 +262,17 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "تثبيت الحزم" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "جاري تحميل الحزم (%(count)d/%(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "تثبيت الحزم" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." @@ -282,7 +283,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -297,10 +298,6 @@ msgstr[5] "" msgid "Install bootloader." msgstr "تثبيت محمل الإقلاع" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "إزالة المستخدم المباشر من النظام الهدف" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "جاري إعداد ساعة الهاردوير" @@ -333,7 +330,8 @@ msgstr "" msgid "Dummy python job." msgstr "عملية بايثون دميه" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "عملية دميه خطوه بايثون {}" diff --git a/lang/python/as/LC_MESSAGES/python.mo b/lang/python/as/LC_MESSAGES/python.mo index 9311d209e68bb37e577806e32d01af2c08aca6b8..f9533c495646f77ddd0c3fb998615a7ffaf1e8f1 100644 GIT binary patch delta 1306 zcmYk*OGuPa6u|K_I^UG$`h}^dLf{f@%@{4>OA{Tz}_$pWb`EbFXht+-&o$Cs_T$ z@G>))Rbe81*k$DhW5W<>!uKJIZ6Z13BbbiU=)^hPiC=I(hHVS#MtwhkC3qK;aTzN_ zeDaYXmj{mRBD=8x3$QVo0X!37FY3p#|muqX6<46DdzunXUy zZtRK?X~iaN!D;jr5qu`-zy$i+ix*JOXbE{GAJB_i=)rP6Hw%aGmW7t$N%HK3;5s9C zhI|>dBTm|N9{aHxS8xL3lIVXgfk}Cz_yfD~BD=TZ5)NPn2dNv}z*G1RJF%S4*L({1 z;V0Bqr*ScAu@38SBII*yCbw~c&SF~{{jVf=%!6aNg>J0nMjgP*sFepWA2YcKCFsTb zcnRAvoqru|`4DPB4^ca14I9&0XEk<*~>W=TpNBo#@(a1meDe44#lLW#Qel<&p;D8$QH(iQi&OB2czhO9iSOY^9K!MV24%w3Bqx#SDB~>0 z4EzSiVJD{H3G`qTv+#GE&iv{HozdJ#ALhI`6)T8~QC4~gWxxw40}P@hG=%cK|8NwJ z9PX^#L`h^F%7WTZ7IXq7ky|(cAEKZ6)f+n5I47Bgl}Kq+H%`M_C!vkH@`uMfY(_4qAr!bd23R>U%S zRjtKRtVKWeqlr(k+ohC2S=JF-W1Mk@@GIgH$|h%{59{$kD)nDPrITJNlMSK`{;NK{F8Z?#a!Mk__t2s!Lz-!!wpL2pY;vJN6 zCv%Xbl1(V%hp*FFLnno!T87oQ7yD4Q#Fy)2Jb(e>C)kN)EWZK&z*6*6=i|5w4`ODX z^FMM1$yJT=Ia^zR?ZgL>GgqQgrt;^)jRe|Knp{P+IW&qByGrSZSBhH)->% zqwXwYF1=#ws@p$$2|Xz_!^W;sE6K=6l47&zYL+#_@Qhs?dm_JoXM4#}6NJTFmCQ=9WN1bTGNY<*Ta? z2AtTeYYds*_71O^*WTeX>zmCjjlA31)YKSi32ct87}1kz{hO9veN5Zew0&ILCv~J# z+h=s-tf}o&pzUAjoda$2, 2020\n" "Language-Team: Assamese (https://www.transifex.com/calamares/teams/20061/as/)\n" @@ -29,22 +29,22 @@ msgstr "GRUB কনফিগাৰ কৰক।" msgid "Mounting partitions." msgstr "বিভাজন মাউন্ট্ কৰা।" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "কনফিগাৰেচন ত্ৰুটি" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "
{!s}
ৰ ব্যৱহাৰৰ বাবে কোনো বিভাজনৰ বৰ্ণনা দিয়া হোৱা নাই।" @@ -91,19 +91,19 @@ msgstr "" msgid "Unmount file systems." msgstr "ফাইল চিছটেম​বোৰ মাউণ্টৰ পৰা আতৰাওক।" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "ফাইল চিছটেম​বোৰ পূৰণ কৰা হৈ আছে।" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "rsync ক্ৰুটি কোড {}ৰ সৈতে বিফল হ'ল।" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "ইমেজ \"{}\" খোলাত ব্যৰ্থ হ'ল" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" @@ -111,19 +111,19 @@ msgstr "" "unsquashfs বিচৰাত ব্যৰ্থ হ'ল, নিশ্চিত কৰক যে আপুনি squashfs-tools ইন্স্তল " "কৰিছে" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "ৰুট বিভাজনত কোনো মাউণ্ট পইণ্ট্ নাই" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "globalstorage ত rootMountPoint key নাই, একো কৰিব পৰা নাযায়" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "মুল বিভাজনৰ বাবে বেয়া মাউন্ট্ পইন্ট্" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "rootMountPoint হ'ল \"{}\", যিটো উপস্থিত নাই, একো কৰিব পৰা নাযায়" @@ -133,8 +133,8 @@ msgid "Bad unsquash configuration" msgstr "বেয়া unsquash কনফিগাৰেচন" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "\"{}\"ৰ বাবে ফাইল চিছটেম ({})টো অনুমোদিত নহয়" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -204,10 +204,10 @@ msgstr "ডিস্প্লে প্ৰবন্ধক কন্ফিগা msgid "Configuring mkinitcpio." msgstr "mkinitcpio কনফিগাৰ কৰি আছে।" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "ব্যৱহাৰৰ বাবে
{!s}
ৰ কোনো মাউন্ট্ পাইন্ট্ দিয়া হোৱা নাই।" @@ -270,23 +270,24 @@ msgstr "{name!s}ৰ বাবে পথ হ'ল {path!s} যিট msgid "Configure Plymouth theme" msgstr "Plymouth theme কন্ফিগাৰ কৰি আছে।​" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "পেকেজ ইন্স্তল কৰক।" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "(%(count)d / %(total)d) পেকেজবোৰ সংশোধন কৰি আছে" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "পেকেজ ইন্স্তল কৰক।" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "Installing one package." msgstr[1] "%(num)d পেকেজবোৰ ইনস্তল হৈ আছে।" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -297,10 +298,6 @@ msgstr[1] "%(num)d পেকেজবোৰ আতৰোৱা হৈ আছে msgid "Install bootloader." msgstr "বুতলোডাৰ ইন্স্তল কৰক।" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "গন্তব্য চিছটেমৰ পৰা লাইভ ব্যৱহাৰকাৰি আতৰাওক" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "হাৰ্ডৱেৰৰ ঘড়ী চেত্ কৰি আছে।" @@ -333,7 +330,8 @@ msgstr "fstab লিখি আছে।" msgid "Dummy python job." msgstr "ডামী Pythonৰ কায্য" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "ডামী Pythonৰ পদক্ষেপ {}" diff --git a/lang/python/ast/LC_MESSAGES/python.mo b/lang/python/ast/LC_MESSAGES/python.mo index 7624cb74e0eb96b315413a59cd665acbe5517d48..d14fb29fa6c947a78f6a271306ecffe5e4d7eaa8 100644 GIT binary patch delta 1061 zcmY+@Pe@cz6vy#1|J3}Ge|r5hs~JsIjqenhR?!W#UAT^K3#H||Bf z*cc|+-yU#roExvPAKzg@3(CySU^Aw17`5;rYQtA}0^g$6Z(;`ba18tQ`3GCX6!8iw zQyVyl->{$kEnRLF$J;nV`k&zy;*v_zjMs1o@1ah-j@s}GUdKPE6JD({>&6_a6e~fz zjVa>#{r&+4Q7?3f1`~=|(*t3F28)v%bVEenq|b z5RH(=EUMY&@CL4-N*t!)n(?wn{>iu-x^bGRjA$suT1*4GL0R2U>i!K9C&)1h!@x-e6*6${-hjMnDD I^HJ~nU-k!Fo&W#< delta 1161 zcmX}rOGs2v9LMo94<{$>;b{3N$J=N*)8wOvm1act0JAo2+_-SU5e8~zaAqtKaT7rZ zt*S+jMbIY2)hr@|ifPpYBBDhQ78JCy0;5fvzQ1z^51jkC|9d@i&i()Yevkf+%`S)h zw+y3;xt)2_W6TMx_Hkh}_>GBRBQ{|_?#E$lz&YH45AiTAVJog;8`f7C(~kY9cntOa zI&L#&)+};U$Aec`kIT3R|6&cc2Hf{Oc%JwS>Ol9AA22Ua>po*G{z0v)TxZN?Y{CN= zM{PWcI>=RQXMgjEn`R!o$0PU)cVN7diRZ8zr%(&$Q5(L)F#bTT4+Qy2Y{L;upg!yw zcHjq$p=Z6Du{fS&e{-B0ZF~(KEa4T(@C}a-Njw|fxDR!JEb2q<;H+x*oEz2hBlh7>R4>Ffxf`9vVd4v@g-f^#zm($ud2S(& zV z9^Qu}%noJI&(z`c-=eXbNhR#y=j}c!gTsuf{z{z&4Zk*27L_2l_QXxOLdtI&t_tZ@ zn`$t$i~VZdYj|DkRgFq=>`;m5SzF5HE^a8JO$(S#UCN`QxZ*2S#Kuz>lewu}K6%L* z&rCRx>6wTVot}v~shpF}AN2=|bAcC!AbnJe7a>pimsG^?UvUbv<;p diff --git a/lang/python/ast/LC_MESSAGES/python.po b/lang/python/ast/LC_MESSAGES/python.po index ca0456e3e..df13e8871 100644 --- a/lang/python/ast/LC_MESSAGES/python.po +++ b/lang/python/ast/LC_MESSAGES/python.po @@ -4,16 +4,16 @@ # FIRST AUTHOR , YEAR. # # Translators: -# enolp , 2019 +# enolp , 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" -"Last-Translator: enolp , 2019\n" +"Last-Translator: enolp , 2020\n" "Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,22 +29,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -89,19 +89,19 @@ msgstr "" msgid "Unmount file systems." msgstr "Desmontaxe de sistemes de ficheros." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "Rellenando los sistemes de ficheros." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "rsync falló col códigu de fallu {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "Fallu al desempaquetar la imaxe «{}»" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" @@ -109,20 +109,20 @@ msgstr "" "Fallu al alcontrar unsquashfs, asegúrate que tienes instaláu'l paquete " "squashfs-tools" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "Nun hai un puntu de montaxe pa la partición del raigañu" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" "globalstorage nun contién una clave «rootMountPoint». Nun va facese nada" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "El puntu de montaxe ye incorreutu pa la partición del raigañu" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "rootMountPoint ye «{}» que nun esiste. Nun va facese nada" @@ -132,8 +132,8 @@ msgid "Bad unsquash configuration" msgstr "La configuración d'espardimientu ye incorreuta" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "El sistema de ficheros pa «{}» ({}) nun ta sofitáu" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -173,7 +173,7 @@ msgstr "Nun pue configurase LightDM" #: src/modules/displaymanager/main.py:737 msgid "No LightDM greeter installed." -msgstr "Nun s'instaló dengún saludador de LightDM." +msgstr "Nun s'instaló nengún saludador de LightDM." #: src/modules/displaymanager/main.py:768 msgid "Cannot write SLIM configuration file" @@ -203,10 +203,10 @@ msgstr "La configuración del xestor de pantalles nun se completó" msgid "Configuring mkinitcpio." msgstr "Configurando mkinitcpio." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -267,23 +267,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Instalación de paquetes." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Procesando paquetes (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Instalación de paquetes." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "Instalando un paquete." msgstr[1] "Instalando %(num)d paquetes." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -294,10 +295,6 @@ msgstr[1] "Desaniciando %(num)d paquetes." msgid "Install bootloader." msgstr "Instalando'l xestor d'arrinque." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "Configurando'l reló de hardware." @@ -330,7 +327,8 @@ msgstr "" msgid "Dummy python job." msgstr "Trabayu maniquín en Python." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Pasu maniquín {} en Python" diff --git a/lang/python/be/LC_MESSAGES/python.mo b/lang/python/be/LC_MESSAGES/python.mo index e9e2fb36215b8df2877b0ce3db427ae429112ab2..45559396c58bd76ec24ef8a1c90054bc8153338b 100644 GIT binary patch delta 1310 zcmYk*T}YEr7{KvobFVeOn$xAV>NShhvJB^(I_<+RP#HoAx)_#pVUb2iAtE|PM0Ftq zZ$j8bMI=E4#jvn$L`V<|qKimqeO>fLA<|9VME{5Fq625Y=e%d{`FPHGUv%7Ui@tL^ zCWX>W-9)Xoi}Yc{!4KtwA<~W?Q=>BsDUKyKox!;w#hv)3TETl%g)E6}Mn->iHPf)4q-o ze1kf%KS!h!+cAVw7%e0CO3;ID@_P(Vp`Oumq)R?wGp=F~tJ!W54q+zu#lqvXZ@5Le zFpczdV-N1Z2RMlDaW{roO)HM(lmAYFc^-72n^|=sy;zBlaR9$#8+LP`?RX1y2R~Bn zI?|vizJPis?&A(zK+V|CRKJ@}%~Ty$V7QR{>t(u}>bQ-1ndVUkOyFTO_>(>lBah@P zUc?DJf*v{>@eKMfj-~hobpb9ekWTE!8SKJ3%!u;MX-ZpgAI4B$oWq^?4a1nvjp@eI zs1q&VQFJn@zJC%Q;hj`FVv01-zJ|5<8tc(jl)O_RJV!e^LNGzFf@D+1xQP+Gih3lg z*n$mw3Nbv7qiFEW1~7*D70hBkE}Ora&T}Ty`Jun*O09DiGp#EQq zXauZThiUkU8mxpPn7f}yQ>WR{(rA?#US|!F9!#?pG73DJNiF5nYN}?m(i$oIaQJ)^x@%nF)LRNpW7<3`_Plj`OSQ1?lWhs z`p(Ya!zIpN6wfx&GSaR%rHT&x_z6v}sTF+Rsn@h!@LDGAYu8KfH zV&^d%e~-m)<0i_FupXB!icX*t*HZowgEeF($?V2N_BR&~;X&-fWB35&%*t6NRn>m1 z!UinGG1T}J7jl1GY)b>>WVUHP2Cx?Y!FA|i8(MHrD*G=pnI^CeUtkS-8Eq%_p-jYJ zA?9+R%~+4s_&4sr6qYXwID%5XjI!l#Q0|DE*GeowIg+C&-}^Gzf7!Cj1PX8#<#PRp z5>KNbx7>@;pa%Eh=~#Rgsj8mg0DizjI6$LHe1b)|f(x`7>rf`pi_-reK{DfHW^f~( z;U6r;Ygmr2Q5qI<(0O#!ed@iEFkCG>U_yHMKS$8Rvht<;|wK#AvTrONO-+_TU(HVIIr;5=T+~l81N_ z=TMI7;EKqRRH{)j4gztcuSoL9%8N-XF7j0J_L7{@Vr0T{Uo@%2`pxNfttVGuO*u=G zw~&*S%5KS1WhJ<>5@fA%P=(f7S4P@qa`NPpWRkMOMOK|F%dyc4xC$IwtxK*VM_Kru z>wSE-Pd7K6^65ak&#xQ(tu4Caxc{WDL$`OfclcVuc4D_9x3Q_&7cJ|?R=@Uib$j&c zuI^mj)UJPMrEZ|Dt<~S*I}xs4)R?r-98$%~hKJ^uL*y jDKoCkG)=G4hC$3EHAW(1k29Tq6SC%VR)!~XUdDX{fGY{n diff --git a/lang/python/be/LC_MESSAGES/python.po b/lang/python/be/LC_MESSAGES/python.po index be57dc03e..75c834658 100644 --- a/lang/python/be/LC_MESSAGES/python.po +++ b/lang/python/be/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Zmicer Turok , 2020\n" "Language-Team: Belarusian (https://www.transifex.com/calamares/teams/20061/be/)\n" @@ -29,22 +29,22 @@ msgstr "Наладзіць GRUB." msgid "Mounting partitions." msgstr "Мантаванне раздзелаў." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "Памылка канфігурацыі" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "Раздзелы для
{!s}
не вызначаныя." @@ -91,19 +91,19 @@ msgstr "" msgid "Unmount file systems." msgstr "Адмантаваць файлавыя сістэмы." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "Запаўненне файлавых сістэм." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "памылка rsync з кодам {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "Не атрымалася распакаваць вобраз \"{}\"" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" @@ -111,19 +111,19 @@ msgstr "" "Не атрымалася знайсці unsquashfs, праверце ці ўсталяваны ў вас пакунак " "squashfs-tools" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "Для каранёвага раздзела няма пункта мантавання" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "globalstorage не змяшчае ключа \"rootMountPoint\", нічога не выконваецца" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Хібны пункт мантавання для каранёвага раздзела" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "rootMountPoint \"{}\" не існуе, нічога не выконваецца" @@ -133,8 +133,8 @@ msgid "Bad unsquash configuration" msgstr "Хібная канфігурацыя unsquash" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "Файлавая сістэма для \"{}\" ({}) не падтрымліваецца" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -204,10 +204,10 @@ msgstr "Наладка дысплейнага кіраўніка не завер msgid "Configuring mkinitcpio." msgstr "Наладка mkinitcpio." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "Каранёвы пункт мантавання для
{!s}
не пададзены." @@ -270,16 +270,17 @@ msgstr "Шлях {path!s} да службы {level!s} не існу msgid "Configure Plymouth theme" msgstr "Наладзіць тэму Plymouth" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Усталяваць пакункі." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Апрацоўка пакункаў (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Усталяваць пакункі." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." @@ -288,7 +289,7 @@ msgstr[1] "Усталёўка %(num)d пакункаў." msgstr[2] "Усталёўка %(num)d пакункаў." msgstr[3] "Усталёўка%(num)d пакункаў." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -301,10 +302,6 @@ msgstr[3] "Выдаленне %(num)d пакункаў." msgid "Install bootloader." msgstr "Усталяваць загрузчык." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "Выдаліць часовага карыстальніка з мэтавай сістэмы" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "Наладка апаратнага гадзінніка." @@ -337,7 +334,8 @@ msgstr "Запіс fstab." msgid "Dummy python job." msgstr "Задача Dummy python." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Крок Dummy python {}" diff --git a/lang/python/bg/LC_MESSAGES/python.po b/lang/python/bg/LC_MESSAGES/python.po index c4ffe56d0..e11d8be4a 100644 --- a/lang/python/bg/LC_MESSAGES/python.po +++ b/lang/python/bg/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Georgi Georgiev , 2018\n" "Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n" @@ -29,22 +29,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -89,37 +89,37 @@ msgstr "" msgid "Unmount file systems." msgstr "Демонтирай файловите системи." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -129,7 +129,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -198,10 +198,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -261,23 +261,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Инсталирай пакетите." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Обработване на пакетите (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Инсталирай пакетите." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "Инсталиране на един пакет." msgstr[1] "Инсталиране на %(num)d пакети." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -288,10 +289,6 @@ msgstr[1] "Премахване на %(num)d пакети." msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -324,7 +321,8 @@ msgstr "" msgid "Dummy python job." msgstr "Фиктивна задача python." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Фиктивна стъпка на python {}" diff --git a/lang/python/ca/LC_MESSAGES/python.mo b/lang/python/ca/LC_MESSAGES/python.mo index 1c90ea3811119f29bf49d5087d3bec4fe2d4bfd6..1c411baf9b2df1100e29432d74faf3249f9bcbe8 100644 GIT binary patch delta 1391 zcmX}rTS(JU9Ki82+e}N%OFDJh{#u$dY36O-%6ZQ~go-eY$kr%n&X|r8lR+;Lk`Mmz zElLO>i=Y}tC)^=u^8tt71yu?6E}x!M*06`wBrLz#?M%; zR6zZrvXcgTlv2C!2=2y9;dmUAi05z{&SM%bp-i|bI<$}slyMwr!A?xUi?|&}(2Tdy ziqlxY{OSXh1RA2Ygg#8i!^C!!onAp1Z~|q37bpvwN9nhW@%R^I=kZ%Z3u#2zP&dkk zMo<Jh4>X^z@*sF0OcqPI)*#Y8*aaj)x`Jk z1b#=ExG|37#SU!4TNr4i@`H*E_mkgtJd3Ar2IZ`>*dCuK2g(3VScSu=;Y;)zmLIaUEsACRVkPA*>{x z3dgG`XP(cCxm7Jn|D$31P$M4291NzAe_7c)4XL<}@+&ZtSBXnd253c@(1UX8Cr~co z3`&X@P>#w$Cpl{uX5nx+zK?vO-XnWZ%UFgH0Y)jIQi0Oo#d4fL{?sC`Li~*_Xk+$L z>_a)@NtDcd!vfsPO?6-=%6K};PG4g#uHZg2vrB0Yv{0#|(u*#9gtFrlu4p}$Vh0YO z+?97I6J_(!Ic&ooe1fv$Tx;lOdJv_5JIayXK*`J(G++d!N~t2?;!z|EjJ@&H@-C(r zL*f6oM$Mr=HCj!Qg9G|Uqt#HS|1nw;oWzxse2P5vy3J&XmQ0dq)u^|c%*i$K4<1>* zct^*YDF@exJ|n?bpt`eO|XG zI34#aCivX)(~vtjq~#3`*)(sjHapp;b)D&%z0;>%aCG}P=4iw} DkK(3i delta 1465 zcmXZcTS(JU9Ki82+bnBoW?pL5j+S{z$?}qEUNUo3MpTv|5skTO<+S$SykxQ-in1Hx zh%OHjJ%mC~G<>O$Qt+WDy7^L61ieT|(L)hk==*E?v$N0no&C@4caHW}zo`zspKHFP zc+61Pk^_W3?85iI^EW`;+!?@{66=6oyMwH*r;|hF;$@mpZ zl?tlZ8A>gop$eCx3$yS{G`@pL#1oi+lQMkg&MqbRt?Zj0mJMBjqa2REP7bpvwMCtbj=U~FD$j&v&LUy8Ts0(F7 z11Jj_$3^%S%b8#Oq>_%sRth#EsZkejIgX2g*P#C<{A_i}6OZ{SmGu z{(yUMVSHo(U6@aN5rbQ)JfN}#t>iZcn{YRt#C`Y<<;*JCCaMd^PuY9DIi+bQHflge`%WM$tm4Q=F8{u+u<;%z7c9736} z7v=VkqFlyzC@KDda%2s3k~2Sn={OjTA0w}*Z^&NM%pko>sMxUxcSYlKSV}yKeAF+# z3NV>jH)0(YV;{;HkE3K}8aFi$H{%BE#ML;0GS7FE4d=7FWf>;6c2OUW~IxcHV(pA9WSi;}FWxP9YhpQL8lnTxf`) z$P4mRQe=0`@&AzpNp{SU@c)kGzGzBmXvl20$lj_#PtA6d3Qd`9iR*~VDY+DRYD4oa zwzxIa$h=w=s<5OcS5uQmmM=NVrWA%e7MrOobjq^Av>`NXDKu4tCoO+t7rS+fr`@ds zhTEt2``WzP@AMsT`?b+!_}$*{N9#>fcp!enS{pdx^LX8!PTi6fFal1WM>o^gsSUSb zc*ero8SszYZEf>9X>ZYnN4iU$kKy;UI$gXJZnFI_&CBTS$, 2020\n" "Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n" @@ -29,22 +29,22 @@ msgstr "Configura el GRUB." msgid "Mounting partitions." msgstr "Es munten les particions." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "Error de configuració" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "No s'han definit particions perquè les usi
{!s}
." @@ -93,19 +93,19 @@ msgstr "" msgid "Unmount file systems." msgstr "Desmunta els sistemes de fitxers." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "S'omplen els sistemes de fitxers." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "Ha fallat rsync amb el codi d'error {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "Ha fallat desempaquetar la imatge \"{}\"." -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" @@ -113,19 +113,19 @@ msgstr "" "Ha fallat trobar unsquashfs, assegureu-vos que tingueu el paquet squashfs-" "tools instal·lat." -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "No hi ha punt de muntatge per a la partició d'arrel." -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "globalstorage no conté cap clau de \"rootMountPoint\". No es fa res." -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Punt de muntatge incorrecte per a la partició d'arrel" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "El punt de muntatge d'arrel és \"{}\", que no existeix. No es fa res." @@ -135,8 +135,8 @@ msgid "Bad unsquash configuration" msgstr "Configuració incorrecta d'unsquash." #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "El sistema de fitxers per a \"{}\" ({}) no s'admet." +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "El sistema de fitxers per a {} ({}) no és admès pel nucli actual." #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -207,10 +207,10 @@ msgstr "La configuració del gestor de pantalla no era completa." msgid "Configuring mkinitcpio." msgstr "Es configura mkinitcpio." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -279,23 +279,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "Configura el tema del Plymouth" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Instal·la els paquets." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Es processen paquets (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Instal·la els paquets." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "S'instal·la un paquet." msgstr[1] "S'instal·len %(num)d paquets." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -306,10 +307,6 @@ msgstr[1] "Se suprimeixen %(num)d paquets." msgid "Install bootloader." msgstr "S'instal·la el carregador d'arrencada." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "Suprimeix l'usuari de la sessió autònoma del sistema de destinació" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "S'estableix el rellotge del maquinari." @@ -342,7 +339,8 @@ msgstr "S'escriu fstab." msgid "Dummy python job." msgstr "Tasca de python fictícia." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Pas de python fitctici {}" diff --git a/lang/python/ca@valencia/LC_MESSAGES/python.po b/lang/python/ca@valencia/LC_MESSAGES/python.po index 519d888c8..e32c31382 100644 --- a/lang/python/ca@valencia/LC_MESSAGES/python.po +++ b/lang/python/ca@valencia/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Catalan (Valencian) (https://www.transifex.com/calamares/teams/20061/ca@valencia/)\n" "MIME-Version: 1.0\n" @@ -25,22 +25,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -85,37 +85,37 @@ msgstr "" msgid "Unmount file systems." msgstr "" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -125,7 +125,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -194,10 +194,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -257,23 +257,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "" msgstr[1] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -284,10 +285,6 @@ msgstr[1] "" msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -320,7 +317,8 @@ msgstr "" msgid "Dummy python job." msgstr "" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "" diff --git a/lang/python/cs_CZ/LC_MESSAGES/python.mo b/lang/python/cs_CZ/LC_MESSAGES/python.mo index 5f470e27ac83fe872833ba43878c80acca882454..74c8aba4a6af66e49976860f5c2ec26b93ca9b34 100644 GIT binary patch delta 1407 zcmX}sSx8h-7{Ku}(_C}OeJjW1YFSz4m`j>VW;qF&BnctbLza`7E8~nMSkv+#wD>Xz zfkB!im;}LqWP&K81oco4JtWc!MFye11U{7gzh>ydncsKrJ@=gNeD~(khHfHDIfWAFdTmsiU~+w*0L1(#43+z{kTBoSqv0yN_(jKfP9gZ&tf zBbb6yn92HTksy*Afx*6k33!6O1!bo6?_w$4aC$>I&}03CzYXC=*79`X(quN$4adW4r(UT`ZwL zj;HZE%EHz#J}=heaeRQTYJz2g3@oL-b=ZVwa0caDrLsMSr~;G;j$kp~Mjc<^HvH+$9pKBV$y&A zE6V9##|BJb*6rBqcLZgDmney>AUUdVCY4I2;~mU%5lD$8H&NCbMTRKXTLLNR3SPiejwYK@w@`NW z5S!4%EVbB*GJXcn<0{&)j=w3UP}9igRf{NRVHs<%RQFY|9}V>RHzQ|Aa^@jTcEei# zu5x~JX(nIy|F2F|;GQ(4X!%43-0w{(hC}Y(CUfLL`cj8oG`SADGcaNz} zW6R_LS0-&AZ6__q-J_We``rVY#Zcj%*K!Rdo;B@HfX5s5I2uMV1Z|cDIYdO{ zLqz055DtP#ge6H3K|NRxks@tK2@w<-B>g| z0c(`n$c<{;gzdN$FBts?7)5^;!*LN4a2aL7s38ABGEwq0q79E>ES|?`9KksBVG6#$ zOy*Z#X+&@%KG;7n1NYOfM%n2wO2ToJ1g}vRw21QDUtEXbYyCUdP!@6sWkUlf8yZ1b z$P6aoJ1l2@wM=6J7KISlf|N#G#%(x*lJE!SVr-~CaU)712g<@OVlv(~?mxi_`t#U| ziDCW)3}6=hE9hya@rcGA457a1cmxmQ89a*bQQlb<+hnLZh;`VG<#-P@{D_}TN?9q3 z)Lty3Tr%M$luACtCY+6;{&MJ2sY@|dV;LSd97EZ`63T-atYSAdU@i`09!_H+ z{xtd-ym;24T2U(EM5)jaN+s{0oSo;f)PFOL1#UEAAfx1qX3WPfl*4utH5^BIC2x%T zW(LczAQA0Yj9c)A;S@^#FDMHMB^hf}nJAU4_0Sliu@9w0bC``GWR;zjBhM}ROUF}4O7#JG-K*u3GZC%%&qNzi$y(*3!I@F~@2H)G zTvbF7!Cb3XEuXT>|Nlu9v>OPGDDjS3QmnGqYVS)+ib;8wEVhUm`sG9hAy=I@!D(yOa zhpWe_x$Uk_-L3Tw^tyGYZz1Ha$u|x7PRUad*Gntvhs0TGOMN kOLy4Yb?t=KK7HTO!=0|4)fCgC&OYCmEza!wo%GcF4?<6~1^@s6 diff --git a/lang/python/cs_CZ/LC_MESSAGES/python.po b/lang/python/cs_CZ/LC_MESSAGES/python.po index 8080074a2..be850b064 100644 --- a/lang/python/cs_CZ/LC_MESSAGES/python.po +++ b/lang/python/cs_CZ/LC_MESSAGES/python.po @@ -5,16 +5,16 @@ # # Translators: # pavelrz, 2017 -# Pavel Borecki , 2019 +# Pavel Borecki , 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" -"Last-Translator: Pavel Borecki , 2019\n" +"Last-Translator: Pavel Borecki , 2020\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" @@ -30,22 +30,22 @@ msgstr "Nastavování zavaděče GRUB." msgid "Mounting partitions." msgstr "Připojování oddílů." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "Chyba nastavení" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "Pro
{!s}
nejsou zadány žádné oddíly." @@ -93,19 +93,19 @@ msgstr "" msgid "Unmount file systems." msgstr "Odpojit souborové systémy." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "Naplňování souborových systémů." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "rsync se nezdařilo s chybových kódem {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "Nepodařilo se rozbalit obraz „{}“" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" @@ -113,19 +113,19 @@ msgstr "" "Nepodařilo se nalézt unsquashfs – ověřte, že máte nainstalovaný balíček " "squashfs-tools" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "Žádný přípojný bot pro kořenový oddíl" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "globalstorage neobsahuje klíč „rootMountPoint“ – nic se nebude dělat" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Chybný přípojný bod pro kořenový oddíl" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "kořenovýPřípojnýBod je „{}“, který neexistuje – nic se nebude dělat" @@ -135,8 +135,10 @@ msgid "Bad unsquash configuration" msgstr "Chybná nastavení unsquash" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "Souborový systém „{}“ ({}) není podporován" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "" +"Souborový systém „{}“ ({}) není jádrem systému, které právě používáte, " +"podporován" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -206,10 +208,10 @@ msgstr "Nastavení správce displeje nebylo úplné" msgid "Configuring mkinitcpio." msgstr "Nastavování mkinitcpio." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "Pro
{!s}
není zadán žádný přípojný bod." @@ -278,16 +280,17 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "Nastavit téma vzhledu pro Plymouth" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Instalovat balíčky." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Zpracovávání balíčků (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Instalovat balíčky." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." @@ -296,7 +299,7 @@ msgstr[1] "Jsou instalovány %(num)d balíčky." msgstr[2] "Je instalováno %(num)d balíčků." msgstr[3] "Je instalováno %(num)d balíčků." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -309,10 +312,6 @@ msgstr[3] "Odebírá se %(num)d balíčků." msgid "Install bootloader." msgstr "Instalace zavaděče systému." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "Odebrat uživatele živé relace z cílového systému" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "Nastavování hardwarových hodin." @@ -345,7 +344,8 @@ msgstr "Zapisování fstab." msgid "Dummy python job." msgstr "Testovací úloha python." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Testovací krok {} python." diff --git a/lang/python/da/LC_MESSAGES/python.mo b/lang/python/da/LC_MESSAGES/python.mo index 43c9b5f7c6eedd0da71f7bde2fd919bc3577cd00..db2c8a6f4d4933eead6998fa6c31825aaa022d32 100644 GIT binary patch delta 1395 zcmX}rOGs2v7{Ku}(~N1UsiSF*IoHh6l4f$W@l`%@l2S7gDzrtWV@NX6;FN+f5Tpys z&BaA%D1|L*6O2gVq9VkFMUO=xkwlwv(HjCOv;Wr}x^U)q&b{aHo$s8vQU0qew3uWW zQ9NEs2BpTVR4aB__~H3#Rq7Cai&!3|)E3%YYl5rzW1XO?_vtR z!(ydE>L-q0c+ie5xDhX4G7e)Z z-b4q^U_R@sH&haN5xvgnn2twjJ5hFe31z}blnEZ81hjxM?h_{9D$33i)*FF%Q8v_x zvY}y=K&Ejs&SM$tt0gK~m=mj15!NE9Q5SJ1PNNIoqfBUvGbSiT3FsJRqCfKfDwfl} zgD3GL%EI1wju)G;5yvsqK;;XSJlsouPv99mg%45ADvRyWMR`yrIDln1gc{Cahlz!- zj&@^`;V8h`dC<|m0 zrL-GR&b$YSMGc`G-5APUxrcJeU!ctMIfeYoi)2PgDtDt?u7fB8+E60zM;DHwocR-E zZMBGp@dwIXsb&&6N*}U@8bm&+>qrvR6w3HHEWm{j6^T5S)#Q@6aR;`bOfZ1Ea185l z9;JU8QF^fg<^5%paW5mTpv;#``eXw~Py*?Wv2EC#Q?J8S^lnVL4 zlTX=0$)yzNeO9}vL?5v_O*Q(g)om&dFI)dah3#<@rc~{8pVrqM3}|h^K)~nk(a!n; zeqUF3CjOb(T;K{{Nz|jmRq5AEnObXy*52vY{K4~&Z_%~gXY^G~J)J(ke$M6yuiCTC Fe*uLWqjmrQ delta 1412 zcmXZaSx8h-7{Kv!hZ)l}*IdRiy;)W+xtsfvxkR}{6h;^|*(lbCFf&F%Fcn1+E#$?b z7Xw?c7ZC^l z<0f3fYW7zvR5oK-6a~AG)To=7i}NT8{=`B|+7Mj06=fkON?_M99mhlcFR+I82kgeQ z=wJZDxRdrR^mbBtMx`C2$Zs|t#UpqbPvAS0JFDZE3{{7)345>_Cs4;_?A4UAke2mXF4xU3<;34MYEVkh% zl<{Rm*^J#N{o^R}zM}+?O4_7dgR*WP%0X_U1mv9zb-Y66sAZIZ*6~|OY~)5ej-t%_gA#Z*_bYG4g>vT?u^i`-N8PB_sAzPUD0?XK)lteQ{1y1* z&PyrgU^DQlTd3=l3gf9c!?KH7z46AJp(*35*%r5(b~Q!LE?<*jwb&vmsgXEUY}8tk z6C0?>C&!YIc2G);ev3`3GOkz(v}R-4Qli!R{Fb$_bcgQjKkLwk+zyxC>lz%;J$6^0 z!=t;0-5$q)?_<;x%{LbP)?_NG^bN)t;c0>KCtX8*feChf;N@dyaInMU`)hrm`Fys$ FrvH|}s5$@u diff --git a/lang/python/da/LC_MESSAGES/python.po b/lang/python/da/LC_MESSAGES/python.po index 00ddffc5c..0207c38f4 100644 --- a/lang/python/da/LC_MESSAGES/python.po +++ b/lang/python/da/LC_MESSAGES/python.po @@ -5,16 +5,16 @@ # # Translators: # Dan Johansen, 2017 -# scootergrisen, 2019 +# scootergrisen, 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" -"Last-Translator: scootergrisen, 2019\n" +"Last-Translator: scootergrisen, 2020\n" "Language-Team: Danish (https://www.transifex.com/calamares/teams/20061/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,22 +30,22 @@ msgstr "Konfigurer GRUB." msgid "Mounting partitions." msgstr "Monterer partitioner." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "Fejl ved konfiguration" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "Der er ikke angivet nogle partitioner som
{!s}
skal bruge." @@ -93,19 +93,19 @@ msgstr "" msgid "Unmount file systems." msgstr "Afmonter filsystemer." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "Udfylder filsystemer." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "rsync mislykkedes med fejlkoden {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "Kunne ikke udpakke aftrykket \"{}\"" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" @@ -113,19 +113,19 @@ msgstr "" "Kunne ikke finde unsquashfs, sørg for at squashfs-tools-pakken er " "installeret" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "Intet monteringspunkt til rodpartition" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "globalstorage indeholder ikke en \"rootMountPoint\"-nøgle, gør intet" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Dårligt monteringspunkt til rodpartition" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "rootMountPoint er \"{}\", hvilket ikke findes, gør intet" @@ -135,8 +135,8 @@ msgid "Bad unsquash configuration" msgstr "Dårlig unsquash-konfiguration" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "Filsystemet til \"{}\" ({}) understøttes ikke" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "Filsystemet til \"{}\" ({}) understøttes ikke af din nuværende kerne" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -207,10 +207,10 @@ msgstr "Displayhåndtering-konfiguration er ikke komplet" msgid "Configuring mkinitcpio." msgstr "Konfigurerer mkinitcpio." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -277,23 +277,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "Konfigurer Plymouth-tema" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Installér pakker." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Forarbejder pakker (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Installér pakker." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "Installerer én pakke." msgstr[1] "Installerer %(num)d pakker." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -304,10 +305,6 @@ msgstr[1] "Fjerner %(num)d pakker." msgid "Install bootloader." msgstr "Installér bootloader." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "Fjern livebruger fra målsystemet" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "Indstiller hardwareur." @@ -340,7 +337,8 @@ msgstr "Skriver fstab." msgid "Dummy python job." msgstr "Dummy python-job." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Dummy python-trin {}" diff --git a/lang/python/de/LC_MESSAGES/python.mo b/lang/python/de/LC_MESSAGES/python.mo index 79665d9b769981ac969daeb2b11413b042498a1e..64a77a3924b7e0fa026c9b9806e6fb02ab0caf86 100644 GIT binary patch delta 1306 zcmYM!OGs2v9LMqh*o^rY%}2hPbj&QZEKQx!9L-D;(2Z`Qdu&GV8*{xRr@!CA3Fy9Zp~^PGLSSVI3x{j#-cDKZ8|x19R{N zHkgI%1Hncfc$3UZu?@>G7;j&}Y}!+}24}DU=TQ@WMJ3`+j*U}>9@_gb7f<0@9K}2g zqZjXDCG*=XK_(A=pk7Q#G3!MyYNf-d0VAjZ?xPZ#L4CJ?8Tc8sa!ZXR;zKRy2x>v2 zsPQMU5FcWI`E8zH1LnBRd{~c^#)fb!PGU8_L=CtqEjB+n{9z8?4>>ak_G6vAka*J^ogAPiHeYF2j4%w4s zR)dqMh0S9t{>DmdrhI$xbT;)@aE}LV_&wgyNV+Q7Mcj>dunw0{6)GY-Rj3cuzKnF) zW7O8np|qNbOl%KOW zjN5S$m2gIWY@!C#dxubo4IzuSOSl6gs7gEy5o{y)hSgZY?E3H^D#Jl+!Rx5Z-(Ux( za^!ok7qx}AQT@+R3?}>o8zzT) delta 1498 zcmYk+O-NKx6u|L2;%HNrsriwb-li`#ElVxUbj%Zyco+(t~jNd!4kCv?TqhXCceNDoWcyW#Vb{c_NYfu{(l{};%iLB zpIEL`K*cRlY8?{}T#xOz39m)R&oG7Y6ei*y5X~Zl%i)nZjSK$bz zV+eEcJr=UQ`c5Z_iHxO@2Mh2JV+YDkZ=(c!juK!JC81fA&;7xbn7AymbB&V75tI$} zqikpdC6NhSgP*aI_0?}WYq2bWhDVXos2jK$Cr|>;VKJsHj|6T+3Dk{}*bwI6gXsJl z+|4+QCoy|PB!PY`Vtf+=2k4B_*^dd-Hy_*Z7+%5CID>L#)ohbTRV&tEJ67T&)c6%U zElOD_ODkhfa>Oy*&Nzdz$wv3#9_&e>{)Kd&GEtAyQSH=eFXK*>`6nnPoWmN-B%4w^ zfl{$sC>5KCj{hQ$sxn>xLaJtzBRmy#0Oe&LPNV)(;t&%h7)B{&3O6b3W|Wt$38l2{ zC<|RiHmhDDf9eA_4}QfhcsL`H@MV;R9-}<>4kfWLQWW(oKxZ4Bcvg{0RG^%V3ybj% z$_L+~BshZ(OyavIi66uU9K?e-j&g))Y*(y7d9Dj3?l5W`M@cO3jm`!-F^o219?HT8 zuoEw#WIT&Ia2{K+jPi&>C<}%05ZWk{3r`|@Q)9^Mqo%P1f8cJc$X%#Vt?Hx0JEQpB zSvYf0)igO*IRd$AX{EHq-y{hjyVkVw;QiQKtEA=#zKX3(k{7FzRzQ=hE@-o6*(&Hs zI@^Oq*7VdGdU8p{chd4`CBfs?EX%H--@4UOAAD#nu~daVS?A+&4BhSSGqm4lc(u#h z+oMgV_l#j`U%$^ZdP0*4gO+@kyW5D2wX4^w?H2~^I`6_@zIOYxrN*T0|a&YeY(Tw(QR&{I~w$3=CGyA>C<&i({L{a9vl5X@_DznLwnrq Wou>ACOvCFl$41QoGvv(fiung;I>vec diff --git a/lang/python/de/LC_MESSAGES/python.po b/lang/python/de/LC_MESSAGES/python.po index 14a65d375..1ad8a5cda 100644 --- a/lang/python/de/LC_MESSAGES/python.po +++ b/lang/python/de/LC_MESSAGES/python.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Christian Spaan, 2020\n" "Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n" @@ -31,22 +31,22 @@ msgstr "GRUB konfigurieren." msgid "Mounting partitions." msgstr "Hänge Partitionen ein." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "Konfigurationsfehler" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "Für
{!s}
sind keine zu verwendenden Partitionen definiert." @@ -95,19 +95,19 @@ msgstr "" msgid "Unmount file systems." msgstr "Dateisysteme aushängen." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "Befüllen von Dateisystemen." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "rsync fehlgeschlagen mit Fehlercode {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "Entpacken des Image \"{}\" fehlgeschlagen" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" @@ -115,20 +115,20 @@ msgstr "" "Konnte unsquashfs nicht finden, stellen Sie sicher, dass Sie das Paket " "namens squashfs-tools installiert haben" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "Kein Einhängepunkt für die Root-Partition" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" "globalstorage enthält keinen Schlüssel namens \"rootMountPoint\", tue nichts" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Ungültiger Einhängepunkt für die Root-Partition" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "rootMountPoint ist \"{}\", welcher nicht existiert, tue nichts" @@ -138,8 +138,8 @@ msgid "Bad unsquash configuration" msgstr "Ungültige unsquash-Konfiguration" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "Das Dateisystem für \"{}\" ({}) wird nicht unterstützt" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -209,10 +209,10 @@ msgstr "Die Konfiguration des Displaymanager war unvollständig." msgid "Configuring mkinitcpio." msgstr "Konfiguriere mkinitcpio. " -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -282,23 +282,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "Konfiguriere Plymouth-Thema" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Pakete installieren " + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Verarbeite Pakete (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Pakete installieren " - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "Installiere ein Paket" msgstr[1] "Installiere %(num)d Pakete." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -309,10 +310,6 @@ msgstr[1] "Entferne %(num)d Pakete." msgid "Install bootloader." msgstr "Installiere Bootloader." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "Entferne Live-Benutzer aus dem Zielsystem" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "Einstellen der Hardware-Uhr." @@ -345,7 +342,8 @@ msgstr "Schreibe fstab." msgid "Dummy python job." msgstr "Dummy Python-Job" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Dummy Python-Schritt {}" diff --git a/lang/python/el/LC_MESSAGES/python.po b/lang/python/el/LC_MESSAGES/python.po index cd140acf4..cd161641d 100644 --- a/lang/python/el/LC_MESSAGES/python.po +++ b/lang/python/el/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Efstathios Iosifidis , 2017\n" "Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n" @@ -29,22 +29,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -89,37 +89,37 @@ msgstr "" msgid "Unmount file systems." msgstr "" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -129,7 +129,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -198,10 +198,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -261,23 +261,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "εγκατάσταση πακέτων." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "εγκατάσταση πακέτων." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "" msgstr[1] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -288,10 +289,6 @@ msgstr[1] "" msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -324,7 +321,8 @@ msgstr "" msgid "Dummy python job." msgstr "" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "" diff --git a/lang/python/en_GB/LC_MESSAGES/python.po b/lang/python/en_GB/LC_MESSAGES/python.po index 3cdaeaa7f..d67447574 100644 --- a/lang/python/en_GB/LC_MESSAGES/python.po +++ b/lang/python/en_GB/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Jason Collins , 2018\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/calamares/teams/20061/en_GB/)\n" @@ -29,22 +29,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -89,37 +89,37 @@ msgstr "" msgid "Unmount file systems." msgstr "Unmount file systems." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -129,7 +129,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -198,10 +198,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -261,23 +261,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Install packages." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Processing packages (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Install packages." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "Installing one package." msgstr[1] "Installing %(num)d packages." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -288,10 +289,6 @@ msgstr[1] "Removing %(num)d packages." msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -324,7 +321,8 @@ msgstr "" msgid "Dummy python job." msgstr "Dummy python job." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Dummy python step {}" diff --git a/lang/python/eo/LC_MESSAGES/python.po b/lang/python/eo/LC_MESSAGES/python.po index 77d2b8b06..14c237299 100644 --- a/lang/python/eo/LC_MESSAGES/python.po +++ b/lang/python/eo/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Kurt Ankh Phoenix , 2018\n" "Language-Team: Esperanto (https://www.transifex.com/calamares/teams/20061/eo/)\n" @@ -29,22 +29,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -89,37 +89,37 @@ msgstr "" msgid "Unmount file systems." msgstr "Demeti dosieraj sistemoj." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -129,7 +129,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -198,10 +198,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -261,23 +261,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Instali pakaĵoj." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Prilaborante pakaĵoj (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Instali pakaĵoj." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "Instalante unu pakaĵo." msgstr[1] "Instalante %(num)d pakaĵoj." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -288,10 +289,6 @@ msgstr[1] "Forigante %(num)d pakaĵoj." msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -324,7 +321,8 @@ msgstr "" msgid "Dummy python job." msgstr "Formala python laboro." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Formala python paŝo {}" diff --git a/lang/python/es/LC_MESSAGES/python.mo b/lang/python/es/LC_MESSAGES/python.mo index 38707435bfa451bec585531cf88c7d92890d5000..4746eac7821d97f58458c9a41b474a39ac360bdc 100644 GIT binary patch delta 1306 zcmYk*OGwmF6vy#1I-@zM<)~?mHNHSC%TmYJjOAmJnlR}>SV-imqQ}BODahHhutgF4 zn~g1M5pFCZ1|g|M8ws;TMS(61Z4p|Fh$5;*^!+ij=nvP=x%cn?+nGNEAn?F2D9xB|E2lq#n{XT(a0-iY6&o=vGifvG{dugzdsv9C zvBfNAp9m@#2&^%y#BQv@GpYV9%%?wv>u?q~;sR>I@2G`jXC?Dgp`ZQ%+<>RC07tP1 z9SqI*!`V zC@TL1ZpNn=Vt!j7D8s^RvmiDjrLhaR4JU9XzC|TW&q*ezMlGlZx8TXt_*D$kzk>rf zkD54`Yu1NR?8R}6)ex)@^rMgZp2BmeGkS%*vX2F04D=5fQ?@C548#Zi~-5%%Lt zRKf~gs*-0>N93S>O;3;_*n8AnSwYS72kUW1jBE-9u?cS@o3%OAPL}W>`nZAnaS$~= ziBVic-H~c$Q{tm3$50D-hSj)?TA-Jkrz2>@R*W4Xa0qT7xvY%0O5Bb*voTaD=kYpb zQO8T@ph}uqnoL}U8b5?O+ZpUZFXzY=u{2sIO;4DnV`0j2^{s=Z)w^l`Kc#eNl=$uWo00J6jJOidb2D-iKTB3!iQ+&(`ahIUiOc{1 delta 1516 zcmYk*TWm~07{Kva_LNess$OWdV@c@EqAsnLQoYciiMuMXwx=v>Pjhy+Nztr?#3gvJ zN_c3HNIWzmHeQ5;NczG{BP1d&kxE=%M52iY;{Q1(;Uu%anK`rH%zQIvxM8p{@pg*0 zU-2|kiYV*GC>6k?UVh|BQ>qm_uItc8`!Y_)`&fl9umID?DYXcFuG>)FpG7}D!d(1@ z)k-B)+IXdA(NT}HF^F^Ul-s_8IkaD37JkNQ_!DKqoOEX)6)169un-So9-hRhIDq+> z!V-Ln70j=`Qpu*HV1hHS3^&rQN7?BGlz{h80t}-p=rhXye&J-yn&|9Yqby_#%7%JT zHZ*{;kRhCbud$Z-)lVujad8F(w;`!f=dc`yPy&9(`ItA!3EYAbD2%eOGgyo_-2TT{ zNBbRiU{R*CfL^SmeI65SR31=Sj~V2*6x(q-p1?i$2Ib6FuuX=l&De-Rti@ZXaRd*0 zlrl(*Z0y(+XJSd$656{^GI0^x@Iem4WW^ceMFN&%19rQnTt`tdRKqH^;!c!I-9-uf z31z1x9C!_Opk(9{F2LJ3AK&95%;u%sf#!Uc*+iv_4%x{dN@_k~73OinrmqLqh#_m${jEmBwtq8Oaa%ZlhABRxlkGhs|VPrwOaV{o~Q<0Spq8!Cbtid0c zL_eL(p`KthzC)R)fc(iB22oO*!qYf{QH*FO#UD`OkKz2JzXIi`uVJ&C_D3on89-T0 zk!J-(&X+a(edJEaxp|%D-?Qe=N>i$nSG*;L z=~%$tXU252HySe!rG_*5Jf&Tsu<5jQmt||;kv^ZEd!(;ahoU-SF*e@aZP_uiGqpBz zVy3^rvTakFVS>g3cF58`GopJ!J(f>*(i;s), 2020\n" "Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n" @@ -33,22 +33,22 @@ msgstr "Configure GRUB - menú de arranque multisistema -" msgid "Mounting partitions." msgstr "Montando particiones" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "Error de configuración" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "No hay definidas particiones en 1{!s}1 para usar." @@ -97,19 +97,19 @@ msgstr "" msgid "Unmount file systems." msgstr "Desmontar sistemas de archivos." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "Rellenando los sistemas de archivos." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "Falló la sincronización mediante rsync con el código de error {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "No se pudo desempaquetar la imagen «{}»" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" @@ -117,22 +117,22 @@ msgstr "" "No se encontró unsquashfs; cerciórese de que tenga instalado el paquete " "squashfs-tools" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" "No especificó un punto de montaje para la partición raíz - / o root -" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" "No se hace nada porque el almacenamiento no contiene una clave de " "\"rootMountPoint\" punto de montaje para la raíz." -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Punto de montaje no válido para una partición raíz," -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "Como el punto de montaje raíz es \"{}\", y no existe, no se hace nada" @@ -142,8 +142,8 @@ msgid "Bad unsquash configuration" msgstr "Configuración de \"unsquash\" no válida" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "El sistema de archivos para \"{}\" ({}) no está incluido." +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -215,10 +215,10 @@ msgstr "La configuración del gestor de pantalla estaba incompleta" msgid "Configuring mkinitcpio." msgstr "Configurando mkinitcpio - sistema de arranque básico -." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -290,23 +290,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "Configure el tema de Plymouth - menú de bienvenida." -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Instalar paquetes." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Procesando paquetes (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Instalar paquetes." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "Instalando un paquete." msgstr[1] "Instalando %(num)d paquetes." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -317,10 +318,6 @@ msgstr[1] "Eliminando %(num)d paquetes." msgid "Install bootloader." msgstr "Instalar gestor de arranque." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "Borre el usuario \"en vivo\" del sistema objetivo" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "Configurando el reloj de la computadora." @@ -354,7 +351,8 @@ msgstr "Escribiendo la tabla de particiones fstab" msgid "Dummy python job." msgstr "Tarea de python ficticia." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Paso {} de python ficticio" diff --git a/lang/python/es_MX/LC_MESSAGES/python.po b/lang/python/es_MX/LC_MESSAGES/python.po index a0f2d8e0f..d09497f44 100644 --- a/lang/python/es_MX/LC_MESSAGES/python.po +++ b/lang/python/es_MX/LC_MESSAGES/python.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Logan 8192 , 2018\n" "Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n" @@ -30,22 +30,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -90,37 +90,37 @@ msgstr "" msgid "Unmount file systems." msgstr "Desmontar sistemas de archivo." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -130,7 +130,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -199,10 +199,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -262,23 +262,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Instalar paquetes." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Procesando paquetes (%(count)d/%(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Instalar paquetes." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "Instalando un paquete." msgstr[1] "Instalando%(num)d paquetes." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -289,10 +290,6 @@ msgstr[1] "Removiendo %(num)dpaquetes." msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -325,7 +322,8 @@ msgstr "" msgid "Dummy python job." msgstr "Trabajo python ficticio." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Paso python ficticio {}" diff --git a/lang/python/es_PR/LC_MESSAGES/python.po b/lang/python/es_PR/LC_MESSAGES/python.po index d2dc4f1d9..7a54dca81 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: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/calamares/teams/20061/es_PR/)\n" "MIME-Version: 1.0\n" @@ -25,22 +25,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -85,37 +85,37 @@ msgstr "" msgid "Unmount file systems." msgstr "" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -125,7 +125,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -194,10 +194,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -257,23 +257,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "" msgstr[1] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -284,10 +285,6 @@ msgstr[1] "" msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -320,7 +317,8 @@ msgstr "" msgid "Dummy python job." msgstr "" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "" diff --git a/lang/python/et/LC_MESSAGES/python.po b/lang/python/et/LC_MESSAGES/python.po index 3d262b5f2..dbe4ef6f6 100644 --- a/lang/python/et/LC_MESSAGES/python.po +++ b/lang/python/et/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Madis Otenurm, 2019\n" "Language-Team: Estonian (https://www.transifex.com/calamares/teams/20061/et/)\n" @@ -29,22 +29,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -89,37 +89,37 @@ msgstr "" msgid "Unmount file systems." msgstr "Haagi failisüsteemid lahti." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -129,7 +129,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -198,10 +198,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -261,23 +261,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Paigalda paketid." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Pakkide töötlemine (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Paigalda paketid." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "Paigaldan ühe paketi." msgstr[1] "Paigaldan %(num)d paketti." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -288,10 +289,6 @@ msgstr[1] "Eemaldan %(num)d paketti." msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -324,7 +321,8 @@ msgstr "" msgid "Dummy python job." msgstr "Testiv python'i töö." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Testiv python'i aste {}" diff --git a/lang/python/eu/LC_MESSAGES/python.po b/lang/python/eu/LC_MESSAGES/python.po index f91e17a29..527c5f0ca 100644 --- a/lang/python/eu/LC_MESSAGES/python.po +++ b/lang/python/eu/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Ander Elortondo, 2019\n" "Language-Team: Basque (https://www.transifex.com/calamares/teams/20061/eu/)\n" @@ -29,22 +29,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -89,37 +89,37 @@ msgstr "" msgid "Unmount file systems." msgstr "Fitxategi sistemak desmuntatu." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -129,7 +129,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -201,10 +201,10 @@ msgstr "Pantaila kudeatzaile konfigurazioa osotu gabe" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -264,23 +264,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Instalatu paketeak" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Paketeak prozesatzen (%(count)d/ %(total)d) " -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Instalatu paketeak" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "Pakete bat instalatzen." msgstr[1] "%(num)dpakete instalatzen." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -291,10 +292,6 @@ msgstr[1] "%(num)dpakete kentzen." msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -327,7 +324,8 @@ msgstr "" msgid "Dummy python job." msgstr "Dummy python lana." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Dummy python urratsa {}" diff --git a/lang/python/fa/LC_MESSAGES/python.po b/lang/python/fa/LC_MESSAGES/python.po index ad8b5a90d..1b9488895 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: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Persian (https://www.transifex.com/calamares/teams/20061/fa/)\n" "MIME-Version: 1.0\n" @@ -25,22 +25,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -85,37 +85,37 @@ msgstr "" msgid "Unmount file systems." msgstr "" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -125,7 +125,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -194,10 +194,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -257,23 +257,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "" msgstr[1] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -284,10 +285,6 @@ msgstr[1] "" msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -320,7 +317,8 @@ msgstr "" msgid "Dummy python job." msgstr "" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "" diff --git a/lang/python/fi_FI/LC_MESSAGES/python.mo b/lang/python/fi_FI/LC_MESSAGES/python.mo index 79fd502f4958213c04fd945fecd4ffe9e0ff154a..d640ac0b27609336afdec9f6bfe7e1ff39089c68 100644 GIT binary patch delta 1405 zcmX}sSx8h-7{Kv!r@1bf=924JbG1!#8F6XMrOYKO5}`sOBg!0PP^K6)9ZV+b!G}qojd2A^PTS=9IAd%xMjqIrl-h)ca4YtQ`;(YNe;(K30;c0K%7Uw+Ly2Uf%wtCjwqgqQ;W`|_ zRJ@5+3}8O%t5*aGJcwEy8km6x>Dy3tdI4p^TPPFEp(M0`^4=GW$3G}LkBU#t`@C44He5)+B#}H*lnP3lA;w3cj365$k zgpKt36GP)>QGVAcmsD^I)?h74;un*se=Wf{4=QjmY&z*m|1iqHQMBW2lth^qcsv=r)Z5ae-EWZ(gmL)C%u!g-X^Uc*8RAb;u; zH#vkF*|nerTtd`5Xcjorw6`%o6@Lpk;1C>shOMO5CG1U7;dJd0MgO?A{2 zlm+kMF8qpnv5%(1r5;Rg|-EAMN-9r6L8auAzxmsZ=p=@Mxtp z#{9cvVOhi+>i)kQM0VdJvsEu6+Ua|3wraJ$UuH`}4gCt5q##$FFITrjmlIJi)!=K= zQ$MBr)bsML8-EN1g z$LMspU5+k)Ant?7R9xhrO1K>5Z_l`+U9||Pp8M( R-Sc=V{Hl}4pPlJ2{RLcar!fEk delta 1456 zcmXZcUr19?9Ki9jwfU!(X6DppdRt*?{wx2xsime7h82}jL7Coa{y}mx7#4dmjL4)e z(o<3)QQ<={1hXEBg)h}ZK@fzN5`|O{JtbN6{kdH{e$Kh~+;e`v-#z-)Jy;c(U27Rp zTn)4|T9a9+R=i;0mt0Xw?EzE7CUi2siR*C+i|`$$U~IHf#psOKg7W+-7T_~X!k<{K zR6s?=D7A?jHMkkua0_0Jj2~el<98U33z&+FC>timh6Bk(S*H;l*ok%=#C14|$r!{8 ze2Ka2ufEYq;6}>I@WdQEz_pe- zcpTH>!U6a(kMT7OG}C!XXD`~QZ#EvqBRGI3aR%j^Rg)%D)j_PsHgw^A)bKM7o0PIr zmPW=SYs2$qP@X#}n^dw6ci@Rc>MxPs=0+_}VkQ2GSW3NQd=6#aIF{iHlt7m-2Q!II zGTM(a4j?hBhe%9n3gxiAL^wm^1G7jG)Cv}rGh;_`R9OK!@@?IiiziVs8Nxz*f|AL1l#P~f zC)ydv21ii7aX&WWB+5E5WFdi;psdr5vhE1Vej${5~M~hnuH)%y^(5l#8%Lw zfNHx@Wlc`nK~FBJmxPo>D>6J*hpE!IWGyi5GA67=rmEnA^sp^z@6}HC z_H=8$*4{I^PxJb{KD|3QXS-(#j>dg8o3~X22NSNx6+i`km)(R_WnuQm9?p_~5$ DcgVM5 diff --git a/lang/python/fi_FI/LC_MESSAGES/python.po b/lang/python/fi_FI/LC_MESSAGES/python.po index f3fa90c54..b0c10a262 100644 --- a/lang/python/fi_FI/LC_MESSAGES/python.po +++ b/lang/python/fi_FI/LC_MESSAGES/python.po @@ -4,16 +4,16 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Kimmo Kujansuu , 2019 +# Kimmo Kujansuu , 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" -"Last-Translator: Kimmo Kujansuu , 2019\n" +"Last-Translator: Kimmo Kujansuu , 2020\n" "Language-Team: Finnish (Finland) (https://www.transifex.com/calamares/teams/20061/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,22 +29,22 @@ msgstr "Määritä GRUB." msgid "Mounting partitions." msgstr "Yhdistä osiot." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "Määritysvirhe" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "Ei ole määritetty käyttämään osioita
{!s}
." @@ -91,19 +91,19 @@ msgstr "" msgid "Unmount file systems." msgstr "Irrota tiedostojärjestelmät käytöstä." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "Paikannetaan tiedostojärjestelmiä." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "rsync epäonnistui virhekoodilla {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "Kuvan purkaminen epäonnistui \"{}\"" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" @@ -111,19 +111,19 @@ msgstr "" "Ei löytynyt unsquashfs, varmista, että sinulla on squashfs-tools paketti " "asennettuna" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "Ei liitoskohtaa juuri root-osiolle" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "globalstorage ei sisällä \"rootMountPoint\" avainta, eikä tee mitään" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Huono kiinnityspiste root-osioon" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "rootMountPoint on \"{}\", jota ei ole, eikä tee mitään" @@ -133,8 +133,8 @@ msgid "Bad unsquash configuration" msgstr "Huono epäpuhdas kokoonpano" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "Tiedostojärjestelmää \"{}\" ({}) ei tueta" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "Tiedostojärjestelmä \"{}\" ({}) ei tue sinun nykyistä kerneliä " #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -204,10 +204,10 @@ msgstr "Näytönhallinnan kokoonpano oli puutteellinen" msgid "Configuring mkinitcpio." msgstr "Määritetään mkinitcpio." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -272,23 +272,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "Määritä Plymouthin teema" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Asenna paketteja." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Pakettien käsittely (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Asenna paketteja." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "Asentaa " msgstr[1] "Asentaa %(num)d paketteja." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -299,10 +300,6 @@ msgstr[1] "Poistaa %(num)d paketteja." msgid "Install bootloader." msgstr "Asenna bootloader." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "Poista Live-käyttäjä kohdejärjestelmästä" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "Laitteiston kellon asettaminen." @@ -335,7 +332,8 @@ msgstr "Fstab kirjoittaminen." msgid "Dummy python job." msgstr "Harjoitus python-työ." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Harjoitus python-vaihe {}" diff --git a/lang/python/fr/LC_MESSAGES/python.mo b/lang/python/fr/LC_MESSAGES/python.mo index 6ad5658e80489955a88e7600e4509e9d6b9872ab..c226c213b9d398a3e3274af215b70c725c27c4c0 100644 GIT binary patch delta 1306 zcmYMzO-PhM9LMo_)_p8(wbXRA&35etwJb|r*WA_Al^{!`2vU&9z!WkHJBXz2A);&W zu#k30C^i%d`KP`OiGlEzg@{tNHG@ z;c2Jrq(ofC^kJ`?AD%Vam=64qwkp$@-Lyw=2Toxv&S5cr!8&wpN*O|p4`DScho{WS*bYX=%alSi*Nw9;{x)W`46wr3?!_#so2hq{dvq12}_+@ii)7Moua~1!_UZaTlIX_m5+Q_C4&y zx2TDOxyE#12X^8V#ww|NrqYf1BO&hgSRxH9?5wmf>~Oi*c;OH>eDGSe-J|hHBry zjiW)G`64PKYp7KJMJ=S1!3u1`0A4C0|2o^-bm$U2Kz#+zP-pfYk6{MUiD9Bxj6K+g z!>A)#LIu{K?o1^r?kOaM8AM&$7&hW0R^gI54pOlg4PrGC%k-l%Fpiq&KI#rwtnvib z;5i(_L%4(un8Br{rQMA$Y}GmED&iCyUBZB0CY7x6Ck z<8Rbw+ecJR&D=uWkx6XCRossy!=gAtF5S$v}>(! c;-~#5GvUh_u@VcpPd$lQ--4BRSUTqV2a?Z+WdHyG delta 1509 zcmYMzOGs2v7{Ku}GGm$cFw-o}PFk3yWm#!XKGK>{3`q(rTr}yOx->dAcWxkN6BP8I z2Q)-T5ETWvDwy0zPZAfkav}D>f~ZAEZ(6u0`hPPMT{!dm&bjw~=iKj{8Lqxw8-6?2 zd0BCJXt}heB&ED~)X9%r$x1bXBViNf)4zfXaR|$B46`w1no{d9KVd7%{d2e)pI|0_ z!wRLsDtWq61q{^SQf$XUJe}y@!wmXkI2%9V0-QpbFe4?tkYbcP+b{~CwWkH`%-usPnaCU0^%QebEcARW_+aW|gCeK>)#XVrWrkE)%x1>4b$cTnR8 zJmFBvMOoziGjn+s-{TrAr)*Ms6KnBI2KCnj&l%W^lUR)<)JazEN10#%m*7W~=ccim zb=ZJXv12F|yPxQPMyW^v2SCn%n;)r63rfWfqb%fN7WH3FaF+p%FH!b-3gvWXl12U% zr6_y29c$1==1_x}jW5uPA5gZ;!=U61qMV_tD0v?tsnu(gL;O8VP)U$VuNXZjdt>2x zyn*CY<0uvQiZW3;t1Cqd8}Jsk;ul&k(Lqs!shPa4?WW zlZoZ3rpecnJ9gFaEBoz?cVlP6L#$~Pk$&f5*9M}R$U~<)eKV1pM)KITC6eOGN!dtD zsnyy@iEDmlZR}3G;^oA$Rb`Pqt{g{Y#CENAY>nJ@l{u=SuUvnU^9=1bj~LpvjG*=f z1D!hL4IVH;+Ul`FMrU+1t9GyO)quYG}_&hPEZ*UNkRinM9zt^m*4-Q9s;$mobR z%zB(wWOkCvUucI+ziD|xhD}fA=&)m1pWW#+bi29VZ$y)FMjYjmIX2c|XrI}B&@_UU c?hf$Q|B1Q^4J)L(z1F|Eo()8YbB`ze1=U~7-2eap diff --git a/lang/python/fr/LC_MESSAGES/python.po b/lang/python/fr/LC_MESSAGES/python.po index 67f973adc..f01f88585 100644 --- a/lang/python/fr/LC_MESSAGES/python.po +++ b/lang/python/fr/LC_MESSAGES/python.po @@ -19,7 +19,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Arnaud Ferraris , 2019\n" "Language-Team: French (https://www.transifex.com/calamares/teams/20061/fr/)\n" @@ -37,22 +37,22 @@ msgstr "Configuration du GRUB." msgid "Mounting partitions." msgstr "Montage des partitions." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "Erreur de configuration" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" "Aucune partition n'est définie pour être utilisée par
{!s}
." @@ -102,19 +102,19 @@ msgstr "" msgid "Unmount file systems." msgstr "Démonter les systèmes de fichiers" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "Remplir les systèmes de fichiers." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "rsync a échoué avec le code d'erreur {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "Impossible de décompresser l'image \"{}\"" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" @@ -122,19 +122,19 @@ msgstr "" "Échec de la recherche de unsquashfs, assurez-vous que le paquetage squashfs-" "tools est installé." -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "Pas de point de montage pour la partition racine" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "globalstorage ne contient pas de clé \"rootMountPoint\", ne fait rien" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Mauvais point de montage pour la partition racine" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "rootMountPoint est \"{}\", ce qui n'existe pas, ne fait rien" @@ -144,8 +144,8 @@ msgid "Bad unsquash configuration" msgstr "Mauvaise configuration unsquash" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "Le système de fichiers pour \"{}\" ({}) n'est pas supporté" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -217,10 +217,10 @@ msgstr "La configuration du gestionnaire d'affichage était incomplète" msgid "Configuring mkinitcpio." msgstr "Configuration de mkinitcpio." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -290,23 +290,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "Configurer le thème Plymouth" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Installer les paquets." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Traitement des paquets (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Installer les paquets." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "Installation d'un paquet." msgstr[1] "Installation de %(num)d paquets." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -317,10 +318,6 @@ msgstr[1] "Suppression de %(num)d paquets." msgid "Install bootloader." msgstr "Installation du bootloader." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "Supprimer l'utilisateur live du système cible" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "Configuration de l'horloge matériel." @@ -353,7 +350,8 @@ msgstr "Écriture du fstab." msgid "Dummy python job." msgstr "Tâche factice python" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Étape factice python {}" diff --git a/lang/python/fr_CH/LC_MESSAGES/python.po b/lang/python/fr_CH/LC_MESSAGES/python.po index 9cf2084c2..252432cc5 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: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: French (Switzerland) (https://www.transifex.com/calamares/teams/20061/fr_CH/)\n" "MIME-Version: 1.0\n" @@ -25,22 +25,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -85,37 +85,37 @@ msgstr "" msgid "Unmount file systems." msgstr "" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -125,7 +125,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -194,10 +194,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -257,23 +257,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "" msgstr[1] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -284,10 +285,6 @@ msgstr[1] "" msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -320,7 +317,8 @@ msgstr "" msgid "Dummy python job." msgstr "" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "" diff --git a/lang/python/gl/LC_MESSAGES/python.po b/lang/python/gl/LC_MESSAGES/python.po index 0f973942e..42b166dc7 100644 --- a/lang/python/gl/LC_MESSAGES/python.po +++ b/lang/python/gl/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Xosé, 2018\n" "Language-Team: Galician (https://www.transifex.com/calamares/teams/20061/gl/)\n" @@ -29,22 +29,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -89,37 +89,37 @@ msgstr "" msgid "Unmount file systems." msgstr "Desmontar sistemas de ficheiros." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -129,7 +129,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -201,10 +201,10 @@ msgstr "A configuración do xestor de pantalla foi incompleta" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -264,23 +264,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Instalar paquetes." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "A procesar paquetes (%(count)d/%(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Instalar paquetes." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "A instalar un paquete." msgstr[1] "A instalar %(num)d paquetes." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -291,10 +292,6 @@ msgstr[1] "A retirar %(num)d paquetes." msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -327,7 +324,8 @@ msgstr "" msgid "Dummy python job." msgstr "Tarefa parva de python." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Paso parvo de python {}" diff --git a/lang/python/gu/LC_MESSAGES/python.po b/lang/python/gu/LC_MESSAGES/python.po index 401587739..57d843476 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: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Gujarati (https://www.transifex.com/calamares/teams/20061/gu/)\n" "MIME-Version: 1.0\n" @@ -25,22 +25,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -85,37 +85,37 @@ msgstr "" msgid "Unmount file systems." msgstr "" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -125,7 +125,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -194,10 +194,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -257,23 +257,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "" msgstr[1] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -284,10 +285,6 @@ msgstr[1] "" msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -320,7 +317,8 @@ msgstr "" msgid "Dummy python job." msgstr "" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "" diff --git a/lang/python/he/LC_MESSAGES/python.mo b/lang/python/he/LC_MESSAGES/python.mo index 9b0cdd1a9864218c9c41de5e8b9c3220d03c3bdc..5784aeca51c36d46c2b2bf3584831d7b3ea97a2c 100644 GIT binary patch delta 1407 zcmYk*TS!zv7{Kw_n`vJ1ep}6BC1r^#Uh-aQu2LjvmPBe~BB7a)DJGOl^-xp_b=JfZ zk}eO~ORyn`1O_b{Li7+EqzmFh=|fZmfuPm@Yklaz+21#F&iQ8Mo7shmR~4>L;nqRL z<>XG_E;lRHgzZ*-xW3zz+J`^ZEb>!o6YZ-Qk7JmHUW~PjXfBN0~mu3 zF$pIzjq%lcf-pM#*ZW?K$Ah#TC@Z~;lJGG~f|n>0nnU^SD~949l$D1D`X=H;Sx_s= zf(B3~GLDHji-nA@mI#tDB}l0ptVBwqF5(Ux#|&IRNf;6AOOS^$p*q}%9c%slSVa3N zHsB)4z|Ii17mwlrypOIbf^P(=SWJD7;7L4=Qz(0t%<_0e<)S30z(Tx%8cyQ}69Zuz zZEv_zEto->it!H01mB_L|A|tO{gKrF5J4BytH;+^iz$pM{k^yy-(VdsqpYl&jg`dx zSc0>di$Rn_DpJl5b5RW_1E0n;yos{+6DSLwi=qD82rQf=a;r3yQ(cDSRE;PfbYUjC zQ4&t0{98U_BU(6-lBWq}%dVpgFpl#5Jo4(l;4@cH;|l<0@Xk+hmu-(fnmNHp+>|@Gv&xbCk-&G8+?`xeI+o_3dRg z9Wt<7rQEU_t2F+*G~!%+!kT2uA=;&Xv?iI#^i``ptb}#}x11Ka_UNfLdw^6{%I?&w zY%x(XZMozmNNr@pGWA}Y-IT8n+8m~G-D}G-6?v9zzx_P+;89bIcA{77J=5K(HFtM* zwsdr9r&>BYTG~C6Az#eq%nZ+?u)aV~P2!9>T{9jSBbqU6=*F;SxQ!9QTZUW0QDe}! UXAIFXrWsFoayQ)*r|q@;1!m#6#Q*>R delta 1433 zcmXxkSx8h-7{Ku}(~M=BI%#gB&drL<*r4OMD_7DXI;Y;+;V)wxoGFwE1>LG|Q`hSdF`0nqVyL{)I@1B{bt_hd_{bI{? z#o;1Sh+4B!O?cMANsch3wt{KST1=GQ*j(i8DIUTu@nm<32a14qpsp=97Rd^6W3z=qEO;$ltf;XiFINc-k!Vu1UJzC zfCn%oDl~z1%%bnZ};U2t*NAMlWH!EkEJgOS73f)+W_fW%0d}~t5 zN?DH6pIEGv2kR(T83s`%_yZ+>OdR!>(lk?-2JFWD_yu>OlTqdR4a~%8+>P;kSXo&M zO5y>m#BW%Pt0;$5q=^%AQtc=McVZUyqwIk<3DjR!{EG`2sIjADr8OwK`!JGIok4k_ z8}o1oCE+B>uVx-Q@*rv`dCsAHy1OX(U!lA|i@c&zNiOdf`Dt{~*o7rHiRg;%8io8Qk26dvQDVp*%N(Yj7zWWCZK62yKiidua>Gp7VQY$b((D0v}^N ze!}xuz_fW+J;2TQ8oijTg+5USR?r{E9<-D70uG|&E#N1__EBy;gg$iROQb?hRm5~m zTrd-x2sz4$LP7?X!$}kn|NoOV&~_0TQKI)-99CIdh5p>)Fe!b;Vz+IiUrNZXk)uja zvf9I?vQqv$z08`hq>`2#vLlKK`EdDqv(;`|uV1p}m^SOf)_hZ0aLW2OEX|{Nn@@YR zQ$A0tcC__mi`LfEdd$, 2017 -# Yaron Shahrabani , 2019 +# Yaron Shahrabani , 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" -"Last-Translator: Yaron Shahrabani , 2019\n" +"Last-Translator: Yaron Shahrabani , 2020\n" "Language-Team: Hebrew (https://www.transifex.com/calamares/teams/20061/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,22 +30,22 @@ msgstr "הגדרת GRUB." msgid "Mounting partitions." msgstr "מחיצות מעוגנות." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "שגיאת הגדרות" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "לא הוגדרו מחיצות לשימוש של
{!s}
." @@ -93,37 +93,37 @@ msgstr "" msgid "Unmount file systems." msgstr "ניתוק עיגון מערכות קבצים." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "מערכות הקבצים מתמלאות." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "rsync נכשל עם קוד השגיאה {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "פריסת התמונה „{}” נכשלה" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "איתור unsquashfs לא צלח, נא לוודא שהחבילה squashfs-tools מותקנת" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "אין נקודת עגינה למחיצת העל" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "ב־globalstorage אין את המפתח „rootMountPoint”, לא תתבצע אף פעולה" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "נקודת העגינה של מחיצת השורה שגויה" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "rootMountPoint מוגדרת בתור „{}”, שאינו קיים, לא תתבצע אף פעולה" @@ -133,8 +133,8 @@ msgid "Bad unsquash configuration" msgstr "תצורת unsquash שגויה" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "מערכת הקבצים עבור „{}” ‏({}) אינה נתמכת" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "מערכת הקבצים עבור „{}” ‏({}) אינה נתמכת על ידי הליבה הנוכחית שלך." #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -204,10 +204,10 @@ msgstr "תצורת מנהל התצוגה אינה שלמה" msgid "Configuring mkinitcpio." msgstr "mkinitcpio מותקן." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "לא סופקה נקודת עגינת שורש לשימוש של
{!s}
." @@ -272,16 +272,17 @@ msgstr "הנתיב לשירות {name!s} הוא {path!s}, שאינ msgid "Configure Plymouth theme" msgstr "הגדרת ערכת עיצוב של Plymouth" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "התקנת חבילות." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "החבילות מעובדות (%(count)d/%(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "התקנת חבילות." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." @@ -290,7 +291,7 @@ msgstr[1] "מותקנות %(num)d חבילות." msgstr[2] "מותקנות %(num)d חבילות." msgstr[3] "מותקנות %(num)d חבילות." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -303,10 +304,6 @@ msgstr[3] "מתבצעת הסרה של %(num)d חבילות." msgid "Install bootloader." msgstr "התקנת מנהל אתחול." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "הסרת משתמש חי ממערכת היעד" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "שעון החומרה מוגדר." @@ -339,7 +336,8 @@ msgstr "fstab נכתב." msgid "Dummy python job." msgstr "משימת דמה של Python." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "צעד דמה של Python {}" diff --git a/lang/python/hi/LC_MESSAGES/python.mo b/lang/python/hi/LC_MESSAGES/python.mo index 1f427478b68e01dafb2a7b54999634364ccc71f9..2732db6edb9ccc6419583a2b8ef473ca77c0a4b6 100644 GIT binary patch delta 1310 zcmYk*O-NKx6u|K_&OA%=J3q29XG+VDj0tW0XvVY@t1+<*(@07qD9nh2u*{sIh!!oP z*K7>MHZE!rHVk5IgeWjwL_y`ksHmt#MhH?+(f{;Zbm7kLo_X`mz4zQZb1kFI!8a+6 zkkD%BS#*DtNC&n#_@KQtL<0D3(V}RPHN-u*5(lsZBe(*;;3kY(Vp)dzybC=zjA{4` z%SD3ni9rruxR#3KVh!fuvBmg0E+>v)B2Ho^&Y(^>kGhb!7%NX6I*IEs9gkuv_G1Q` z=)${L#QZYFAek?Ip#Cs6R-_4Cs5|XOO&CH=Fp9dMN!0gdF$uq+?p&5x3-O|EXg}(P z`cdH$kKk1K5BA7%X7$nL#V2P~Ubuj(SGZ$Rl}=wfG%tk1d$b0cv~!58wjoj+)r^A-sng zCvp+;u?sg~2&?cBR-l~=Q;n5akNtQApJr13%?v!;pdHwW8i!HOat?Lk9H*5ih&tgo z4q_sn*VKIKiJLu-T8gVMfU^fG&OJpy0q5g0Jb%padhOKUH zGA40RF5wxxjlWP!Kg3PdlG^wyX}&9{@4vz-^yiA~#6GOSCwLKqv1=(egKOxK$_Pp$P*xh|^eyorNq4qv%`d+O#rSU5df7Y1Q-+ zx`Y0Ia}$)A;|`ahMXWSu9lm7UjUEws|Fvyqf#HlPXUt(st=V8?q;0Vt@&D#d(OIJu wn`aHDt-=f$9$St1*eJ32!at2a(P3wNk1afr5J@#}W@m&Ka_a2i!Mr_=zryyG9smFU delta 1535 zcmYMzS!_&E7{Ku}%#@+lK}$<-t1Y#p(yFax?6p)XsIf+sDUC8R(~(p)qexn+9(vOV zp+fFNBe8WNmRJ+^0Lf;vJZmIz+N1M&anPU0qKe&@UA-m`r7o9h+de371^&JM-3 zn3hf}>!s9IJmBO61!I_j z&u|j!t1onha3i&!{on*#MeId6X*#jLM>)5*l5WE%RA)TlO`h)+-^{E1U=!~lEZQk02mQ8soA$KZv;{YO|r z{1!K1`apXF^*EXM1V+l~+@-SulgV!$ZoqYT1S|0k$~T+CF?m$2!G*XDi?It0{DAu% zO1Vf&74gBLb}hZfwZw}^o4j`h!}!ia{wwJC$jcGDj51KbY7N+h5@+)veRvur{)roL zC&!kPJ;p7VNkK^5gyXRX<)nQm7%vv#Obp{(ygHKnFQ@aJ8{4sjlAeX7fUEVa^!?f45@@EC<8^Li%OHMJRK-ex?D zZYq1RQuEbCIu361qR9s2nnRN`k*)YOpI=G8(+=aQ9wG=QqM3f6%B726h{DTZ23Nbw;Q@ROjCvd!F3r$g8fY_1m#g9S9m(4UJjG z_=d(jqb6kR3Gi%q@7_SL&c8jjbl{y~W^zvMyjwcjY-p=nTlclqtgRaaN40fHTUT|o zRa+f8+NLdwVFn0V;kLHU#h>ruw|i`5?@|9(lF=yhSUTEd=xC?8VswV*mbR{F>soxO SsJ0$3Y+lb!iB;v6JO2Twi2RxW diff --git a/lang/python/hi/LC_MESSAGES/python.po b/lang/python/hi/LC_MESSAGES/python.po index ec021bf43..868aca001 100644 --- a/lang/python/hi/LC_MESSAGES/python.po +++ b/lang/python/hi/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Panwar108 , 2019\n" "Language-Team: Hindi (https://www.transifex.com/calamares/teams/20061/hi/)\n" @@ -29,22 +29,22 @@ msgstr "GRUB विन्यस्त करना।" msgid "Mounting partitions." msgstr "विभाजन माउंट करना।" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "विन्यास त्रुटि" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "
{!s}
के उपयोग हेतु कोई विभाजन परिभाषित नहीं हैं।" @@ -91,38 +91,38 @@ msgstr "" msgid "Unmount file systems." msgstr "फ़ाइल सिस्टम माउंट से हटाना।" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "फाइल सिस्टम भरना।" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "rsync त्रुटि कोड {} के साथ विफल।" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "इमेज फ़ाइल \"{}\" को खोलने में विफल" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" "unsqaushfs खोजने में विफल, सुनिश्चित करें कि squashfs-tools पैकेज इंस्टॉल है" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "रुट विभाजन हेतु कोई माउंट पॉइंट नहीं है" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "globalstorage में \"rootMountPoint\" कुंजी नहीं है, कुछ नहीं किया जाएगा" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "रुट विभाजन हेतु ख़राब माउंट पॉइंट" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "रुट माउंट पॉइंट \"{}\" है, जो कि मौजूद नहीं है, कुछ नहीं किया जाएगा" @@ -132,8 +132,8 @@ msgid "Bad unsquash configuration" msgstr "ख़राब unsquash विन्यास सेटिंग्स" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "\"{}\" ({}) हेतु फ़ाइल सिस्टम समर्थित नहीं है" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -203,10 +203,10 @@ msgstr "डिस्प्ले प्रबंधक विन्यास अ msgid "Configuring mkinitcpio." msgstr "mkinitcpio को विन्यस्त करना।" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -270,23 +270,24 @@ msgstr "सेवा {name!s} हेतु पथ {path!s} है, msgid "Configure Plymouth theme" msgstr "Plymouth थीम विन्यस्त करना " -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "पैकेज इंस्टॉल करना।" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "पैकेज (%(count)d / %(total)d) संसाधित किए जा रहे हैं" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "पैकेज इंस्टॉल करना।" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "एक पैकेज इंस्टॉल किया जा रहा है।" msgstr[1] "%(num)d पैकेज इंस्टॉल किए जा रहे हैं।" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -297,10 +298,6 @@ msgstr[1] "%(num)d पैकेज हटाए जा रहे हैं।" msgid "Install bootloader." msgstr "बूट लोडर इंस्टॉल करना।" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "लक्षित सिस्टम से लाइव उपयोक्ता को हटाना" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "हार्डवेयर घड़ी सेट करना।" @@ -333,7 +330,8 @@ msgstr "fstab पर राइट करना।" msgid "Dummy python job." msgstr "डमी पाइथन प्रक्रिया ।" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "डमी पाइथन प्रक्रिया की चरण संख्या {}" diff --git a/lang/python/hr/LC_MESSAGES/python.mo b/lang/python/hr/LC_MESSAGES/python.mo index 25856d3958e352e6eb30d8d66d449f8334026396..715163f8d5b21a00cd68db1607c8e40156677d96 100644 GIT binary patch delta 1389 zcmX}q-Aj{E9Ki9jwfU0yx_sSgkJ+1L`R;tzY|D_W$PmkrG*(DDVYt#t2HkiONiv1* zRHVYXDON&wqZg}-^bZiJq;8T5ttb+*`u^HO4?EB2{GR9Rch31eXRP{LmH$nWX;g8! zXf~SDs8l<4nYeMSnU!k5FS?ZxO6?#X#0-3hg&4v#T*o3ziVRzi^8NnD>9~S2;il;DLTo5`9B9Q>Ou?(T6^AetC(({G zn8W;PiB2L9qBe&IX5cB}T$G*OL`irLCBYoZf)-K!_ZbuL56aFHV!{h?p=_uVWkW+K z3z^1k_zEkSU#-x|#9dpID#m)GG-?3%<22^sJCuZ$*l>bUlm#{8cJ%1aZ(}9#BRq#6 zP$qW8@pw*@cZd7MT0R+(&%AuyHaLi~!6}pqytPn&+35xk#1fWSf<0J<_fbl}jOF+X51@lpNn$tVqHrM5h;oq(BnH;PyE17Cx^}|%Fb-8A`cr-c5)r%R1c$6;2G}4 zH9byemB)!sqkO_iJcJ7<`Qj;`hE*tMqz!qc29PP0|1KRV;S+4b_b3zBQLm%eg7Qr# z@ECqYnW%=cG-D@r;4I1nS==}Vst#+h2^~0sQu28;ppjOgQ~|I$S`m#L|1Q~ql-m>z z|KBxwj=*!1-CRtsI`GR=-2vtd|vH>&+B!2dbP`LugBdL voQeBnG#2CqrxKmf!8GergH7|aYggJs6Yg%Umyy0+Pfxc#+83O+H5vZ`VE>~O delta 1423 zcmXxkO-NKx6u|NOh8fdROU=(QeVL@Gr8a7gI%;MLVH#=K7tth>OnwYGqhtgFmK0(w z8pLQ}5+Sunib05QVN`C)MTM)#irQEPQ5%Jf{-=38yzh7Ko%ilN=e&!*9Jed|3$f-A z#Z^a3r8St8a^giZH@U);+6S6p17+qWnIL`8b2|_ybFo z@~g0LrM56pg_+ofS$NeLKg2l3^SB-tF&S4-HjIl11(JudPCZ(&0~7EHZp1N6#2}{Q zOUz?`^^Hyp6G>}B59Z)O##Jbp-auJ!3T1)UC;=^^ytj%QaQ(Va<~m9shfosgM@eW5 zC6HO%gzvDN{nZMc%~%{s!&am;>Kf+aEXsmEu>cdILJQZUEYyh-*bt`S9b^6}Rxtj6 zConZS6hJ?2XM7#~O?0N|?8ivzyA6-w5xk72@IA^mt0YYxRV`SHZCH-?P{%JgrzvHj zEC(3BjSZPexppw_MM?B7N}{uI)L%0A&4gr}LVd($EWu&4<1>^`u!?1vOf-@~3(CR+ zScs2|@n_^u#c}|6MP;Mx<3Ks&#|_UXQ2(t=j4&aQO`{yH1>=Eblv5s0ePw|Hv|%I4 z!UM=7Y7~#+r15)rQs@&^psededF~QY6m`oOKk(D3XW}{LVI;dtW_B#Vc9cwRqMU(A zlnT7TY>Xm08JA!qovi?$XL>wc zy3g6u?(*s0ey`8f75o%Ap#{gHmrSNYdvG|WHX_T@?e-Zjb$EK*-fnk?Q+Hp`+uWUJ YyFKl?x7X`)_Bn&EQXXr;@ziG1Upz{x7XSbN diff --git a/lang/python/hr/LC_MESSAGES/python.po b/lang/python/hr/LC_MESSAGES/python.po index 98f0c46eb..bdb0bd8d6 100644 --- a/lang/python/hr/LC_MESSAGES/python.po +++ b/lang/python/hr/LC_MESSAGES/python.po @@ -4,16 +4,16 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Lovro Kudelić , 2019 +# Lovro Kudelić , 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" -"Last-Translator: Lovro Kudelić , 2019\n" +"Last-Translator: Lovro Kudelić , 2020\n" "Language-Team: Croatian (https://www.transifex.com/calamares/teams/20061/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,22 +29,22 @@ msgstr "Konfigurirajte GRUB." msgid "Mounting partitions." msgstr "Montiranje particija." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "Greška konfiguracije" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "Nema definiranih particija za
{!s}
korištenje." @@ -93,19 +93,19 @@ msgstr "" msgid "Unmount file systems." msgstr "Odmontiraj datotečne sustave." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "Popunjavanje datotečnih sustava." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "rsync nije uspio s kodom pogreške {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "Otpakiravnje slike nije uspjelo \"{}\"" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" @@ -113,19 +113,19 @@ msgstr "" "Neuspješno pronalaženje unsquashfs, provjerite imate li instaliran paket " "squashfs-tools" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "Nema točke montiranja za root particiju" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "globalstorage ne sadrži ključ \"rootMountPoint\", ne radi ništa" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Neispravna točka montiranja za root particiju" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "rootMountPoint je \"{}\", što ne postoji, ne radi ništa" @@ -135,8 +135,8 @@ msgid "Bad unsquash configuration" msgstr "Neispravna unsquash konfiguracija" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "Datotečni sustav za \"{}\" ({}) nije podržan" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "Datotečni sustav za \"{}\" ({}) nije podržan na vašem trenutnom kernelu" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -206,10 +206,10 @@ msgstr "Konfiguracija upravitelja zaslona nije bila potpuna" msgid "Configuring mkinitcpio." msgstr "Konfiguriranje mkinitcpio." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -277,16 +277,17 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "Konfigurirajte Plymouth temu" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Instaliraj pakete." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Obrađujem pakete (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Instaliraj pakete." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." @@ -294,7 +295,7 @@ msgstr[0] "Instaliram paket." msgstr[1] "Instaliram %(num)d pakete." msgstr[2] "Instaliram %(num)d pakete." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -306,10 +307,6 @@ msgstr[2] "Uklanjam %(num)d pakete." msgid "Install bootloader." msgstr "Instaliram bootloader." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "Uklonite live korisnika iz ciljnog sustava" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "Postavljanje hardverskog sata." @@ -342,7 +339,8 @@ msgstr "Zapisujem fstab." msgid "Dummy python job." msgstr "Testni python posao." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Testni python korak {}" diff --git a/lang/python/hu/LC_MESSAGES/python.mo b/lang/python/hu/LC_MESSAGES/python.mo index 0dfa94c5dc2e746ed8b3698b2b3cdd24a6095108..60592e1b5fe95af68a175fe61e319d3c7fecfd53 100644 GIT binary patch delta 1306 zcmYk*Pe{{Y9LMqRbkqD>YHGQ3+CQ})*mkwNLpbfC6tGxgN|-RmuL*a zKsty76;#VZM9`t2QHS!Bfl?i!D5&sIB1G>G+o2ymdp*x@d!Fa}{XUNm+g`Rt<_n!M zD2fd7BQa2<(RU65mZ8B zsP(6?9G_r-{cV;`6&B~3dC`xQ#)fb+PGJMipcYKeOD<4@3aAq+@M!A&C=Sn2FASiMbSrTfM;(+D_c1OgOm5JR zb&T($GM&TSxRe^VQ@$OH`--T)BAMVt2*0B;Zy?+n9K>$Co*K{NCdQdWrwtlW3G^Xf z*%jo^CivKZk5HHTJ#NI`xCJY?7&_W;3H8_IImZhf!Bx~*-$PAEpi2J}nQK+lTbIs{ zhwuO@fZM3w&!9G3L|w8He#}(!p#lt}7muUXy%C|al}-YiaS54g4P0@Z^m9&!RmC;Gm(Zo>ey+!?3rIU>ks^&uphESOgU;rbR>71wY9GPQ2!tcR@s56~J zWw?MRu$%)O#7n3QzhOS+a09!r3>EMIDu7AkidY)0ou(&9Q?g7|EM_}tO*AL%|EH3H zKl<3|aj9sn(K%+P&FxqbHyD3p{FB0}Fd)EWglMM55X*QAwQpN!-z}_j z>4heu(M70)a6__16SyETG;l#w#5WKVuS#4ZA&4>F5JF;1ydVU^_eaM`Pe13Jp7*@Z zdCuvtn=V8Pf6fh_G?Z=BHfn#BF){o&$d^jBF*_kJV?T!JpTZWrj6FDw3$eDwnAI4b zaS-+Um$(9d#`*X!t~aJ&s-H9FWd@?S2#4@hJT}w+9-HV-V*}pB7w`e}(7+5%~GI0s+r5{D@^aN_bi>L+4sDSRGo_mCi z*zkO1=N1*nJE#qfqBe8}707jb5pQ9H_nQYaUcxnXR2)Q7W4^+rcpbIif4CBxXIB>9 zj#|h?1@;BDdboC zCR5GZ*oQ+H!Lw-b9~=)D6Cy3U>3=fUm;tVQ07}Zy^qR31K~z+6&}GfvX=P^qxcZ@?}%`2I^zk{j&I`-)^Gz8m_+S(8td_Y z+=)R3dvO2>WV4x|!JRQxRGqnsCMYYq8!DTr%0^Hf%0{YoZK>;vr-L1#wX~weAA^xO zZ_?5RbT3r;inXEE+Sh53Vza8aEVN+$8?;oEL1jsIsi*i}s5P*mI2>9L*joH9)DzfL zx*2+0-R@X7G2+$sjjIg)Yx^O%d-m>u%Z zxi;&h59IPrcK@~GZt0trp8~y|`L4>^aewk7_u20@?GTwinaUiDc^S{+`J{ho#PO0& U{@U?F{-yker(u=$v>mN_0>GZv@c;k- diff --git a/lang/python/hu/LC_MESSAGES/python.po b/lang/python/hu/LC_MESSAGES/python.po index 4d1e7e918..d825e95b2 100644 --- a/lang/python/hu/LC_MESSAGES/python.po +++ b/lang/python/hu/LC_MESSAGES/python.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Lajos Pasztor , 2019\n" "Language-Team: Hungarian (https://www.transifex.com/calamares/teams/20061/hu/)\n" @@ -32,22 +32,22 @@ msgstr "GRUB konfigurálása." msgid "Mounting partitions." msgstr "Partíciók csatolása." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "Konfigurációs hiba" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "Nincsenek partíciók meghatározva a
{!s}
használatához." @@ -96,19 +96,19 @@ msgstr "" msgid "Unmount file systems." msgstr "Fájlrendszerek leválasztása." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "Fájlrendszerek betöltése." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "az rsync elhalt a(z) {} hibakóddal" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "\"{}\" kép kicsomagolása nem sikerült" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" @@ -116,20 +116,20 @@ msgstr "" "unsquashfs nem található, győződj meg róla a squashfs-tools csomag telepítve" " van." -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "Nincs betöltési pont a root partíciónál" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" "globalstorage nem tartalmaz \"rootMountPoint\" kulcsot, semmi nem történik" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Rossz betöltési pont a root partíciónál" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "rootMountPoint is \"{}\", ami nem létezik, semmi nem történik" @@ -139,8 +139,8 @@ msgid "Bad unsquash configuration" msgstr "Rossz unsquash konfiguráció" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "A(z) ({}) fájlrendszer nem támogatott a következőhöz: \"{}\"" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -210,10 +210,10 @@ msgstr "A kijelzőkezelő konfigurációja hiányos volt" msgid "Configuring mkinitcpio." msgstr "mkinitcpio konfigurálása." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "Nincs root csatolási pont megadva a
{!s}
használatához." @@ -279,23 +279,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "Plymouth téma beállítása" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Csomagok telepítése." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Csomagok feldolgozása (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Csomagok telepítése." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "Egy csomag telepítése." msgstr[1] "%(num)d csomag telepítése." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -306,10 +307,6 @@ msgstr[1] "%(num)d csomag eltávolítása." msgid "Install bootloader." msgstr "Rendszerbetöltő telepítése." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "Éles felhasználó eltávolítása a cél rendszerből" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "Rendszeridő beállítása." @@ -342,7 +339,8 @@ msgstr "fstab írása." msgid "Dummy python job." msgstr "Hamis Python feladat." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Hamis {}. Python lépés" diff --git a/lang/python/id/LC_MESSAGES/python.po b/lang/python/id/LC_MESSAGES/python.po index e9ff61477..3b577c5d5 100644 --- a/lang/python/id/LC_MESSAGES/python.po +++ b/lang/python/id/LC_MESSAGES/python.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Wantoyo , 2018\n" "Language-Team: Indonesian (https://www.transifex.com/calamares/teams/20061/id/)\n" @@ -31,22 +31,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -91,37 +91,37 @@ msgstr "" msgid "Unmount file systems." msgstr "Lepaskan sistem berkas." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -131,7 +131,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -202,10 +202,10 @@ msgstr "Konfigurasi display manager belum rampung" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -265,22 +265,23 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Instal paket-paket." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Paket pemrosesan (%(count)d/%(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Instal paket-paket." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "Menginstal paket %(num)d" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -290,10 +291,6 @@ msgstr[0] "mencopot %(num)d paket" msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -326,7 +323,8 @@ msgstr "" msgid "Dummy python job." msgstr "Tugas dumi python." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Langkah {} dumi python" diff --git a/lang/python/is/LC_MESSAGES/python.po b/lang/python/is/LC_MESSAGES/python.po index 04e4fb51a..719cf254b 100644 --- a/lang/python/is/LC_MESSAGES/python.po +++ b/lang/python/is/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Kristján Magnússon, 2018\n" "Language-Team: Icelandic (https://www.transifex.com/calamares/teams/20061/is/)\n" @@ -29,22 +29,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -89,37 +89,37 @@ msgstr "" msgid "Unmount file systems." msgstr "Aftengja skráarkerfi." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -129,7 +129,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -198,10 +198,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -261,23 +261,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Setja upp pakka." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Vinnslupakkar (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Setja upp pakka." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "Setja upp einn pakka." msgstr[1] "Setur upp %(num)d pakka." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -288,10 +289,6 @@ msgstr[1] "Fjarlægi %(num)d pakka." msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -324,7 +321,8 @@ msgstr "" msgid "Dummy python job." msgstr "" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "" diff --git a/lang/python/it_IT/LC_MESSAGES/python.mo b/lang/python/it_IT/LC_MESSAGES/python.mo index f66197a976b366e34a6d30982b8f225b36200943..0a81d51994d4d4dce3060dbc8969f077f14e0d12 100644 GIT binary patch delta 1036 zcmY+@Pe@cz6vy#1`OKLyGiUr$n$1+&jLul575;5e3SkUcK_Ip$3SBsm+cs)Z3pW;t zi>QsQGH5na(I%L+OF@00@E~5tGnfxt4u0RjQ{0c1o7G_-_TVTU$9Zfq zo3*zrQruYcZ`cmT*(dgz9l~zZK{-?a6PU#ZSc3(u#S&h_b!@_Ph5!2y9$Hhb#;UMcKW6YKPGSb0>m8yKd|6Cf+ zvd`l=e1*OEIoQXm$-h!N!a}LN6F3w292L+zREoE-0sr9`){)m%yoV~;67p_aLG{o_ z?8I$6jVbD-5{%(VT&N-cmsxz`h7O9vND~gCnq?aG;0mfVUjqN4{#gU3-ohN}Jp~-W z9Xx@+K8|{S``?xKyBfD+ z8MBh9%+k}Y>A;ONS7J1qa$EnR)Mc4u%SEqLXPES*Yfx}mAp7oL>2uXcGCPMe7!gDyK?fK2Ro-0pm3LnQQ?W}w zASlSB4wV-VUOLp)A?P9<`UCP3VIXBUuVHoR`^>vq12dnQdH0=}edc)=qmN=UUn>H0 ziqc9wNPS$OR4`84uph&CA3Jd&@8|sUvhDtw39RC|i(PmR>v0Ji zl$ud%bQ+l`E;19U9V;34V>OPTY;+st0533(@30(y;2zw-OIW%?sRKBG@_Y(+;{%j~ z&Z8V)85`JNZP00Cq9#bivv?W@@es~q43|(|T*o#n5BUd9U@hZel=tsoH!k2cT*Vgb zDOTztrtt#4$0+-&;+=koI#Dz3!wIfo1SQmKCH@B0rT*1)VIA{R*n`hdHvEEe@Nk(@ zr|>e$)jh;se2vHPC!WCgF5-WZ&LAC`c#ab4Wt32_=M54+8P}s6s0StFF7Cs-copaI zF#bZh!aCy5UaAAnU;^9l79PV_<-}j^-!iS*96;tFIF~#})^hcb>x^nI=?+_-&Q4@KYc%&J*j^AFveTA7)ryIvTE92$YP9@ViYs+#;ow9Yx%6fJtdDC_>R?ewN6g2<0{usyj Uw|>US=nspV>nA;D_GRUtznbimC;$Ke diff --git a/lang/python/it_IT/LC_MESSAGES/python.po b/lang/python/it_IT/LC_MESSAGES/python.po index 31b21fbe5..ed9efb724 100644 --- a/lang/python/it_IT/LC_MESSAGES/python.po +++ b/lang/python/it_IT/LC_MESSAGES/python.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Pietro F. Fontana, 2020\n" "Language-Team: Italian (Italy) (https://www.transifex.com/calamares/teams/20061/it_IT/)\n" @@ -31,22 +31,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "Errore di Configurazione" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -91,19 +91,19 @@ msgstr "" msgid "Unmount file systems." msgstr "Smonta i file system." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "rsync fallita con codice d'errore {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "Estrazione dell'immagine \"{}\" fallita" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" @@ -111,19 +111,19 @@ msgstr "" "Impossibile trovare unsquashfs, assicurati di aver installato il pacchetto " "squashfs-tools" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "Nessun punto di montaggio per la partizione di root" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Punto di montaggio per la partizione di root errato" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -133,8 +133,8 @@ msgid "Bad unsquash configuration" msgstr "Configurazione unsquash errata" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "Il filesystem per \"{}\" ({}) non è supportato" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -205,10 +205,10 @@ msgstr "La configurazione del display manager è incompleta" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -270,23 +270,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "Configura il tema Plymouth" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Installa pacchetti." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Elaborazione dei pacchetti (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Installa pacchetti." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "Installando un pacchetto." msgstr[1] "Installazione di %(num)d pacchetti." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -297,10 +298,6 @@ msgstr[1] "Rimozione di %(num)d pacchetti." msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "Rimuovi l'utente live dal sistema di destinazione" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -333,7 +330,8 @@ msgstr "" msgid "Dummy python job." msgstr "Job python fittizio." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Python step {} fittizio" diff --git a/lang/python/ja/LC_MESSAGES/python.mo b/lang/python/ja/LC_MESSAGES/python.mo index fcdf97cb416db7c20bff3bea90f951e06b274e21..6f0106edd672bcb1809a5221f13f577f90d73034 100644 GIT binary patch delta 1432 zcmX}rTSyd97{Kwf>u%b`@|xvpJ6e*KwWgK#EU#opR9cZeWM(Fn(b7dR+uWsu!g`qY zt1l z5?UOs*s4?w90^UFg@CYTLF_ho^z%cxSvhuLmW+Ejh3u-`F z&_$F)?qfVY!(8T9-{>S@(j2AMU>Q;x)r!mUKBnPElz@?;W`Hb|gtp@%Y@B}Hfq9I3 zaW{TNnYd&w+l#w!Gj^hkHAt!7F7NC^$ zFv_0yppGvXDxoV*yrr=&Yi18Po9zN@i0iiMU8# zR=5KT(T|n*2CHxd%Q=8Plz`tc15-I+5^oR6SVxIBg0hft%tlWtCr1MAM>&iG=)_!Z z^;nJj@G;h4vSuc99#1oVicMI?veIw}`%$!@m6mJfXa-!(1Csi8 zZQw3h+sxtryGAcl@3%SaQloYHJDbx|sQ2z16rS&I@|S`)S8mev%_XuD(h{D$|M;k|D7 udJS)%;q5nk=L}z$(RSB3)Ar@kgHKm(%V*wR!#8O7I^?sqTY*t$L(pGni^pgH delta 1458 zcmXZbU2IEX7{Kwj)sEV1ruM2sdcEt+9-YKjaW0Oc8{c3y+NLU1jLw8RP`-a0&J$;z6_%zri$&;vAend7<4FFQfn^j~8=rKW5??oQ+}3!U#I> z1s3prHO3^J8`;z259Z@m;%bzYUPehcjFR9LNLM<~rzi=3q6;%;#1nf_61Afgb`BR{f8zdQTuuBD z8*yH0ynt?8PJ9Ui4NUGc*^DXlHxGB=PVB`de2=ncYgi_as%^LdTd)$ZqlTZc%cPW* zwj3lrF-s{wj^h?=qHVI!A#A|ccKRk2@zl2FIH&);%%8Q~X2~s&>i?I}?WsN8; zJ%_UQ&yX6`TMXehEJQyiRDRcwrT854@gGY5e5#O6Gz6GbGdYYa@fH@Lfl^o|WlJIT zC@bv58XUrH_zSmV9n0B=*HH4=I2aXJi*D>i$$KXekD=rZI5;t~A}^N9gD8m~pd3!S zBmQ^M(Mue`J@^Nku}O;;_5@E5%d)y4fG+%va(MID=SJL&EqD|8zDA|;t%)0E#(IWa zYZ$V6ii}+~d=@h-@i11fhq=aBrQfhPtkUFa{iVfWQu??hCw(1pB}1An*9Lu#HOD3k zWQSCdUS-Y7Sj$YV0!A5QDZ{O|S#wMk`YCInX`?=Db(^XpQS0BN1wO64?Wj*X(&6)K zd;NzFXr0aeR$r&q(cRJMI}rJlGGK~?Q@@(cE6XFN(+83(jNn5fbl(UL8KIC7>NA43 zjo@7)blM1AGftj2f@dY45gLd+G!px~{B@-7%cXmfW%FHT{ZVdqvgSP2&eq1 IVMp7P|E*Zc7XSbN diff --git a/lang/python/ja/LC_MESSAGES/python.po b/lang/python/ja/LC_MESSAGES/python.po index 18c1cf628..4b149294b 100644 --- a/lang/python/ja/LC_MESSAGES/python.po +++ b/lang/python/ja/LC_MESSAGES/python.po @@ -6,16 +6,16 @@ # Translators: # ブラシックデービッド, 2019 # Takefumi Nagata, 2019 -# UTUMI Hirosi , 2019 +# UTUMI Hirosi , 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" -"Last-Translator: UTUMI Hirosi , 2019\n" +"Last-Translator: UTUMI Hirosi , 2020\n" "Language-Team: Japanese (https://www.transifex.com/calamares/teams/20061/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,22 +31,22 @@ msgstr "GRUBを設定にします。" msgid "Mounting partitions." msgstr "パーティションのマウント。" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "コンフィグレーションエラー" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "
{!s}
に使用するパーティションが定義されていません。" @@ -94,37 +94,37 @@ msgstr "" msgid "Unmount file systems." msgstr "ファイルシステムをアンマウント。" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "ファイルシステムに書き込んでいます。" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "エラーコード {} によりrsyncを失敗。" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "イメージ \"{}\" の展開に失敗" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "unsquashfs が見つかりませんでした。 squashfs-toolsがインストールされているか、確認してください。" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "ルートパーティションのためのマウントポイントがありません" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "globalstorage に \"rootMountPoint\" キーが含まれていません。何もしません。" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "ルートパーティションのためのマウントポイントが不正です" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "ルートマウントポイントは \"{}\" ですが、存在しません。何もできません。" @@ -134,8 +134,8 @@ msgid "Bad unsquash configuration" msgstr "unsquash の設定が不正です" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "ファイルシステム \"{}\" ({}) はサポートされていません" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "\"{}\" ({}) のファイルシステムは、現在のカーネルではサポートされていません" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -203,10 +203,10 @@ msgstr "ディスプレイマネージャの設定が不完全です" msgid "Configuring mkinitcpio." msgstr "mkinitcpioを設定しています。" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "
{!s}
を使用するのにルートマウントポイントが与えられていません。" @@ -267,22 +267,23 @@ msgstr "サービス {name!s} のパスが {path!s} です。こ msgid "Configure Plymouth theme" msgstr "Plymouthテーマを設定" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "パッケージのインストール" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "パッケージを処理しています (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "パッケージのインストール" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] " %(num)d パッケージをインストールしています。" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -292,10 +293,6 @@ msgstr[0] " %(num)d パッケージを削除しています。" msgid "Install bootloader." msgstr "ブートローダーをインストール" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "ターゲットシステムからliveユーザーを消去" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "ハードウェアクロックの設定" @@ -328,7 +325,8 @@ msgstr "fstabを書き込んでいます。" msgid "Dummy python job." msgstr "Dummy python job." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Dummy python step {}" diff --git a/lang/python/kk/LC_MESSAGES/python.po b/lang/python/kk/LC_MESSAGES/python.po index 78c96ec29..4afa7fa2b 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: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Kazakh (https://www.transifex.com/calamares/teams/20061/kk/)\n" "MIME-Version: 1.0\n" @@ -25,22 +25,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -85,37 +85,37 @@ msgstr "" msgid "Unmount file systems." msgstr "" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -125,7 +125,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -194,10 +194,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -257,23 +257,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "" msgstr[1] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -284,10 +285,6 @@ msgstr[1] "" msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -320,7 +317,8 @@ msgstr "" msgid "Dummy python job." msgstr "" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "" diff --git a/lang/python/kn/LC_MESSAGES/python.po b/lang/python/kn/LC_MESSAGES/python.po index cc031ed81..14a66810a 100644 --- a/lang/python/kn/LC_MESSAGES/python.po +++ b/lang/python/kn/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Kannada (https://www.transifex.com/calamares/teams/20061/kn/)\n" "MIME-Version: 1.0\n" @@ -25,22 +25,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -85,37 +85,37 @@ msgstr "" msgid "Unmount file systems." msgstr "" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -125,7 +125,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -194,10 +194,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -257,23 +257,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "" msgstr[1] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -284,10 +285,6 @@ msgstr[1] "" msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -320,7 +317,8 @@ msgstr "" msgid "Dummy python job." msgstr "" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "" diff --git a/lang/python/ko/LC_MESSAGES/python.mo b/lang/python/ko/LC_MESSAGES/python.mo index e62410c1b5b38458062550dd774624f893f53699..22a53a6884aa932a0e905258669100654da65cbb 100644 GIT binary patch delta 1450 zcmX}rSx8h-7{Kv!b;h)`Tr#!Mye(>$In$VFY2|JU7FkGCl#_`>{CLEy8V>g-1j2bxa^0#aTFpDL8>LV0ct;BB>~O3ebYPa1I{9*?1X~ z@CK&iFy=76dP66U8Q1gqUE0LX-*B;XHJO?q9-U z;=8yTKcNgetwd$0#r;Wu<)E+@~8{U`}z8BMle9UjISbl@|Tg=Fef6~kyn!L@Mk z2v*R@`R|faOBqeU@c*w)ufP~GrJM8Vtu@}6(zP<SoTV?c^ty+aKYR=P&eLu~=BYc*a>spe&&!c-<+TD6X zyW8F9I;0x(=)29czy8Qhky8mLI|H44vY@fgXlpeU!;lFxM V_YV(Dc69rDyZs$~zJ|1n@V}Y|!=L~F delta 1488 zcmXZcd2CEU9Ki9}+EsI_|4zyN*(NDRmTaRz$FBNn_X1R+9?W)euS=PZ73F ziMY~8Wf2h(MCuPA5t>HCmH4OnnusGJ;`si$JIU;4X7;_A-~48FTXPQQ2Hy3x*DA_v zY9h5TN+}QSvhyJ&TB&(pi&%(5=%2=cco*H+f(hv8s?Ff7KAcsSB;!dUt(*c;n$0RBQ*FxC+cBn4%j0(9YKjK@RR59_f%hAr!8plD#Udm%>KKm2W|RrPVk*Y>3{PBuGLa7@up>AKFGR*4;&l4& zaWy9P3I|Y$Y{`5ld`a3vnZb@&$L%(B=fkE&&ukHwgYS5V_8+-6hC zAT8_YSM=o>Y(?2vCTWwS+m3VaXe{|3LE{wz^YJ%IAO++}9;n5+_zopQqljWL&ciVn z#1wpjuK?y96FWu-zxkKks&i*mVk-d)ee+Fn|FyJIFa!F?4DD zxEr_QL*!VMo3N*0KF-DfuEA!Uio>~iTW~Fw;&YVwa#>A|VjEWA9`xW3WJ7tXNb~2y zKonILmXbxCL}l*IB0HQ&wTHW%w_1YG)C}{gJ=vH{E8Bc#Pqrzu!|sa7rJqTa!;q41 z4lrB}2~@I~Zq6|J$K}wHA~$FXRr2mOOAME7nptH`u+1`W8E)H*P@C~LdXQK9N-Dg1 zN13-&Z!F#F*X5qlP2O@{R#{f=^@lz>FWEx%z3xX1v+8bI4YeJ0je7b9kJrD$Hzhr1 zliyR~8(+NDpOvE1Q`4q~_Q%|Iq_tP?wGQml*3qDKzXa9?u_{_DbBdO*E&~YzDSG, 2018 -# 이정희 , 2019 +# MarongHappy , 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" -"Last-Translator: 이정희 , 2019\n" +"Last-Translator: MarongHappy , 2020\n" "Language-Team: Korean (https://www.transifex.com/calamares/teams/20061/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,22 +30,22 @@ msgstr "GRUB 구성" msgid "Mounting partitions." msgstr "파티션 마운트 중." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "구성 오류" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "사용할
{!s}
에 대해 정의된 파티션이 없음." @@ -92,37 +92,37 @@ msgstr "" msgid "Unmount file systems." msgstr "파일 시스템 마운트를 해제합니다." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "파일 시스템을 채우는 중." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "rsync가 {} 오류 코드로 실패했습니다." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "\"{}\" 이미지의 압축을 풀지 못했습니다." -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "unsquashfs를 찾지 못했습니다. squashfs-tools 패키지가 설치되어 있는지 확인하십시오." -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "루트 파티션에 대한 마운트 위치 없음" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "globalstorage에는 \"rootMountPoint \" 키가 포함되어 있지 않으며 아무 작업도 수행하지 않습니다." -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "루트 파티션에 대한 잘못된 마운트 위치" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "rootMountPoint는 \"{}\"이고, 존재하지 않으며, 아무 작업도 수행하지 않습니다." @@ -132,8 +132,8 @@ msgid "Bad unsquash configuration" msgstr "잘못된 unsquash 구성" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "\"{}\" ({})의 파일시스템은 지원되지 않습니다." +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "\"{}\" ({})에 대한 파일 시스템은 현재 커널에서 지원되지 않습니다." #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -202,10 +202,10 @@ msgstr "디스플레이 관리자 구성이 완료되지 않았습니다." msgid "Configuring mkinitcpio." msgstr "mkinitcpio 구성 중." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "
{!s}
에서 사용할 루트 마운트 지점이 제공되지 않음." @@ -267,22 +267,23 @@ msgstr "{name!s} 서비스에 대한 경로는 {path!s}이고, 존 msgid "Configure Plymouth theme" msgstr "플리머스 테마 구성" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "패키지를 설치합니다." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "패키지 처리중 (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "패키지를 설치합니다." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "%(num)d개의 패키지들을 설치하는 중입니다." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -292,10 +293,6 @@ msgstr[0] "%(num)d개의 패키지들을 제거하는 중입니다." msgid "Install bootloader." msgstr "부트로더 설치." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "대상 시스템에서 라이브 사용자 제거" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "하드웨어 클럭 설정 중." @@ -328,7 +325,8 @@ msgstr "fstab 쓰기." msgid "Dummy python job." msgstr "더미 파이썬 작업." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "더미 파이썬 단계 {}" diff --git a/lang/python/lo/LC_MESSAGES/python.po b/lang/python/lo/LC_MESSAGES/python.po index e996aba11..0aec17c9c 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: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Lao (https://www.transifex.com/calamares/teams/20061/lo/)\n" "MIME-Version: 1.0\n" @@ -25,22 +25,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -85,37 +85,37 @@ msgstr "" msgid "Unmount file systems." msgstr "" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -125,7 +125,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -194,10 +194,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -257,22 +257,23 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -282,10 +283,6 @@ msgstr[0] "" msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -318,7 +315,8 @@ msgstr "" msgid "Dummy python job." msgstr "" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "" diff --git a/lang/python/lt/LC_MESSAGES/python.mo b/lang/python/lt/LC_MESSAGES/python.mo index 209e223e98547860a05e6cea941b60a4d20c118b..18a59e00b03bb68edd5466551a40504ee0414a44 100644 GIT binary patch delta 1437 zcmYk)Ur19?9Ki82+by-U`FGVUua>1X*qoXxwbERMWkHejk80+UvAM~nmXs_i=%Etf z5(GUIL_}E-46HDy9!3wraRJ`IDoo%!oWg3%ot3l&<^3^q;B73x zcj#6srY0FI=7A$!sU^4_m*J7r{4(Y-PvBe}$NBgPWx*L4$wZ1!;?$xI_h2C&#(W$? zD_+53978+ntJe&2c#xi%{BQwoW9~rN=?Rp8S5X2yLP=;G<$qt%g3~BFx6Do^;z8Mv zA7w*BD2a^XLVSXCtgk*XD8aHhO4VQsax`iXSKuf*@dHZ0ysTsZH%db7xCle3=jX7V z`3UaCk0=X!vMDd_#;te>V{Ht+F{r=>&UYtv;Q@SzQmYcS$0w>5CBO!(!!xMkW1KLt z5bk3BG&ku|j>*paILeN1q5S^|>S)R5{MRt3Bs~e(gAI5SSL0`tT9uK-2K1l<&!Q9W zV-1FAF*UN(R$BklS3zd5W7+YTkuqcoJpd z>nN9R93|jS+>RD*qLiu=m*OzW`#VT(>N(0?`HbvI{l*^5i4jd|dIDvkYgmrYkl1Px zr8L=OB`4rUSty1ZaRl4(7cR$5WF5qQlz0=UV+PsC`{gL}9Y|;u>u1oyU>N)H70SX} zIkzV4!X0=6<*vy2NrGF@kB6}X-=hR* zlGaFJso6+qRi^s*l=gRK+?I9OWYs$c^nq|+L_gRUiTFaj zdcYS6`GWDW><4M-;jmqIIbF{9%^Yi{v44JHJiq9Lsi`$F5>3SQj)*tZ*%uBDMD>ub y#~bwe17ZD;*B|6v)F18jb%&#NJ(PKe((Bbrj}DgV4 zD2hfOY(xbK=z}PVMg|c?Q6ah*@gYbEA}Ypx3CoJaeb9&1{ePJ$sQFd(bXR@#)px$} z$lCbZY|mLmYoZs>x1=d$;vXJl~fAu$mEFR3Ao_ujRZfD+ra?&#>3*JFlU>GH!ag^`=!`V3NhvdmM zN+2yL2kJ#RP(Ml_Pq7eRV=eouuMFnns!TezBB@cQa0Na^S#Sc&FmFb3;bxSD9F)LL zU=dzUJ%5aAn7_kcv0!F0fL>h5{4~b5F}TlQD`t}4Ww;01@Cfe3Hz;>j&oOyb?Zge( zjHN9>7 z{Z0G{hfp^Dgi?f>3X}zFa0j-cT-kM8jH9Xlzag*EZ%8ML7k%QKXX zKH^f$B^vfpbtqTUf|7waPSyr)Vm^Vpu$E|-;~A{M2k77zlyxnl)p!!+z4(pPgHdEp z^#z+Tn|$@)9+UuvQSNXYTQHCONzFJYf!;$KKj1#x%6-Xt11L2!gd6b{R%5ZAJit2D z#=zhKb)(kPrPb3{(b;RVt>d?f?nzE3t6H+4>DBHvPqFuBMh)%@PqCrge>}ddwajbj zaz<$z+<9JK#%e~~gsO1sy!mq)8A+34{X&;xRJyj;XVkbyy`{!R_l~#Hs7s7{zoi#h z+Oc~q9gA3Dy+0fZ=%^X)w4yrF8;M$h#QV%EMxuY_!?X%J*kQ&x&4^wT>b8OrJ}7Z) zD;n#uVpswf*Fhd%GaVh$LdZ3Bx~jxc}gxvBMYj(u0SV>HRGCB%vd=L}KdRu&IMqx9OO6 NS14d6t`&yT{s+p}(Fgzl diff --git a/lang/python/lt/LC_MESSAGES/python.po b/lang/python/lt/LC_MESSAGES/python.po index ca214e74d..6b4585173 100644 --- a/lang/python/lt/LC_MESSAGES/python.po +++ b/lang/python/lt/LC_MESSAGES/python.po @@ -4,17 +4,17 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Moo, 2019 # Mindaugas , 2019 +# Moo, 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" -"Last-Translator: Mindaugas , 2019\n" +"Last-Translator: Moo, 2020\n" "Language-Team: Lithuanian (https://www.transifex.com/calamares/teams/20061/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,22 +30,22 @@ msgstr "Konfigūruoti GRUB." msgid "Mounting partitions." msgstr "Prijungiami skaidiniai." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "Konfigūracijos klaida" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "Nėra apibrėžta jokių skaidinių, skirtų
{!s}
naudojimui." @@ -94,19 +94,19 @@ msgstr "" msgid "Unmount file systems." msgstr "Atjungti failų sistemas." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "Užpildomos failų sistemos." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "rsync patyrė nesėkmę su klaidos kodu {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "Nepavyko išpakuoti atvaizdį „{}“" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" @@ -114,19 +114,19 @@ msgstr "" "Nepavyko rasti unsquashfs, įsitikinkite, kad esate įdiegę squashfs-tools " "paketą" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "Nėra prijungimo taško šaknies skaidiniui" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "globalstorage viduje nėra „rootMountPoint“ rakto, nieko nedaroma" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Blogas šaknies skaidinio prijungimo taškas" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "rootMountPoint yra „{}“, kurio nėra, nieko nedaroma" @@ -136,8 +136,8 @@ msgid "Bad unsquash configuration" msgstr "Bloga unsquash konfigūracija" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "„{}“ ({}) failų sistema yra nepalaikoma" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "Jūsų branduolys nepalaiko failų sistemos, kuri skirta \"{}\" ({})" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -207,10 +207,10 @@ msgstr "Ekranų tvarkytuvės konfigūracija yra nepilna" msgid "Configuring mkinitcpio." msgstr "Konfigūruojama mkinitcpio." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -279,16 +279,17 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "Konfigūruoti Plymouth temą" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Įdiegti paketus." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Apdorojami paketai (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Įdiegti paketus." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." @@ -297,7 +298,7 @@ msgstr[1] "Įdiegiami %(num)d paketai." msgstr[2] "Įdiegiama %(num)d paketų." msgstr[3] "Įdiegiama %(num)d paketų." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -310,10 +311,6 @@ msgstr[3] "Šalinama %(num)d paketų." msgid "Install bootloader." msgstr "Įdiegti paleidyklę." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "Šalinti demonstracinį naudotoją iš paskirties sistemos" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "Nustatomas aparatinės įrangos laikrodis." @@ -346,7 +343,8 @@ msgstr "Rašoma fstab." msgid "Dummy python job." msgstr "Fiktyvi python užduotis." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Fiktyvus python žingsnis {}" diff --git a/lang/python/mk/LC_MESSAGES/python.po b/lang/python/mk/LC_MESSAGES/python.po index 85d182f9b..163f1a4d2 100644 --- a/lang/python/mk/LC_MESSAGES/python.po +++ b/lang/python/mk/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Martin Ristovski , 2018\n" "Language-Team: Macedonian (https://www.transifex.com/calamares/teams/20061/mk/)\n" @@ -29,22 +29,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -89,37 +89,37 @@ msgstr "" msgid "Unmount file systems." msgstr "" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -129,7 +129,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -198,10 +198,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -261,23 +261,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "" msgstr[1] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -288,10 +289,6 @@ msgstr[1] "" msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -324,7 +321,8 @@ msgstr "" msgid "Dummy python job." msgstr "" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "" diff --git a/lang/python/ml/LC_MESSAGES/python.po b/lang/python/ml/LC_MESSAGES/python.po index cfbddc9bc..88bd45c0a 100644 --- a/lang/python/ml/LC_MESSAGES/python.po +++ b/lang/python/ml/LC_MESSAGES/python.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Balasankar C , 2019\n" "Language-Team: Malayalam (https://www.transifex.com/calamares/teams/20061/ml/)\n" @@ -30,22 +30,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "ക്രമീകരണത്തിൽ പിഴവ്" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -90,37 +90,37 @@ msgstr "" msgid "Unmount file systems." msgstr "" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -130,7 +130,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -199,10 +199,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -262,23 +262,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "" msgstr[1] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -289,10 +290,6 @@ msgstr[1] "" msgid "Install bootloader." msgstr "ബൂട്ട്‌ലോടർ ഇൻസ്റ്റാൾ ചെയ്യൂ ." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -325,7 +322,8 @@ msgstr "" msgid "Dummy python job." msgstr "" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "" diff --git a/lang/python/mr/LC_MESSAGES/python.po b/lang/python/mr/LC_MESSAGES/python.po index 522c06160..42dbe6ea7 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: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Marathi (https://www.transifex.com/calamares/teams/20061/mr/)\n" "MIME-Version: 1.0\n" @@ -25,22 +25,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -85,37 +85,37 @@ msgstr "" msgid "Unmount file systems." msgstr "" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -125,7 +125,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -194,10 +194,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -257,23 +257,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "" msgstr[1] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -284,10 +285,6 @@ msgstr[1] "" msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -320,7 +317,8 @@ msgstr "" msgid "Dummy python job." msgstr "" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "" diff --git a/lang/python/nb/LC_MESSAGES/python.po b/lang/python/nb/LC_MESSAGES/python.po index 5d4c10403..089e7bfff 100644 --- a/lang/python/nb/LC_MESSAGES/python.po +++ b/lang/python/nb/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Tyler Moss , 2017\n" "Language-Team: Norwegian Bokmål (https://www.transifex.com/calamares/teams/20061/nb/)\n" @@ -29,22 +29,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -89,37 +89,37 @@ msgstr "" msgid "Unmount file systems." msgstr "" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -129,7 +129,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -198,10 +198,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -261,23 +261,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Installer pakker." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Installer pakker." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "" msgstr[1] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -288,10 +289,6 @@ msgstr[1] "" msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -324,7 +321,8 @@ msgstr "" msgid "Dummy python job." msgstr "" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "" diff --git a/lang/python/ne_NP/LC_MESSAGES/python.po b/lang/python/ne_NP/LC_MESSAGES/python.po index f705bd724..88b342852 100644 --- a/lang/python/ne_NP/LC_MESSAGES/python.po +++ b/lang/python/ne_NP/LC_MESSAGES/python.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Nepali (Nepal) (https://www.transifex.com/calamares/teams/20061/ne_NP/)\n" "MIME-Version: 1.0\n" @@ -25,22 +25,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -85,37 +85,37 @@ msgstr "" msgid "Unmount file systems." msgstr "" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -125,7 +125,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -194,10 +194,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -257,23 +257,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "" msgstr[1] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -284,10 +285,6 @@ msgstr[1] "" msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -320,7 +317,8 @@ msgstr "" msgid "Dummy python job." msgstr "" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "" diff --git a/lang/python/nl/LC_MESSAGES/python.po b/lang/python/nl/LC_MESSAGES/python.po index 39e345856..4deb6ef9a 100644 --- a/lang/python/nl/LC_MESSAGES/python.po +++ b/lang/python/nl/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Adriaan de Groot , 2019\n" "Language-Team: Dutch (https://www.transifex.com/calamares/teams/20061/nl/)\n" @@ -29,22 +29,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -89,37 +89,37 @@ msgstr "" msgid "Unmount file systems." msgstr "" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "Geen mount-punt voor de root-partitie" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "globalstorage bevat geen sleutel \"rootMountPoint\", er wordt niks gedaan" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Onjuist mount-punt voor de root-partitie" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" "rootMountPoint is ingesteld op \"{}\", welke niet bestaat, er wordt niks " @@ -131,7 +131,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -200,10 +200,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -263,23 +263,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "" msgstr[1] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -290,10 +291,6 @@ msgstr[1] "" msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -326,7 +323,8 @@ msgstr "" msgid "Dummy python job." msgstr "Voorbeeld Python-taak" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Voorbeeld Python-stap {}" diff --git a/lang/python/pl/LC_MESSAGES/python.mo b/lang/python/pl/LC_MESSAGES/python.mo index 3f0af3a0dfc6ddee2677ca3e0dd9a232f67bc163..7bafa3c5f52c67ff77eddb6412e1935614f0f25f 100644 GIT binary patch delta 1296 zcmXxjU5HF!9LMqJ%+4-rG3;XPvg>#qgB`m|dCijdqGXc@Ijv(HJ3BMY%yycI)=Ls@ zWVumFiCS%LPVI%Fgye?YNfAZd?hSIo_jhLe>&)kQ&OGNl&;S2C=X>JIvY}6n(OZV- z=9njV0qxwC# z5s%^#yp0LwH@|48l=CMUGZok1Hr#=l@EY3q3S$vtexMfkdotBPdrDmu z>!{L?pfY`is#rU9*Z9q-{;_G)Un@Ds4VC&Pp1~1J;1V`$DegmMQbLWpj~)0Jx8n~~ z>62u$5_@p~FQT3wM^&bk$yBlRsD&JAqW+s`_}uVt40X6{W>Lm_k!MW`_h1<{?iFgH zF80mBC0wc;6%H4w>M$g%0+_{Ioa1mC^kK2yFy@@9Hk6H4^gpOr7!)FmE`F7v7N;#x zL@R_9RN0jwXEn@N<<%KbC=q-3Sxxg^<^Df7Na1NyUmv)>IYk2(pH5i+ZdCd@Z3?BV zld9+p7Dq2xF*nnfFXf8v3A^AsxnyvscB$38!%L^VOv)b2*(bfUTPPKZ?m!_Kyr_#s zX7#$oqW(PP0-VKCT)=8{rx}xjb*Sg|;}JZ8Mfe;w;WX;GkC=^1xC8&9 z7Tl1o1;>p!PD3lch#K%IZp2C4g&%Me=42SN4Y#AJbrzNJUDWdvN#}4k{hxRmYrV$Q z;4SpyD^%saqL2B_9~uWSV^w0pcC_f%g8MrGQ8 zTG)8f_o#_~p(>lkK3u{gR3#o{Q~ydDZ}>qgUqU@tz{b^JHMZg@RH>g}9Zq9EE~DN* zPg*)7w^0jyiF=klmO&zSH0(1w~_FSMg3nnV|Ba#ex~Iuj~; zUU3dAIMw2OI)m%OArB`si9*S#!U~PM5?P0mE$yH4nXUYTo@84KRGF0-XVGlsQnor1 z3YENMY(Ax+U7NWQ92~wWF-4)z72!_iov-|7wzSY;!lWme_LsNV`ktxz~-MF%61@IWlkW&ifxak(3s z?dzFMDfSOvhs!>b{mDIcGVfjE(Zm3ezTkzo_K?-p*ZJQ-p, 2017 # KagiSame, 2018 -# Piotr Strębski , 2019 +# Piotr Strębski , 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" -"Last-Translator: Piotr Strębski , 2019\n" +"Last-Translator: Piotr Strębski , 2020\n" "Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,22 +31,22 @@ msgstr "Konfiguracja GRUB." msgid "Mounting partitions." msgstr "Montowanie partycji." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "Błąd konfiguracji" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -91,19 +91,19 @@ msgstr "" msgid "Unmount file systems." msgstr "Odmontuj systemy plików." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." -msgstr "" +msgstr "Zapełnianie systemu plików." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "rsync zakończyło działanie kodem błędu {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "Błąd rozpakowywania obrazu \"{}\"" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" @@ -111,21 +111,21 @@ msgstr "" "Nie można odnaleźć unsquashfs, upewnij się, że masz zainstalowany pakiet " "squashfs-tools" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "Brak punktu montowania partycji root" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" "globalstorage nie zawiera klucza \"rootMountPoint\", nic nie zostanie " "zrobione" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Błędny punkt montowania partycji root" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" "Punkt montowania partycji root (rootMountPoint) jest \"{}\", które nie " @@ -137,8 +137,8 @@ msgid "Bad unsquash configuration" msgstr "Błędna konfiguracja unsquash" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "System plików dla \"{}\" ({}) nie jest obsługiwany" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -208,17 +208,17 @@ msgstr "Konfiguracja menedżera wyświetlania była niekompletna" msgid "Configuring mkinitcpio." msgstr "Konfigurowanie mkinitcpio." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" #: src/modules/luksopenswaphookcfg/main.py:35 msgid "Configuring encrypted swap." -msgstr "" +msgstr "Konfigurowanie zaszyfrowanej przestrzeni wymiany." #: src/modules/rawfs/main.py:35 msgid "Installing data." @@ -271,16 +271,17 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "Konfiguracja motywu Plymouth" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Zainstaluj pakiety." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Przetwarzanie pakietów (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Zainstaluj pakiety." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." @@ -289,7 +290,7 @@ msgstr[1] "Instalowanie %(num)d pakietów." msgstr[2] "Instalowanie %(num)d pakietów." msgstr[3] "Instalowanie%(num)d pakietów." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -302,13 +303,9 @@ msgstr[3] "Usuwanie %(num)d pakietów." msgid "Install bootloader." msgstr "Instalacja programu rozruchowego." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." -msgstr "" +msgstr "Ustawianie zegara systemowego." #: src/modules/dracut/main.py:36 msgid "Creating initramfs with dracut." @@ -338,7 +335,8 @@ msgstr "Zapisywanie fstab." msgid "Dummy python job." msgstr "Zadanie fikcyjne Python." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Krok fikcyjny Python {}" diff --git a/lang/python/pt_BR/LC_MESSAGES/python.mo b/lang/python/pt_BR/LC_MESSAGES/python.mo index 383f84566d70543cb23a4853e80da46558a0de92..25a95cd10855027addaf51ca6e31f054b234a3ed 100644 GIT binary patch delta 1306 zcmYMzOGs2v9LMo9HrMB9I_g+WHd>LR89v9+##bs5niUnHpp^s_l@KC`i=0i1+7(x+ zjKBz7WFavcgcL1|P+NqnB#d%lxsni~HqrOj40Pel=REE`=YRg^%v|F}efYE6Icj)X zC_5>&amMswx04^9FP1TF_%&v6yfM3J58@6S!wQ_iZMcq=7?%(=h#J3&B{+`R_yMbp z37a)4d+6{b8nYLhu>dc{+P5*2_6%;tdEAc6s0BAsfw+>Q^Aw<$b~}3TB4*(*=Aex} zoWx?*H;Ys<==g!F$C~AV|sDS2C->qOeZlHEdXhwk0Yofc;zAg`tTDStYJ1$mnxA?y^xRf*nq5IhLKmy2wuiX z)WjY>D#0q$QC>jJcN29-9>&^JSVnseEAVHSN+p#du5=L3q87S~>VJmHz$$8iGOoJb z>%}8@A9Y98P~&d4tM8gH4+l|~_#Pg>SyX`Q*nr^_{`BXmv?FtvDeS=o)S3B7Ln#j7 zHGG17=q10J_!er1PfrKmq}(2|yp9@s)GBc_ i+i$H3M=0{!`V$}VrVctHZ_*ZAkr&=+N90lNyMdZ5g``CF z&>^CTqNFH#DVAQkKw$~hgGdNP*M|tChopy~py>a#`_O^e-^}csZ)U!k-ES37t3n?V z?dKFv4JD0I7o(I1kJ$N;$EnmNutlxIY})5>9^S_y9LH32O;xHGv!m`n`Ti6Z;A2e2 zNnEK^NI9n|HJ^@3T!78E5C@~}JD5a!9OH2U=i*P436orrh2*2esYN#)#1tIB*?1Y} zU>Gy;CFV1~`bs5%j@0Rqfs1e}?MjrLo<#|G4<*1D%7P|P-usQSFn&g4=Ne@p+fX*t zjk2N3C<__EbbO0t%&&e@$-?Ea6x@NNMxDmRID!)JI~HQf%t+u`ltAq$3pNJ}H_oQD@$N)NO@CR3kMmfqCD0kpX3i;2a;$*a>vH<19dOny_87P;m z2jzPUEATEdrokiD=2698w;_4{B~goJ8%+Zg1w|ec670{`@8)Cqa!>P+h@yb^|l+4wr=&AI=iW+A!6aI6_^RpkMPj#DI&F41!TrEi?DtAkk8Uxv$2=7D9`^Zlm&f${7qfGC U$ft*INl;>XT72Q>X*Xj20=#3ueE{!s} to use." msgstr "Sem partições definidas para uso por
{!s}
." @@ -94,19 +94,19 @@ msgstr "" msgid "Unmount file systems." msgstr "Desmontar os sistemas de arquivos." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "Preenchendo sistemas de arquivos." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "O rsync falhou com o código de erro {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "Ocorreu uma falha ao descompactar a imagem \"{}\"" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" @@ -114,19 +114,19 @@ msgstr "" "Ocorreu uma falha ao localizar o unsquashfs, certifique-se de que o pacote " "squashfs-tools esteja instalado" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "Nenhum ponto de montagem para a partição root" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "O globalstorage não contém uma chave \"rootMountPoint\". Nada foi feito." -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Ponto de montagem incorreto para a partição root" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "O rootMountPoint é \"{}\", mas ele não existe. Nada foi feito." @@ -136,8 +136,8 @@ msgid "Bad unsquash configuration" msgstr "Configuração incorreta do unsquash" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "O sistema de arquivos para \"{}\" ({}) não é suportado" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -208,10 +208,10 @@ msgstr "A configuração do gerenciador de exibição está incompleta" msgid "Configuring mkinitcpio." msgstr "Configurando mkinitcpio." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -282,23 +282,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "Configurar tema do Plymouth" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Instalar pacotes." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Processando pacotes (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Instalar pacotes." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "Instalando um pacote." msgstr[1] "Instalando %(num)d pacotes." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -309,10 +310,6 @@ msgstr[1] "Removendo %(num)d pacotes." msgid "Install bootloader." msgstr "Instalar bootloader." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "Remover usuário live do sistema de destino" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "Configurando relógio de hardware." @@ -345,7 +342,8 @@ msgstr "Escrevendo fstab." msgid "Dummy python job." msgstr "Tarefa modelo python." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Etapa modelo python {}" diff --git a/lang/python/pt_PT/LC_MESSAGES/python.mo b/lang/python/pt_PT/LC_MESSAGES/python.mo index c47fe73a250e153d86634ecfe2ae6990c992e020..d1878e5c2345471a64865569b05b04707afedd4b 100644 GIT binary patch delta 1306 zcmYk*%S)6|7{~GRPV-vcZ+WT7Mzg%sn5K@m@s^r_Ax0EgNSKR?tRN}OMGp866ueB3 zVi|;+D6+vtNl*(R$wjm&3&Rp3S0OFBETZp^c^4fx^EuD^&Yb6*=bV{pU2G12%J4=E zt%JUe-smyrH1>J$K%6lHF`G2tVO-QfaN%aS@;I) zj0u~s3<`PR-(<{AY{z0e=f*cNlXw||7r7;(A4^CqRzC}&AAvrcd32H%|xE)Wq&#z-6@dWna zdsO0JiZMOdh21!g;Zg?Q81!NW_3g(&)EO-zugn+hz;z5^4cpDfA-rW#Qanz)J0s>8 z?k4_#s+>)^RM7$~!Ygu>;-U;_8z4EEp(mSY81U1!^m z2XGQ~M^;hqQ`xrWYeD_1uA&xp8_RIcjn}Y&IGjjb&M@di<}eTOB)&pjl0wR&A6~{w zco)xO3O6nvN08GqIjSZuUY7!@29IZ(zSc0Qjs_(dKKME|G(uE)H+YS zep^#EIm_NqdJ7}1To+8O%_+5g@v0rAG#yU2os-q97qkGqhF(IibVh8SRqsUXa;x2$ gx2vpB^tb&tF6v7jwxTamUM58!`{u0ZoxCy6Kd(fGssI20 delta 1490 zcmYMzeP~T#9KiACtb51Ui*0tj+~Khoj4=#*V`KKxw4r4U`NPf5blC3Ey?4{FZWdV! ze>izfqoF8&EI0pXik7R8n)pNVl0^7NQj*B`w|mQJ&;2~VvvYpW^ZcIYJgL0AHvA^T zby{)N(Xwfc2}=3!kc%I=5|!EjM%+fsAwG*U@eUT_3!IKg6O>wkIdNN2{(l^c@E&I2 zH!M{utP&?GmCKDP%)?zcAN%9+FlG|Jz%=}fGw>J6fSF0Li4>ybsYfsFMGqdssW^z! zFoJXNF%~ku`bsCA8`CGn9$bjc#8oIOJ%y6+HcEmqlnH%CdG8NS!L-S-m1~rVw4f}g z2W3HnC=-d|EPRC(jIVytnTsovY1oRCMxDS#7)43=9hagfC6>4zB~b^;#0GFS4#n@^ z$JNAdaR+9n#wO5%i-}KScoUrwI!%~NeG70qZp9^IjqCiD5cC}7MrmF z%kTo0<8xetX>7Q}O(=Wc&ktj(ODF^1iu)Ahuz>f7zP})KB)h2<31!<9KP~@c_ye zT}2rnip)tFoIu7_9&Euv%*Q^I=dZ`(M=1Hfp`4ja1`+eabe7R6!4+uXN*u&ee2y|e z3g6li%*9REj72zvvd7P`7SmX!oS7Ds=MSSiH;j_^9m-kquzZkMfy5=6*M_;a@9CVZf{Z< zJ!-F(JB!`Zvewd*tB_VgTR;%rlQSly=X3Yr1k z9, 2019\n" "Language-Team: Portuguese (Portugal) (https://www.transifex.com/calamares/teams/20061/pt_PT/)\n" @@ -31,22 +31,22 @@ msgstr "Configurar o GRUB." msgid "Mounting partitions." msgstr "A montar partições." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "Erro de configuração" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "Nenhuma partição está definida para
{!s}
usar." @@ -95,19 +95,19 @@ msgstr "" msgid "Unmount file systems." msgstr "Desmontar sistemas de ficheiros." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "A preencher os sistemas de ficheiros." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "rsync falhou com código de erro {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "Falha ao descompactar imagem \"{}\"" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" @@ -115,19 +115,19 @@ msgstr "" "Falha ao procurar unsquashfs, certifique-se que tem o pacote squashfs-tools " "instalado" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "Nenhum ponto de montagem para a partição root" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "globalstorage não contém um \"rootMountPoint\" chave, nada a fazer" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Ponto de montagem mau para partição root" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "rootMountPoint é \"{}\", que não existe, nada a fazer" @@ -137,8 +137,8 @@ msgid "Bad unsquash configuration" msgstr "Má configuração unsquash" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "O sistema de ficheiros \"{}\" ({}) não é suportado" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -209,10 +209,10 @@ msgstr "A configuração do gestor de exibição estava incompleta" msgid "Configuring mkinitcpio." msgstr "A configurar o mkintcpio." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "Nenhum ponto de montagem root é fornecido para
{!s}
usar." @@ -281,23 +281,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "Configurar tema do Plymouth" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Instalar pacotes." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "A processar pacotes (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Instalar pacotes." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "A instalar um pacote." msgstr[1] "A instalar %(num)d pacotes." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -308,10 +309,6 @@ msgstr[1] "A remover %(num)d pacotes." msgid "Install bootloader." msgstr "Instalar o carregador de arranque." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "Remover utilizador ativo do sistema de destino" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "A definir o relógio do hardware." @@ -344,7 +341,8 @@ msgstr "A escrever o fstab." msgid "Dummy python job." msgstr "Tarefa Dummy python." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Passo Dummy python {}" diff --git a/lang/python/ro/LC_MESSAGES/python.po b/lang/python/ro/LC_MESSAGES/python.po index 90be7113d..885255c62 100644 --- a/lang/python/ro/LC_MESSAGES/python.po +++ b/lang/python/ro/LC_MESSAGES/python.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Sebastian Brici , 2018\n" "Language-Team: Romanian (https://www.transifex.com/calamares/teams/20061/ro/)\n" @@ -30,22 +30,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -90,37 +90,37 @@ msgstr "" msgid "Unmount file systems." msgstr "Demonteaza sistemul de fisiere" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -130,7 +130,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -199,10 +199,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -262,16 +262,17 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Instalează pachetele." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Se procesează pachetele (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Instalează pachetele." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." @@ -279,7 +280,7 @@ msgstr[0] "Instalează un pachet." msgstr[1] "Se instalează %(num)d pachete." msgstr[2] "Se instalează %(num)d din pachete." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -291,10 +292,6 @@ msgstr[2] "Se elimină %(num)d de pachete." msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -327,7 +324,8 @@ msgstr "" msgid "Dummy python job." msgstr "Job python fictiv." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Dummy python step {}" diff --git a/lang/python/ru/LC_MESSAGES/python.po b/lang/python/ru/LC_MESSAGES/python.po index 3b0bb39d9..3460c3b8c 100644 --- a/lang/python/ru/LC_MESSAGES/python.po +++ b/lang/python/ru/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Aleksey Kabanov , 2018\n" "Language-Team: Russian (https://www.transifex.com/calamares/teams/20061/ru/)\n" @@ -29,22 +29,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -89,37 +89,37 @@ msgstr "" msgid "Unmount file systems." msgstr "" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -129,7 +129,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -198,10 +198,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -261,16 +261,17 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Обработка пакетов (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." @@ -279,7 +280,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -292,10 +293,6 @@ msgstr[3] "" msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -328,7 +325,8 @@ msgstr "" msgid "Dummy python job." msgstr "" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "" diff --git a/lang/python/sk/LC_MESSAGES/python.mo b/lang/python/sk/LC_MESSAGES/python.mo index ee60f972a92a3053dadbb7c7a4b193f062b59bda..7dd4856d5cf2f338d667aff2cd99464a1cd3f2ed 100644 GIT binary patch delta 867 zcmXZaPe_w-9LMqR!?SYcbZs{OrcSro%Bkrz4MS-K8d4DK+01K$~>v$Qrup9Rw>7 zDuZXJ0MgiiGuV%7*o=R$2Yp_%K1^XNrtuc8pek~J+W#LFP2R zpZX^m)X^Aa@))&n9F@@=4&xpsu#rZla0G{N3OjKhRY`Bq^5;#W0{V^$=ojkab}5Sj z3Zu^Ht)wyP>3jZQjm;yKw^+8>jXCYvhi)XK7LZu}A@F=f64?)K(rL|Zx=+egfi_-Z Uuy`)uS@q;jye~>~?}AItIp^$AMgRZ+ delta 965 zcmXZaOK1~87{KvaHkzb1)}*bEw$|0CyS352Qne@^B2vLepa^;mWlaO7tD8;G_7G4! zNWBFG9}q<>7SSF8J}x;lRSzD#=t=M*76tL-$%Fd;x(Q5vGt12E_t-`Ao>l%53*1ut z1{pn!`^#G zrOIlGNjDF!;YO@t2fn~f_#U_6S4^P3mP>IEWnT&JM%0Y73A zzhRvBtFEA*!4Z@UCQ&Y)!>#xL4`Cg*;~yNwo{&-paRU2s4y7V5QL6bFr82Ey|DGX~ zz|zfi7CU&qy3XVj-bE?xcU+Hu@g41mv`~K5pVrY1{D)FXtJM!Ah5K1w#xY!Mu799Z zz=-%2Orj)o26v;2gMpF?S_i<00CoW*Jz^&e)^O=CvzG)g8{Q8vCt$>;+f$1sgd-~^_yjN`b3L)a2i z>Hr=_sjP=`?{AdAEXpB)ok026op#fY>?RN7!bd1QUO~>N5FY{^P*x?Xo7zBSOpkX; zrX;HNGDu{#B4*{1KB6TmkM(p!zJ+}ZVp4rIE$}qZYa17GCEF+#Y}YvNI(fs(xLMmX z3ReoAov+P@vf<&z!)bdu*W7v0DZZ&Uo|Q75y2Gsa|&iBoDUOgXEk8VmViEf{;E F{ReMSc9Z}B diff --git a/lang/python/sk/LC_MESSAGES/python.po b/lang/python/sk/LC_MESSAGES/python.po index 0da24e6bb..60b5ef19a 100644 --- a/lang/python/sk/LC_MESSAGES/python.po +++ b/lang/python/sk/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Dušan Kazik , 2020\n" "Language-Team: Slovak (https://www.transifex.com/calamares/teams/20061/sk/)\n" @@ -29,22 +29,22 @@ msgstr "Konfigurácia zavádzača GRUB." msgid "Mounting partitions." msgstr "Pripájanie oddielov." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "Chyba konfigurácie" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "Nie sú určené žiadne oddiely na použitie pre
{!s}
." @@ -89,37 +89,37 @@ msgstr "" msgid "Unmount file systems." msgstr "Odpojenie súborových systémov." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "Napĺňanie súborových systémov." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "Zlyhalo rozbalenie obrazu „{}“" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "Žiadny bod pripojenia pre koreňový oddiel" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Zlý bod pripojenia pre koreňový oddiel" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -129,7 +129,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -198,10 +198,10 @@ msgstr "Konfigurácia správcu zobrazenia nebola úplná" msgid "Configuring mkinitcpio." msgstr "Konfigurácia mkinitcpio." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "Nie je zadaný žiadny bod pripojenia na použitie pre
{!s}
." @@ -261,16 +261,17 @@ msgstr "Cesta k službe {name!s} je {path!s}, ale neexistuje." msgid "Configure Plymouth theme" msgstr "Konfigurácia motívu služby Plymouth" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Inštalácia balíkov." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Spracovávajú sa balíky (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Inštalácia balíkov." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." @@ -279,7 +280,7 @@ msgstr[1] "Inštalujú sa %(num)d balíky." msgstr[2] "Inštaluje sa %(num)d balíkov." msgstr[3] "Inštaluje sa %(num)d balíkov." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -292,10 +293,6 @@ msgstr[3] "Odstraňuje sa %(num)d balíkov." msgid "Install bootloader." msgstr "Inštalácia zavádzača." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "Odstránenie live používateľa z cieľového systému" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "Nastavovanie hardvérových hodín." @@ -328,7 +325,8 @@ msgstr "Zapisovanie fstab." msgid "Dummy python job." msgstr "Fiktívna úloha jazyka python." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Fiktívny krok {} jazyka python" diff --git a/lang/python/sl/LC_MESSAGES/python.po b/lang/python/sl/LC_MESSAGES/python.po index acf7bafd9..0c08b1033 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: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Slovenian (https://www.transifex.com/calamares/teams/20061/sl/)\n" "MIME-Version: 1.0\n" @@ -25,22 +25,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -85,37 +85,37 @@ msgstr "" msgid "Unmount file systems." msgstr "" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -125,7 +125,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -194,10 +194,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -257,16 +257,17 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." @@ -275,7 +276,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -288,10 +289,6 @@ msgstr[3] "" msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -324,7 +321,8 @@ msgstr "" msgid "Dummy python job." msgstr "" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "" diff --git a/lang/python/sq/LC_MESSAGES/python.mo b/lang/python/sq/LC_MESSAGES/python.mo index 7f3be3883c6a4f75f4ac88736e257ae0034099f1..ae7a61c77b87724c3cd03fc807bb2da96f7b8984 100644 GIT binary patch delta 1390 zcmX}sT}YEr7{Kwfwb!(qI!!G%+iR9-eoXwDAJej2f+a>)ghjPvnPwA~l7=zpCMxuz zAzgTpth&*gVkMLWW=J1ibZwDE5#)tsH-SOf|7oKa&VJAHzGvq==e%bdty``QEF_yo z6qlQ3qcs?n@?f`#53XfRsV4jp)fJ=E7V@i@f#X<;v$zpgund#eMr=fRK8OyykE!?( zE0qeUp9I<5aKtLL6xQH_0nz%?IHk5IkXvJfgh8J-I4r4mr zK|4-i0rRVO1Qu?@u8VZcz=Pxtl$BmV8Soy;0MAegnn(HG5+>m)%F2`0M+$MHET|J@ zLBlA8OkyU^VGZ-EMS?8c7Ozw}HX>W2E@M7UVljR~88F2h8K4rSpd+{$ebM_v=pvuM z()xG|IcmVtI5?PLu)mVh!Fv9be#}fr;=C zxi>lD6D%N4WV>X=F095jlpP&OVgKt09&ke{UXEHwxlZyflrM&`3a2p_f1wndO?5Is zGfI95sX^UEhEk7ECVGW(X1<^t@>P^qVoPKHcMvpiQlvu<%AvZ3a=JsP<5QG^7Es=K z8v8C2P!$}}9EOJAtX67pg;%scF=4BD%#g019?%DR`uuu(pWpBG_3G!m zexJ8HJeBa-Xe=oXk69Aq!f!KP8ZvcXhbQ{9Q}62Ybm^UXugBMU;q3E?^Wl(f!1xy~ CWuR&R delta 1426 zcmXxkYeF3kQvS$P=Md9cW?eF^l#HrsHF@;~b`nMRVp=@XXWkaJV zfz04Ke2c}buU4q6$NXptHY2G~mvIZupiKB3w_|clXyRIwi8@gNyM!5dE8IVgCA1gu zFj`|n0Sw?)+E>uOpUM*|`!JgPX5%3|i0APrE})#5lWp>xnyd%A(Vkr=)eWsj44DV0hgmJ za6H@|L1IzU$du|e$~vD=?v8RfgLQek!t~E|i_zK?!6Q<&1u#EMQ}_w4GRs zoha`;!a7{UCbSW)1aJoB`*F<0`EWauG{_yvM}{bWBNd%WH_FfADi+~5_Tm?m09whH zOyooPb=<}V{DHDi9ouZhK5WN1 zrT4nL9qwM;H{k1acLm=^k7>ct*bfH74oC1@e4N>~$8$tP abe~6tcytegyZc<;;I;JUTCm?bVE6~G1FEwC diff --git a/lang/python/sq/LC_MESSAGES/python.po b/lang/python/sq/LC_MESSAGES/python.po index aca17a4d6..43aa60d2f 100644 --- a/lang/python/sq/LC_MESSAGES/python.po +++ b/lang/python/sq/LC_MESSAGES/python.po @@ -4,16 +4,16 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Besnik , 2019 +# Besnik , 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" -"Last-Translator: Besnik , 2019\n" +"Last-Translator: Besnik , 2020\n" "Language-Team: Albanian (https://www.transifex.com/calamares/teams/20061/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,22 +29,22 @@ msgstr "Formësoni GRUB-in." msgid "Mounting partitions." msgstr "Po montohen pjesë." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "Gabim Formësimi" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "S’ka pjesë të përkufizuara për
{!s}
për t’u përdorur." @@ -93,19 +93,19 @@ msgstr "" msgid "Unmount file systems." msgstr "Çmontoni sisteme kartelash." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "Po mbushen sisteme kartelash." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "rsync dështoi me kod gabimi {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "Dështoi shpaketimi i figurës \"{}\"" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" @@ -113,19 +113,19 @@ msgstr "" "S’u arrit të gjendej unsquashfs, sigurohuni se e keni të instaluar paketën " "squashfs-tools" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "S’ka pikë montimi për ndarjen rrënjë" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "globalstorage nuk përmban një vlerë \"rootMountPoint\", s’po bëhet gjë" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Pikë e gabuar montimi për ndarjen rrënjë" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "rootMountPoint është \"{}\", që s’ekziston, s’po bëhet gjë" @@ -135,8 +135,9 @@ msgid "Bad unsquash configuration" msgstr "Formësim i keq i unsquash-it" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "Sistemi i kartelave për \"{}\" ({}) nuk mbulohet" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "" +"Sistemi i kartelave për \"{}\" ({}) nuk mbulohet nga kerneli juaj i tanishëm" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -206,10 +207,10 @@ msgstr "Formësimi i përgjegjësit të ekranit s’qe i plotë" msgid "Configuring mkinitcpio." msgstr "Po formësohet mkinitcpio." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -278,23 +279,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "Formësoni temën Plimuth" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Instalo paketa." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Po përpunohen paketat (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Instalo paketa." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "Po instalohet një paketë." msgstr[1] "Po instalohen %(num)d paketa." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -305,10 +307,6 @@ msgstr[1] "Po hiqen %(num)d paketa." msgid "Install bootloader." msgstr "Instalo ngarkues nisjesh." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "Hiq përdoruesin live nga sistemi i synuar" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "Po caktohet ora hardware." @@ -341,7 +339,8 @@ msgstr "Po shkruhet fstab." msgid "Dummy python job." msgstr "Akt python dummy." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Hap python {} dummy" diff --git a/lang/python/sr/LC_MESSAGES/python.po b/lang/python/sr/LC_MESSAGES/python.po index 1f193a466..373c23d8e 100644 --- a/lang/python/sr/LC_MESSAGES/python.po +++ b/lang/python/sr/LC_MESSAGES/python.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Slobodan Simić , 2020\n" "Language-Team: Serbian (https://www.transifex.com/calamares/teams/20061/sr/)\n" @@ -29,22 +29,22 @@ msgstr "Подеси ГРУБ" msgid "Mounting partitions." msgstr "Монтирање партиција." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "Грешка поставе" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -89,37 +89,37 @@ msgstr "" msgid "Unmount file systems." msgstr "Демонтирање фајл-система." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "Попуњавање фајл-система." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "rsync неуспешан са кодом грешке {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "Неуспело распакивање одраза \"{}\"" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "Нема тачке мотирања за root партицију" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Лоша тачка монтирања за корену партицију" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -129,7 +129,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -198,10 +198,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -261,16 +261,17 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." @@ -278,7 +279,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -290,10 +291,6 @@ msgstr[2] "" msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -326,7 +323,8 @@ msgstr "Уписивање fstab." msgid "Dummy python job." msgstr "" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "" diff --git a/lang/python/sr@latin/LC_MESSAGES/python.po b/lang/python/sr@latin/LC_MESSAGES/python.po index b072db982..f376b3c26 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: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Serbian (Latin) (https://www.transifex.com/calamares/teams/20061/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -25,22 +25,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -85,37 +85,37 @@ msgstr "" msgid "Unmount file systems." msgstr "" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -125,7 +125,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -194,10 +194,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -257,16 +257,17 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." @@ -274,7 +275,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -286,10 +287,6 @@ msgstr[2] "" msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -322,7 +319,8 @@ msgstr "" msgid "Dummy python job." msgstr "" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "" diff --git a/lang/python/sv/LC_MESSAGES/python.mo b/lang/python/sv/LC_MESSAGES/python.mo index 029cc5c292c1157445877a8bebe406d9c3a5d35d..635f1779db048941525378dc0bd3add410ef1223 100644 GIT binary patch delta 979 zcmXZbPe@cz6vy%NnlW=SZD!P(YBWt!XPQxGQYnj|%}BHeG9oCcRp~0J+-Od1gfb#{ z1-1!gpcbui%2k2EEL^lI+L#qWL4*_q5(t9dU+-PGe(s(3?w@nc^JiP3HUA|Nd}OpN zeGmPmW0u2{0shdg1kIXo5O?7{+=%dc}4BW;zK1E%i zghx2vmKdDJSjgLW1TQk5M5S^Ct8mj+qQWqaQ>F|in7^p>HeSMd=4*HiW82IQ<2gKv z4^bt4kDd4%^BD$>?5>;lqi%i|m618$1=PYtREhqfA_-GBMb?gb-j9lG7?qJbs8T-n zpO=uD+cK(ztJUPcjX@=O-;dp>h%caOe+_k!`@Ykto6n-weM4oSikDJ&2(|t)_TWv_ zd#~^~enpkADdGisB68N-V1yr(x*62L^Qa9zp-L0w+FaVMqUN_y-@s=i8TJh*P}0CV9n4Mcy$T|_!k4ng z*;73v&IszE5Tqg^T3OM9&|8oZR1gyM5It4U_vc1*;oQ$T=kAODP{-!L4`~H{(le!H+pB+)6bwK7tiEi8VNbwfF$*a3wc( z=P6aDR8lq2*~o+axCMJr4j4o^@Dj>KH*gz1#ZCAg%kc+RVnM!A)u^!)51>3hffB#~ z%KB-P-`~PA&R0+9$bz?6f}c?$`-yUJLqRrzUaVtmp=^8|JMbRvz;7s7EG|?kfZZtT zhp`c7P%`lXy|{{%oUaOsl4Y$hO_)N7WC;WK8zn=2>Lj+KtUHQQvM5SKQz#M6 z=AJL1r1}#|hJK-x)=QdY{oWGt&qtt6G9fh`z81;$@U?;S0(O$W8Qc3t=tF zx-%#lxQIc#gR=e|w&8b_-_?1PI*7+Tt!!-PcoIOkWCjmmjDNnsbt3-qCEG=@^D z`$$l#n0ooK3T3_rrG#m2Bu_m=$-pb5Qfe1XGO#{%)*0|N)02z8(%RLMlMhe@Q?t%M zsl1D<57A`5-KiC4hqsAdBW({&PM6%u7bhXMrdnOqj=EQ z?XWpu*xDMiY-4EQSYf9lcxuqlk!Z}w&gn?P)V}cvpZ1SW)a$6F;|YF0GCZ6xZKHo- zy6APjZ*9|Xd^D4e_lHfEo0<8z9?HzevYQz8!eLLF!+$9HZ$d{hi~nu>?54Kt%woT# MqjB3vCCk!(0T%C^&j0`b diff --git a/lang/python/sv/LC_MESSAGES/python.po b/lang/python/sv/LC_MESSAGES/python.po index 95f99cd30..4cc57bc96 100644 --- a/lang/python/sv/LC_MESSAGES/python.po +++ b/lang/python/sv/LC_MESSAGES/python.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Luna Jernberg , 2020\n" "Language-Team: Swedish (https://www.transifex.com/calamares/teams/20061/sv/)\n" @@ -30,22 +30,22 @@ msgstr "Konfigurera GRUB." msgid "Mounting partitions." msgstr "Monterar partitioner." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "Konfigurationsfel" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "Inga partitioner är definerade för
{!s}
att använda." @@ -92,37 +92,37 @@ msgstr "" msgid "Unmount file systems." msgstr "Avmontera filsystem." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "Packar upp filsystem." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "rsync misslyckades med felkod {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "Misslyckades att packa upp avbild \"{}\"" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "Ingen monteringspunkt för root partition" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Dålig monteringspunkt för root partition" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -132,8 +132,8 @@ msgid "Bad unsquash configuration" msgstr "Dålig unsquash konfiguration" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "Filsystemet för \"{}\" ({})  stöds inte" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -203,10 +203,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "Konfigurerar mkinitcpio." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -266,23 +266,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "Konfigurera Plymouth tema" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Installera paket." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Bearbetar paket (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Installera paket." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "Installerar ett paket." msgstr[1] "Installerar %(num)d paket." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -293,10 +294,6 @@ msgstr[1] "Tar bort %(num)d paket." msgid "Install bootloader." msgstr "Installera starthanterare." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "Tar bort live användare från målsystemet" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "Ställer hårdvaruklockan." @@ -329,7 +326,8 @@ msgstr "Skriver fstab." msgid "Dummy python job." msgstr "Exempel python jobb" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Exempel python steg {}" diff --git a/lang/python/th/LC_MESSAGES/python.po b/lang/python/th/LC_MESSAGES/python.po index faf76f2b2..4e06c9f2c 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: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Thai (https://www.transifex.com/calamares/teams/20061/th/)\n" "MIME-Version: 1.0\n" @@ -25,22 +25,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -85,37 +85,37 @@ msgstr "" msgid "Unmount file systems." msgstr "" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -125,7 +125,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -194,10 +194,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -257,22 +257,23 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -282,10 +283,6 @@ msgstr[0] "" msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -318,7 +315,8 @@ msgstr "" msgid "Dummy python job." msgstr "" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "" diff --git a/lang/python/tr_TR/LC_MESSAGES/python.mo b/lang/python/tr_TR/LC_MESSAGES/python.mo index f0af7e2403ad04bce34e84a8e6164cc61f814e57..b36bf9c4930b45343752f00b43cd7dcfa8d6187b 100644 GIT binary patch delta 1394 zcmYk+TS!zv9LMol+byjuFPY_<9@8k(TJw_Tt;|~lYS_i7h`eki+E$BZRi#Ko;cbk; z3CuIbXMR#iro$C#ObTwr<#>F$-G|Y%M{z!m<6@jdy>LcYFpzlEJh|w^-MA1tZ~!=AHq5>L6J@*A8@GolR5p#lpl%p2Z zj9Sn|R3JmR1fO96?>CcFl5p8vV{)((NsZ~kG#tVV{D7J;Iy^W*9x9+6n1G(?{tH-0 z`zG$e&!`ud&trRW7uH}e`l_gWrILz89hz`4Vdmp@%*JliUXP;2y+;L_LR2fU z8dqWGbbA1`=P!_IE0D8v9Wben*W@;ACorrAQJ?1Ckumj(YwqX5nQYmDNCfJJ#s0)kn zDr(#WmS63XWT7wZQy?RhZD^q&x zYW!C$>bd^A_C!YxwPOEUd!lWl|F_*4xq)^*mrjLBsXx`>49lZNLQT29$`Kp0UN3sN)#CPg z+^vD(d7nZ;GBX1GkwsyF80WAp>5%(aV|$zRc);D#>}_(7^fr5%PgrgB-unF`cRWq? Lp1||?Ga>%~uX(1s delta 1437 zcmXZcYepyU@*u2u)|orpBg$6f7u7xup{`ShHgsVsp2dYYh-nzWEPR1^ zykEXjNu(ovZg^lW?xtOdy3+yF1xHaAc!e5J2zA~JF2IC&;hmePf$T%wP%r9+22lf< zz{U6u%Xz;{Q(1~7aTIJoQX>~}HBO)|_y^Zw>iqD+b*KxuQ3E@NOK>RCKaLf&r|=MF z#)kvw#eCYA(6^Jy7?tf9M}Ak~K|FwGuo2&*o|%JfGF0|r4K`yr-bWKZ<9S2GN?ICd zUrrL)k0I1Mu!*#3>bud7SCYxUM*Nx%UGO*Rf~DlC3_Vzk!>DKe33c3G)Ih6X- zJGvHW2T{-dCo)u`X=sLRXrevRKAcMa^XNE5ho*WMHNv;3DW66Y7n5H-O9vKXGwRvj zKz+eO+=0(f*Nf+7>iBZh4K^Z45Fe5x89<$XM>~qBjN%#$VF9MI-9p@oy1)t4fNr7# zpQ4VN!79w>x40R*P&X355}ZO!bqY6F$L~R1=QQfi-FJ_Q-p(NMC*SzcRL1bF3rmqK z$`CHc$EZgzh2@yT4b=IKcntfo4X2SIa)juqiVt_;E!25GaHUAK;MxrB>;GX~{Cg|J`Cs)ST#R^mgb|FO}Mn>}$L((F430DhN4&ui lDrTFr#o20l+jVA(v(t1nxm$uG9=;5WFB&rfw=+*i{RahuwJ!hw diff --git a/lang/python/tr_TR/LC_MESSAGES/python.po b/lang/python/tr_TR/LC_MESSAGES/python.po index c13fe7004..ac79808ef 100644 --- a/lang/python/tr_TR/LC_MESSAGES/python.po +++ b/lang/python/tr_TR/LC_MESSAGES/python.po @@ -4,16 +4,16 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Demiray Muhterem , 2019 +# Demiray Muhterem , 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" -"Last-Translator: Demiray Muhterem , 2019\n" +"Last-Translator: Demiray Muhterem , 2020\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/calamares/teams/20061/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,22 +29,22 @@ msgstr "GRUB'u yapılandır." msgid "Mounting partitions." msgstr "Disk bölümleri bağlanıyor." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "Yapılandırma Hatası" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "
{!s}
kullanması için hiçbir bölüm tanımlanmadı." @@ -93,39 +93,39 @@ msgstr "" msgid "Unmount file systems." msgstr "Dosya sistemlerini ayırın." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "Dosya sistemi genişletiliyor." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "rsync {} hata koduyla başarısız oldu." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "\"{}\" kurulum medyası aktarılamadı" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" "Unsquashfs bulunamadı, squashfs-tools paketinin kurulu olduğundan emin olun." -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "kök disk bölümü için bağlama noktası yok" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" "globalstorage bir \"rootMountPoint\" anahtarı içermiyor, hiçbirşey yapılmadı" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Kök disk bölümü için hatalı bağlama noktası" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "rootMountPoint \"{}\", mevcut değil, hiçbirşey yapılmadı" @@ -135,8 +135,8 @@ msgid "Bad unsquash configuration" msgstr "Unsquash yapılandırma sorunlu" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "\"{}\" ({}) Dosya sistemi desteklenmiyor" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "\"{}\" ({}) Dosya sistemi mevcut çekirdeğiniz tarafından desteklenmiyor" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -206,10 +206,10 @@ msgstr "Ekran yöneticisi yapılandırma işi tamamlanamadı" msgid "Configuring mkinitcpio." msgstr "Mkinitcpio yapılandırılıyor." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "
{!s}
kullanması için kök bağlama noktası verilmedi." @@ -273,23 +273,24 @@ msgstr "{name!s} hizmetinin yolu, bulunmayan {path!s}." msgid "Configure Plymouth theme" msgstr "Plymouth temasını yapılandır" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Paketleri yükle" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Paketler işleniyor (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Paketleri yükle" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "%(num)d paket yükleniyor" msgstr[1] "%(num)d paket yükleniyor" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -300,10 +301,6 @@ msgstr[1] "%(num)d paket kaldırılıyor." msgid "Install bootloader." msgstr "Önyükleyici kur." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "Liveuser kullanıcısını hedef sistemden kaldırın" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "Donanım saati ayarlanıyor." @@ -336,7 +333,8 @@ msgstr "Fstab dosyasına yazılıyor." msgid "Dummy python job." msgstr "Dummy python job." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Dummy python step {}" diff --git a/lang/python/uk/LC_MESSAGES/python.mo b/lang/python/uk/LC_MESSAGES/python.mo index 02910dbb81b0c60868475ca6599b5c88eb0bafc3..ba7c899998687d84ea3640993e600fda286ca034 100644 GIT binary patch delta 1425 zcmX}reN2r}9Ki8&b1x-{l5k6p>QXc}ZiJGzuFUHsO>UB`VOs3wE!354F)MA);tw+~ zjX!F`x)_V1t+M&&x$_5&%rMg*=5>aRe1F|LXFJd5obx>Qy!_7ZzRCTz-t#KL+@vT@ zY78|yNU3dDX68ZpY*A_@ehHX4T&Z~abvOxI(1G1J0e@i{MvU;AgYy0;+VLhv;cJ|y zlt=xbk-&gGSgAzZfYb0$pnnM?>33r|_TfYvKv{5Dh<_t7DD$MF6kiRjAbBrr2oT7m`mS|a?;}{6JAA`;1SA(`cQuN5y#*l%E`xs`ZwZ4InXYY z12v#*oJpl zD;DAhl!cw6xnA6i>+m9a*3kGwBN-PG-%Yp!i}4}KT}|P5e4^4(CRmOccp5eAMHhMV z0dLdKCOp^hH*UeptS*rm#9~Zi(%IM)Mf~$3yRNM%W$3Y?1PP(s~-63Vx@ z6*Uq;COC#RY{6C$ zVU>g9pTxCz0-xalEaccZ_!R5V$}Tr69!S)priqb zN0kI27(--~Ip8Xr=4-%yAZ3DogJ-$C;Muf6Uggi|I=o<+i0P(~~XM5cwC8 z63VHsu|!8Lk{6T|>RhU1#B9CNVl~azn=E!yw%%=Vm@>V;EPsc4tznl;(OOBRR=H=t zTid?h?Jh0fr|m9vmzS1#+ef!W=$Y|WuPOdrP)f6AbQ&GLyfIib}i{hRkGJjh0V{vx2~}zdSb{FYar7_Z7`%_^_#Q`N*Z`%b85AGS^TxvIZrg8kB?@ zQ8visc#Byz;$>GOYjrQnPrnEQ`Kr*h-H|G*HObREav{$ zC`&7S7iDU~Xwu$obg3!ONJG)u7@7vmc& z#waerX55X^H&7~<#zm1MT!*RX!DMVgN%UO|^`Ak|$3O`>xzbYVGdKb7qMTs|N-5hTh^^Ft$Mpqm5C#H*N%A5k`9 zk5g&|=Hhldi)-*VuE$lHQv2~H%7+uVQ2VeH?_dYYy7hcrY)5&|8$!Bs2sWbZ^a2*+ zE4+piNT1}@OLSou9>YA+-ixm>A9LAd9oC~4Be?QX*>gy7)eAg?op>2toI@$Esec3( z20~~HX!1zr@-ju~e{%UN7sndt_Gg$!tkGucH>`2CnM67ITWg#}={;8ai23v-PdRmY z7V0rJdzd83)lk#)EL(KcJR*70XtQW?Gt%{Po86M3AGbLzi}Y4ox+TlkZTlNK)~!{P z?{#Z?s@#>@*2-NwwQ5)8Hg~mFRZ~^%-s$@q-emDL4sD5W`pqMTUo-9-kIch{->fx{ zm`9BkquH!8nlh5!Hn diff --git a/lang/python/uk/LC_MESSAGES/python.po b/lang/python/uk/LC_MESSAGES/python.po index d653e636e..7eeee9dbc 100644 --- a/lang/python/uk/LC_MESSAGES/python.po +++ b/lang/python/uk/LC_MESSAGES/python.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Yuri Chornoivan , 2020\n" "Language-Team: Ukrainian (https://www.transifex.com/calamares/teams/20061/uk/)\n" @@ -31,22 +31,22 @@ msgstr "Налаштовування GRUB." msgid "Mounting partitions." msgstr "Монтування розділів." -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "Помилка налаштовування" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "Не визначено розділів для використання
{!s}
." @@ -95,19 +95,19 @@ msgstr "" msgid "Unmount file systems." msgstr "Демонтувати файлові системи." -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "Заповнення файлових систем." -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "Спроба виконати rsync зазнала невдачі з кодом помилки {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "Не вдалося розпакувати образ «{}»" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" @@ -115,21 +115,21 @@ msgstr "" "Не вдалося знайти unsquashfs; переконайтеся, що встановлено пакет squashfs-" "tools" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "Немає точки монтування для кореневого розділу" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" "У globalstorage не міститься ключа «rootMountPoint». Не виконуватимемо " "ніяких дій." -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "Помилкова точна монтування для кореневого розділу" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" "Для rootMountPoint вказано значення «{}». Такого шляху не існує. Не " @@ -141,8 +141,9 @@ msgid "Bad unsquash configuration" msgstr "Помилкові налаштування unsquash" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "Підтримки файлової системи для «{}» ({}) не передбачено" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "" +"У поточному ядрі системи не передбачено підтримки файлової системи «{}» ({})" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -212,10 +213,10 @@ msgstr "Налаштування засобу керування дисплеє msgid "Configuring mkinitcpio." msgstr "Налаштовуємо mkinitcpio." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -284,16 +285,17 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "Налаштувати тему Plymouth" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "Встановити пакети." + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "Обробляємо пакунки (%(count)d з %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "Встановити пакети." - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." @@ -302,7 +304,7 @@ msgstr[1] "Встановлюємо %(num)d пакунки." msgstr[2] "Встановлюємо %(num)d пакунків." msgstr[3] "Встановлюємо один пакунок." -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -315,10 +317,6 @@ msgstr[3] "Вилучаємо один пакунок." msgid "Install bootloader." msgstr "Встановити завантажувач." -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "Вилучити користувача портативної системи із системи призначення" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "Встановлюємо значення для апаратного годинника." @@ -351,7 +349,8 @@ msgstr "Записуємо fstab." msgid "Dummy python job." msgstr "Фіктивне завдання python." -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "Фіктивний крок python {}" diff --git a/lang/python/ur/LC_MESSAGES/python.po b/lang/python/ur/LC_MESSAGES/python.po index dccfdb421..74741528f 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: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Urdu (https://www.transifex.com/calamares/teams/20061/ur/)\n" "MIME-Version: 1.0\n" @@ -25,22 +25,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -85,37 +85,37 @@ msgstr "" msgid "Unmount file systems." msgstr "" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -125,7 +125,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -194,10 +194,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -257,23 +257,24 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "" msgstr[1] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -284,10 +285,6 @@ msgstr[1] "" msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -320,7 +317,8 @@ msgstr "" msgid "Dummy python job." msgstr "" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "" diff --git a/lang/python/uz/LC_MESSAGES/python.po b/lang/python/uz/LC_MESSAGES/python.po index 37aa27672..78bd0e069 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: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Language-Team: Uzbek (https://www.transifex.com/calamares/teams/20061/uz/)\n" "MIME-Version: 1.0\n" @@ -25,22 +25,22 @@ msgstr "" msgid "Mounting partitions." msgstr "" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "" @@ -85,37 +85,37 @@ msgstr "" msgid "Unmount file systems." msgstr "" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "" @@ -125,7 +125,7 @@ msgid "Bad unsquash configuration" msgstr "" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" msgstr "" #: src/modules/unpackfs/main.py:394 @@ -194,10 +194,10 @@ msgstr "" msgid "Configuring mkinitcpio." msgstr "" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "" @@ -257,22 +257,23 @@ msgstr "" msgid "Configure Plymouth theme" msgstr "" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -282,10 +283,6 @@ msgstr[0] "" msgid "Install bootloader." msgstr "" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "" @@ -318,7 +315,8 @@ msgstr "" msgid "Dummy python job." msgstr "" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "" diff --git a/lang/python/zh_CN/LC_MESSAGES/python.mo b/lang/python/zh_CN/LC_MESSAGES/python.mo index f4552796b632e69cda29207c61c4b45d63706b2a..2595bf4ec6f1af29709f1e6309c3aa625da0a09e 100644 GIT binary patch delta 1306 zcmYk+OGs2v9LMqh*o@}rXgfUuQFWVwmHKjtnvaOQK)x%d9hIsbF-Y_`tElPiVZ zF{5-+w^Q3P%+BM0mmkV!pIHxnac#&n+eLo_D{vg6IE7{S1Di1;D{UNg{VF!%V+`Uv zwwfjFJB=y^!duODV+U5_klVkHMf9gIALp-h8nvNO zRQyS-#J8AWep{lk6N9;CF^nUrv1?e5leiBTPyx3D(gA8v3+lohIOvYw!Z!L3aR5J| zCXVHq^HDP@b`B!7m9eCh6gWPMsQ4{)kN-66?1-^*N*d4b&fh5OfTtA{R zvx0gDHc%T1@T0S@LLF&Gko@ax&N86DcTp2hqP~V{cYF~Q@Rw_VsO|LkU<8Ly*Y6>> z*b~&t`34nl9yta3hRVn~Y9TpEo{G?@M|}k+kSyDE)DCZB6rZ93E@BO?VGEWqsCT3f z75FAba16D>*Qf<8pfs6FqkLm$upcks3sm4@ zW|4KcACF=Thfx`Ph92Z^#g0)`6t|hmk?I5EA*y!irT$+cbmGpmH|$f$L(Z}{QE-IT zL8?}-((csyLfNgf*qU`Zy}r`mVO^j!P?aTRtjW3I3waJWW4=aDhcoModJ?Hk-`~ts XC@|tlz02F{Pvw_4dr}uFN;3Wd7rBC? delta 1477 zcmYM!Ur19?9Ki9j@~$k)(sU~;Zx-cJsa*c4RhE`n6iH-%eaP0dk)~`jupA>O98o>A zN<{iY6hsgGVf2Sqkq=1_L_QewA7X7t1R?bxQS|+FZ*A3%7#%&HDG57H@U1ztp|(g2F#<~jnnV}I&l!~m^wzO#h7Qh4dwe2xB#DE z7JkEWr9#R&R;k%^RNx$R<2($T?OT{hdl1uc2&du*%7mGz#zG2F;;h9S+>hDVg;VeX z+AxZ__#6wFUwxr6nGX9nW8i$;OuGVQr>9W@-a!d4fU=+=l;?ioBupP~>|94#NFBg( zK3qooBi7^eiN*ptu!#043~i$Fkjh3(Bfk#ZiQDlg?#A~hXSRZEGE{BB)#yeSUPB$@ z7_um(k(L_T$1)6Gpe)Qr+T`d;u?%Z7$-kr|Oh+-EH+^Y3nlGil6p5j{C=+&~?EF4T z;8!Ra{9(3jtd?Y{QqwAw4Ar8%6Z?>l3T2Uhc^S^q`g_JGXElHlcm!o)J5R~4qX4D9 z1|?vVX$UK6ccYGP%>JK92$jiTd08DO@hXv1QFS3Ik`gz{LV~E{d6YAMjAUPZLfPRk zI&lioBw!7chq3@C zKXzGQ6;`7g<>k7L@_Z6^p_S+!+=DW~Gt&>ai1v3Z!MUW9Po=8oZlQz!9aTk{HMCaeOQNV~ScvL

b6S>1Uu(auGd+5<_n=2__j`PLqp!6^4>b6i zJOSO`;SYFPq629`i=)xo>@nJUW2;ZkI~>f@^A86dy4SBCXk~1BTU)Cy;Mp5pH?er! zta$8HviC;fQdcq>OU5pK4qqDTxnfL{Jaa7(z85`YFR|pt@1IPZxtTa|Byp}Q9=mG{ M{vSMgW2$Y`A7Z4&WdHyG diff --git a/lang/python/zh_CN/LC_MESSAGES/python.po b/lang/python/zh_CN/LC_MESSAGES/python.po index 7c0d70a4c..6ddc55ffb 100644 --- a/lang/python/zh_CN/LC_MESSAGES/python.po +++ b/lang/python/zh_CN/LC_MESSAGES/python.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" "Last-Translator: Feng Chao , 2020\n" "Language-Team: Chinese (China) (https://www.transifex.com/calamares/teams/20061/zh_CN/)\n" @@ -31,22 +31,22 @@ msgstr "配置 GRUB." msgid "Mounting partitions." msgstr "挂载分区。" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "配置错误" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for

{!s}
to use." msgstr "没有分配分区给
{!s}
。" @@ -93,37 +93,37 @@ msgstr "" msgid "Unmount file systems." msgstr "卸载文件系统。" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "写入文件系统。" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "rsync 报错,错误码 {}." -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "解压镜像失败 \"{}\"" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "未找到 unsquashfs,请确保安装了 squashfs-tools 软件包" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "无 root 分区挂载点" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "globalstorage 未包含 \"rootMountPoint\",跳过" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "错误的 root 分区挂载点" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "rootMountPoint 是 \"{}\",不存在此位置,跳过" @@ -133,8 +133,8 @@ msgid "Bad unsquash configuration" msgstr "错误的 unsquash 配置" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "不支持文件系统 \"{}\" ({})" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -202,10 +202,10 @@ msgstr "显示管理器配置不完全" msgid "Configuring mkinitcpio." msgstr "配置 mkinitcpio." -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr " 未设置
{!s}
要使用的根挂载点。" @@ -265,22 +265,23 @@ msgstr "服务 {name!s} 的路径 {path!s} 不存在。" msgid "Configure Plymouth theme" msgstr "配置 Plymouth 主题" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "安装软件包。" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "软件包处理中(%(count)d/%(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "安装软件包。" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "安装%(num)d软件包。" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -290,10 +291,6 @@ msgstr[0] "移除%(num)d软件包。" msgid "Install bootloader." msgstr "安装启动加载器。" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "从目标系统删除 live 用户" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "设置硬件时钟。" @@ -326,7 +323,8 @@ msgstr "正在写入 fstab。" msgid "Dummy python job." msgstr "占位 Python 任务。" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "占位 Python 步骤 {}" diff --git a/lang/python/zh_TW/LC_MESSAGES/python.mo b/lang/python/zh_TW/LC_MESSAGES/python.mo index 792b16a90b32862ba6d5ea1e801c6dd8d9a42916..40a0807e8c5448503663805e8cbac092ec7e91db 100644 GIT binary patch delta 1407 zcmYk+Pe@cj9Ki8;wlCeX^3U43uH{p+G!?}^t(uwr*|bQaq6{<0L?jY}B}pM!wIVFE z!^=w{E=3Rpm8^&&R34;5hb|RJ6cM@UL9|1Kkk$9szC(kvpP4srW`4h!UAxQPmHI!% z*#;EFOHHQkjZmrqTWow#7Imc#;5WDkDpN%j9(L8padnL=AM zPX7_s<1EU?-nCpW*5M%>LVpd71sYkngY!Ls&3GDLpxjj|>G6v4pe(Qtx8n^o@FjL> zY=pJ+&&GwFM9I{}amkf=P!cpfhzH^uOFN^5^ed1xln-U%Rg^E?Gn6Zt zM#=oU)prmrhotgR0^WfPse>rrg$CqLweyjI{Ry1EL1Tmm65(6xg$0z2bY{uj87Lc7 zqa1lN@{01K{Bj1+!1pNgep%yAUY0;}Q4-mYGOr#}(dVZjKf7BfM>UKFzQ#mcw8rgp zw$a~=GVv7375FVDFqi&MYdnK&WW6es0GcejEeG*m0^>Af;%ltMW#rn`G14fLiCB#R z+=X)}0c5jk9oAqYK0w(hnrvj@Osv2PEWu8cpWP^G$iEp$pa8fhY7tc;mLeO;{oADT zUomKV%yC z)B>|ZcWb5QfS#xAHK+7KtvtA-|6Un%uL)>Q<4lLqalXxGG`9JCO|2J=+V4kx+NzKr$F-hCA6dGPhl6?=A#Eu1Z7=Ve-v_xqy=h`z0Sa%R6=V+ zB}P)+RnY4aBJD-sKT!}-1d;lLv$MaM*}HdzhZcDUqitsu zWjQg8SRJO+Hr#LHOG>y>t3b0{jV{{fa4J5;9DIw37%@(%Ty$BwQLdlFEPRS__yY@+ z@~ZIhO3kFB1XHmZXX7!eeFtM`zs1Qof=(Pmd0w_`jW#aQgZ1Pov@ zzQ9bLuf9@=q9bvFIWPm)(Jnz*=^2y>dr&5Ljgrs^%6)%v3QnGAu3Se+WCO~AT2L0$ zg_1}=PR9W(;`wTfN($yV2y`P`qfX&m>_?e!6z5}nq&e{ll!@w55<7u2u-oc?hKp$r z;TD`W$xNUH=g~fm-nCTvsH{N;`#T4#a1*xSR{Vf+W=mKmLscbKU^Nz@A9WnYR!u28 z+v28uB-(TkCDDa!n;cyw$^v)9u>Z0pK04&3>9hQ4na0H&`ZptUsCJYayHQ@g0hFWp zg|hN!vXpiu&>TDeQKa0vuS~|W)$#B#f;9#^o$c1u-#V8N* zplo>?%0!*G4DX?izftaUGDxoHq9nEoWg#_Ie~Xt&3LWhzKfk*uTlETc{Dz4b$(LMD z!-ZIma^GH*Bj~hzk8-xLtU_MCGL&((DDxgiNyKOAeQs5TP%{04GC>sSyRig0esvDz zCG_D+e1WAH%WU$1jaY?yuo~YWAC*tmGVgj^f^}Gce&lCZran>8=-_`xl@n5AU>+eE zODQ9A37a%1i;3lgP81l|ZOL}olM>^lEm>2>cUw}Fq*g>^5K<}(r#&g6kQy7L78u3$ zgt(>Dq+}BLL^_dU)Y+4?MaE%!mbT33vFB*Tff4(^@EIPxzHYZi-__)4)N2}dHt5aU z8f!hxdQ(eNv!@~O$#G2!bWQpg7M5KYXpOo$F7@-{uF%C>LI3$spf}WWH{|ObIe*2R zWcbmOP>26Z>)}AEvs9Zo{NPlu<94w9zV6z0z@?|}J1|ENU1$s5=m=guX5JmRG&Mi$ EKchav$p8QV diff --git a/lang/python/zh_TW/LC_MESSAGES/python.po b/lang/python/zh_TW/LC_MESSAGES/python.po index 558011834..18d53bd2b 100644 --- a/lang/python/zh_TW/LC_MESSAGES/python.po +++ b/lang/python/zh_TW/LC_MESSAGES/python.po @@ -4,16 +4,16 @@ # FIRST AUTHOR , YEAR. # # Translators: -# 黃柏諺 , 2019 +# 黃柏諺 , 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 17:27+0100\n" +"POT-Creation-Date: 2020-03-19 00:13+0100\n" "PO-Revision-Date: 2017-08-09 10:34+0000\n" -"Last-Translator: 黃柏諺 , 2019\n" +"Last-Translator: 黃柏諺 , 2020\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/calamares/teams/20061/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,22 +29,22 @@ msgstr "設定 GRUB。" msgid "Mounting partitions." msgstr "正在掛載分割區。" -#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201 -#: src/modules/initcpiocfg/main.py:205 +#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:205 +#: src/modules/initcpiocfg/main.py:209 #: src/modules/luksopenswaphookcfg/main.py:95 #: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171 #: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98 #: src/modules/openrcdmcryptcfg/main.py:78 -#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322 -#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144 +#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:332 +#: src/modules/fstab/main.py:338 src/modules/localecfg/main.py:144 #: src/modules/networkcfg/main.py:48 msgid "Configuration Error" msgstr "設定錯誤" -#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202 +#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:206 #: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172 #: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79 -#: src/modules/fstab/main.py:323 +#: src/modules/fstab/main.py:333 msgid "No partitions are defined for
{!s}
to use." msgstr "沒有分割區被定義為
{!s}
以供使用。" @@ -91,37 +91,37 @@ msgstr "" msgid "Unmount file systems." msgstr "解除掛載檔案系統。" -#: src/modules/unpackfs/main.py:41 +#: src/modules/unpackfs/main.py:44 msgid "Filling up filesystems." msgstr "填滿檔案系統。" -#: src/modules/unpackfs/main.py:184 +#: src/modules/unpackfs/main.py:188 msgid "rsync failed with error code {}." msgstr "rsync 失敗,錯誤碼 {} 。" -#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268 +#: src/modules/unpackfs/main.py:249 src/modules/unpackfs/main.py:272 msgid "Failed to unpack image \"{}\"" msgstr "無法解開映像檔 \"{}\"" -#: src/modules/unpackfs/main.py:246 +#: src/modules/unpackfs/main.py:250 msgid "" "Failed to find unsquashfs, make sure you have the squashfs-tools package " "installed" msgstr "找不到 unsquashfs,請確定您已安裝 squashfs-tools 軟體包" -#: src/modules/unpackfs/main.py:370 +#: src/modules/unpackfs/main.py:369 msgid "No mount point for root partition" msgstr "沒有 root 分割區的掛載點" -#: src/modules/unpackfs/main.py:371 +#: src/modules/unpackfs/main.py:370 msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing" msgstr "globalstorage 不包含 \"rootMountPoint\" 鍵,不做任何事" -#: src/modules/unpackfs/main.py:376 +#: src/modules/unpackfs/main.py:375 msgid "Bad mount point for root partition" msgstr "root 分割區掛載點錯誤" -#: src/modules/unpackfs/main.py:377 +#: src/modules/unpackfs/main.py:376 msgid "rootMountPoint is \"{}\", which does not exist, doing nothing" msgstr "rootMountPoint 為 \"{}\",其不存在,不做任何事" @@ -131,8 +131,8 @@ msgid "Bad unsquash configuration" msgstr "錯誤的 unsquash 設定" #: src/modules/unpackfs/main.py:390 -msgid "The filesystem for \"{}\" ({}) is not supported" -msgstr "不支援 \"{}\" ({}) 的檔案系統" +msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel" +msgstr "\"{}\" ({}) 的檔案系統不被您目前的核心所支援" #: src/modules/unpackfs/main.py:394 msgid "The source filesystem \"{}\" does not exist" @@ -200,10 +200,10 @@ msgstr "顯示管理器設定不完整" msgid "Configuring mkinitcpio." msgstr "正在設定 mkinitcpio。" -#: src/modules/initcpiocfg/main.py:206 +#: src/modules/initcpiocfg/main.py:210 #: src/modules/luksopenswaphookcfg/main.py:100 #: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83 -#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145 +#: src/modules/fstab/main.py:339 src/modules/localecfg/main.py:145 #: src/modules/networkcfg/main.py:49 msgid "No root mount point is given for
{!s}
to use." msgstr "沒有給定的根掛載點
{!s}
以供使用。" @@ -263,22 +263,23 @@ msgstr "服務 {name!s} 的路徑為 {path!s},不存在。" msgid "Configure Plymouth theme" msgstr "設定 Plymouth 主題" -#: src/modules/packages/main.py:62 +#: src/modules/packages/main.py:59 src/modules/packages/main.py:68 +#: src/modules/packages/main.py:78 +msgid "Install packages." +msgstr "安裝軟體包。" + +#: src/modules/packages/main.py:66 #, python-format msgid "Processing packages (%(count)d / %(total)d)" msgstr "正在處理軟體包 (%(count)d / %(total)d)" -#: src/modules/packages/main.py:64 src/modules/packages/main.py:74 -msgid "Install packages." -msgstr "安裝軟體包。" - -#: src/modules/packages/main.py:67 +#: src/modules/packages/main.py:71 #, python-format msgid "Installing one package." msgid_plural "Installing %(num)d packages." msgstr[0] "正在安裝 %(num)d 軟體包。" -#: src/modules/packages/main.py:70 +#: src/modules/packages/main.py:74 #, python-format msgid "Removing one package." msgid_plural "Removing %(num)d packages." @@ -288,10 +289,6 @@ msgstr[0] "正在移除 %(num)d 軟體包。" msgid "Install bootloader." msgstr "安裝開機載入程式。" -#: src/modules/removeuser/main.py:34 -msgid "Remove live user from target system" -msgstr "從目標系統移除 live 使用者" - #: src/modules/hwclock/main.py:35 msgid "Setting hardware clock." msgstr "正在設定硬體時鐘。" @@ -324,7 +321,8 @@ msgstr "正在寫入 fstab。" msgid "Dummy python job." msgstr "假的 python 工作。" -#: src/modules/dummypython/main.py:97 +#: src/modules/dummypython/main.py:46 src/modules/dummypython/main.py:102 +#: src/modules/dummypython/main.py:103 msgid "Dummy python step {}" msgstr "假的 python step {}"